diff --git a/.coveragerc b/.coveragerc new file mode 100644 index 000000000..6079287b2 --- /dev/null +++ b/.coveragerc @@ -0,0 +1,6 @@ +[run] +source = metashare + +[report] +omit = metashare/repository/seltests/*,metashare/repository/tests/*,metashare/repository/test_fixtures/* + diff --git a/.gitignore b/.gitignore index 55560bfb1..e996000bd 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ lighttpd.pid lighttpd/ opt/ ._* +venv diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..f26b26e9c --- /dev/null +++ b/.travis.yml @@ -0,0 +1,92 @@ +# This file is used by travis-ci.org to test META-SHARE +# env section +# ============ +# This section sets environment variables. There are two kinds of environment +# variables in travis: "global" and "matrix". +# +# matrix variables +# ----------------- +# matrix variables can be used to tell travis we want different jobs to run +# for instance to split the testsuite in two subgroups. +# Here TEST_SUITE takes two different values, so in one case the selenium +# tests run, and in the other case the rest of the tests run. +# +# global variables +# ----------------- +# Common environment variables for all the jobs that will run. +# +# In order to securely use external services (such as coveralls or sauce labs) +# with travis and github some secrets have to be shared. Travis provides +# an option to encrypt environment variables in a way that only travis can +# decrypt them and use them with the external services. By doing that, we can +# safely store encrypted keys in this file and let travis decrypt and use them. +# +language: python +env: + global: + ######## SAUCE LABS ############# + # SAUCE_USERNAME and SAUCE_ACCESS_KEY + # https://docs.saucelabs.com/ci-integrations/travis-ci/ + # You will need to create a saucelabs account, free for Free Software projects. + # ### keys for zeehio/META-SHARE: + - secure: IEtbjPMMqI9qiL9JzCoqkN4t700OOG6lM83a0M9PgIpuFviC7cmUv984Vpk55yuvnIvFp5N+BzIWFbw4frxV8Al+usVZs/WHdvwMKZfoolKY4uQAeibnQzivh5DJqRjz3A8nplH953SBosseVqXW6xQBKmexNdUmA7Iz6Tjag0A= + - secure: gi7/2rLtpYgaj4tld5eB1dL9jrRXfGAxeOVtBMAura+qKKknNE0iY0lJc6OSwY7imTRQUyg2A4xWFD0lSEw6ZQ2JpZzbCFXYXD5wsm5PPNw5lCWSUKLd1E4in9wmmQ6/tjlqH7J3DWD16Pb2AyE9RVN2jWMGUif73qygSneDudU= + # + # ### keys for metashare/META-SHARE: + # - secure: key_not_yet_created + # - secure: key_not_yet_created + # + ########### GIVE TRAVIS PUSH ACCESS ########## + # So we can push the generated gh-pages + # Generate your auth token here: + # https://github.com/settings/applications#personal-access-tokens + # Encrypt your token: + # $ gem install travis; + # $ travis login + # $ travis encrypt -r zeehio/META-SHARE "GH_AUTH='my_secret_token'" + # $ travis encrypt -r zeehio/META-SHARE "GH_REF=github.com/zeehio/META-SHARE.git" + # The repository GH_REF is not secret, but if we encrypt it we can keep + # the zeehio/META-SHARE and the metashare/META-SHARE and travis will choose the + # right one on each case. + # + # ### keys for zeehio/META-SHARE: + # GH_AUTH: + - secure: "DmTgKEmMQatjTflWlDpX0PXJf/Gh8kiBqv09AkgjdO+5imCLJ0QcQbusZ2VeJPXVyvPQ/rywSCW1KJQrcZz/nJEX1kClWsV4z157oQAAroIsaAlHi77pPEQGg6EU6CXNHJp1U2v+sgeMx73KjYgHgVXPtOB7LqF6V0CWeQER+UA=" + # GH_REF: + - secure: "k3+QkIQtF5chdMOBVWbuhVIVJ6KMWQ2FgyekBSbknAz7y8CmxtTuFw4Wgitja/3ESgbdsRY9z7/vMtMaxk5aNJWq8lZodMzhil0f0k+cKKbl+vMViBAomXKcCCCMpUACBObhJXuK5T4f0LhbqYdmXtOF5cubn5gDr33MV5Dk0+Q=" + # ### keys for metashare/META-SHARE: + #- secure: "not generated" + # GH_REF: + #- secure: "not generated" + matrix: + # basic runs the metashare testsuite without selenium tests, followed + # by the multitest that checks node syncing. + # selenium runs the selenium tests only + # docs builds the documentation and pushes it to gh-pages + - TEST_SUITE="basic" + - TEST_SUITE="selenium" + - TEST_SUITE="docs" +python: + - "2.7" +# commands to install dependencies +install: + - "pip install coveralls" + - "./install-dependencies.sh" +# command to run tests +script: + - "if [ \"x$TEST_SUITE\" = \"xbasic\" ]; then ./misc/test-ci/run-testsuite.sh; fi" + - "if [ \"x$TEST_SUITE\" = \"xselenium\" ]; then ./misc/test-ci/run-testsuite.sh --selenium-only; fi" + - "if [ \"x$TEST_SUITE\" = \"xdocs\" ] ; then ./misc/test-ci/autoupdate-docs.sh; fi" + - "if [ \"x$TEST_SUITE\" = \"xbasic\" ] ; then ./misc/test-ci/multitest.sh; fi" +after_success: + - "if [ \"x$TEST_SUITE\" != \"xdocs\" ]; then coveralls; fi" + +addons: + sauce_connect: true + apt: + packages: + - libpq-dev + - python-sphinx + +sudo: false + diff --git a/README.md b/README.md index 81d765cf5..395bcb007 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ META-SHARE SOFTWARE =================== +[![Build Status](https://travis-ci.org/zeehio/META-SHARE.svg?branch=master)](https://travis-ci.org/zeehio/META-SHARE) +[![Coverage Status](https://coveralls.io/repos/zeehio/META-SHARE/badge.svg?branch=master)](https://coveralls.io/r/zeehio/META-SHARE?branch=master) + META-SHARE Software is the software powering META-SHARE. META-SHARE is a sustainable network of repositories of language data, tools and diff --git a/bin/.gitignore b/bin/.gitignore deleted file mode 100644 index 82f5bcb99..000000000 --- a/bin/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -pilconvert.py -pildriver.py -pilfile.py -pilfont.py -pilprint.py diff --git a/install-dependencies.sh b/install-dependencies.sh index 6c412e48a..14704171d 100755 --- a/install-dependencies.sh +++ b/install-dependencies.sh @@ -9,8 +9,8 @@ echo "Checking python version..." EXPECTED_PYTHON_VERSION="Python 2.7" # Check which python version to use -if [ -e $BASEDIR/opt/bin/python ] ; then - PYTHON=$BASEDIR/opt/bin/python +if [ -e "$BASEDIR/opt/bin/python" ] ; then + PYTHON="$BASEDIR/opt/bin/python" echo "Using locally installed python version $PYTHON" else PYTHON=python @@ -25,13 +25,17 @@ else if [ "$PYTHON" == "python" ] ; then echo "expected $EXPECTED_PYTHON_VERSION, but found $PYTHON_VERSION" echo "trying to install a local version in $BASEDIR/opt" - - cd $BASEDIR/installable-packages - tar xjf Python-2.7.2.tar.bz2 - cd Python-2.7.2 - ./configure --prefix=$BASEDIR/opt - make - make install + wget "https://www.python.org/ftp/python/2.7.9/Python-2.7.9.tgz" || exit 1 + echo "Verifying python" + echo "5eebcaa0030dc4061156d3429657fb83 Python-2.7.9.tgz" | md5sum -c - || exit 1 + tar xzf "Python-2.7.9.tgz" || exit 1 + cd "Python-2.7.9" || exit 1 + ./configure --prefix="$BASEDIR/opt" || exit 1 + make || exit 1 + make install || exit 1 + cd ".." + rm -rf "Python-2.7.9" + PYTHON="$BASEDIR/opt/bin/python" else echo "expected $EXPECTED_PYTHON_VERSION, but found $PYTHON_VERSION in local install" echo "something is messed up, aborting." @@ -39,9 +43,29 @@ else fi fi +echo "Create the virtual environment for package installation:" +# Select current version of virtualenv: +VENV_DIR="${BASEDIR}/venv" +VENV_VERSION="12.0.7" +URL_BASE="http://pypi.python.org/packages/source/v/virtualenv" + +echo "Download virtualenv..." +wget "$URL_BASE/virtualenv-${VENV_VERSION}.tar.gz" || exit 1 +echo "Verify virtualenv..." +echo "e08796f79d112f3bfa6653cc10840114 virtualenv-12.0.7.tar.gz" | md5sum -c - || exit 1 +echo "Extracting virtualenv" +tar xzf "virtualenv-${VENV_VERSION}.tar.gz" || exit 1 +echo "Create the virtual environment:" +"$PYTHON" "virtualenv-${VENV_VERSION}/virtualenv.py" "${VENV_DIR}" +# Don't need this anymore. +rm -rf "virtualenv-${VENV_VERSION}" "virtualenv-${VENV_VERSION}.tar.gz" + +echo "Python virtual environment created" + +echo "Install metashare python dependencies" +"${VENV_DIR}/bin/pip" install -r "${BASEDIR}/requirements.txt" || exit 1 + echo echo echo "Installation of META-SHARE dependencies complete." -if [ "$PYTHON" != "python" ] ; then - echo "Python was installed locally -- make sure to include $BASEDIR/opt/bin at the beginning of your PATH!" -fi \ No newline at end of file + diff --git a/installable-packages/.gitignore b/installable-packages/.gitignore deleted file mode 100644 index dff2adc8d..000000000 --- a/installable-packages/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -pycrypto-2.5 -Imaging-1.1.7 -Python-2.7.2 - diff --git a/installable-packages/Python-2.7.2.tar.bz2 b/installable-packages/Python-2.7.2.tar.bz2 deleted file mode 100644 index 7dc31827b..000000000 Binary files a/installable-packages/Python-2.7.2.tar.bz2 and /dev/null differ diff --git a/lib/python2.7/site-packages/.gitignore b/lib/python2.7/site-packages/.gitignore deleted file mode 100644 index 9e0772ceb..000000000 --- a/lib/python2.7/site-packages/.gitignore +++ /dev/null @@ -1,5 +0,0 @@ -Crypto -pycrypto-*.egg-info -PIL -PIL.Pth - diff --git a/lib/python2.7/site-packages/analytical/__init__.py b/lib/python2.7/site-packages/analytical/__init__.py deleted file mode 100755 index 9b6827f0f..000000000 --- a/lib/python2.7/site-packages/analytical/__init__.py +++ /dev/null @@ -1,15 +0,0 @@ -""" -Analytics service integration for Django -======================================== - -The django-analytical application integrates analytics services into a -Django_ project. See the ``docs`` directory for more information. - -.. _Django: http://www.djangoproject.com/ -""" - -__author__ = "Joost Cassee" -__email__ = "joost@cassee.net" -__version__ = "0.12.1" -__copyright__ = "Copyright (C) 2011 Joost Cassee and others" -__license__ = "MIT License" diff --git a/lib/python2.7/site-packages/analytical/models.py b/lib/python2.7/site-packages/analytical/models.py deleted file mode 100755 index 075c88608..000000000 --- a/lib/python2.7/site-packages/analytical/models.py +++ /dev/null @@ -1,5 +0,0 @@ -""" -Models for the django-analytical Django application. - -This application currently does not use models. -""" diff --git a/lib/python2.7/site-packages/analytical/templatetags/__init__.py b/lib/python2.7/site-packages/analytical/templatetags/__init__.py deleted file mode 100755 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/analytical/templatetags/analytical.py b/lib/python2.7/site-packages/analytical/templatetags/analytical.py deleted file mode 100755 index 37bc6ae90..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/analytical.py +++ /dev/null @@ -1,83 +0,0 @@ -""" -Analytical template tags and filters. -""" - -from __future__ import absolute_import - -import logging - -from django import template -from django.template import Node, TemplateSyntaxError -from django.utils.importlib import import_module -from analytical.utils import AnalyticalException - - -TAG_LOCATIONS = ['head_top', 'head_bottom', 'body_top', 'body_bottom'] -TAG_POSITIONS = ['first', None, 'last'] -TAG_MODULES = [ - 'analytical.chartbeat', - 'analytical.clicky', - 'analytical.crazy_egg', - 'analytical.gauges', - 'analytical.google_analytics', - 'analytical.gosquared', - 'analytical.hubspot', - 'analytical.kiss_insights', - 'analytical.kiss_metrics', - 'analytical.mixpanel', - 'analytical.olark', - 'analytical.optimizely', - 'analytical.performable', - 'analytical.reinvigorate', - 'analytical.snapengage', - 'analytical.spring_metrics', - 'analytical.uservoice', - 'analytical.woopra', -] - - -logger = logging.getLogger(__name__) -register = template.Library() - - -def _location_tag(location): - def analytical_tag(parser, token): - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' tag takes no arguments" % bits[0]) - return AnalyticalNode(location) - return analytical_tag - -for loc in TAG_LOCATIONS: - register.tag('analytical_%s' % loc, _location_tag(loc)) - - -class AnalyticalNode(Node): - def __init__(self, location): - self.nodes = [node_cls() for node_cls in template_nodes[location]] - - def render(self, context): - return "".join([node.render(context) for node in self.nodes]) - - -def _load_template_nodes(): - template_nodes = dict((l, dict((p, []) for p in TAG_POSITIONS)) - for l in TAG_LOCATIONS) - def add_node_cls(location, node, position=None): - template_nodes[location][position].append(node) - for path in TAG_MODULES: - module = _import_tag_module(path) - try: - module.contribute_to_analytical(add_node_cls) - except AnalyticalException, e: - logger.debug("not loading tags from '%s': %s", path, e) - for location in TAG_LOCATIONS: - template_nodes[location] = sum((template_nodes[location][p] - for p in TAG_POSITIONS), []) - return template_nodes - -def _import_tag_module(path): - app_name, lib_name = path.rsplit('.', 1) - return import_module("%s.templatetags.%s" % (app_name, lib_name)) - -template_nodes = _load_template_nodes() diff --git a/lib/python2.7/site-packages/analytical/templatetags/chartbeat.py b/lib/python2.7/site-packages/analytical/templatetags/chartbeat.py deleted file mode 100755 index 0e60ab9d9..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/chartbeat.py +++ /dev/null @@ -1,113 +0,0 @@ -""" -Chartbeat template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.conf import settings -from django.contrib.sites.models import Site -from django.core.exceptions import ImproperlyConfigured -from django.template import Library, Node, TemplateSyntaxError -from django.utils import simplejson - -from analytical.utils import is_internal_ip, disable_html, get_required_setting - - -USER_ID_RE = re.compile(r'^\d+$') -INIT_CODE = """""" -SETUP_CODE = """ - -""" -DOMAIN_CONTEXT_KEY = 'chartbeat_domain' - - -register = Library() - - -@register.tag -def chartbeat_top(parser, token): - """ - Top Chartbeat template tag. - - Render the top Javascript code for Chartbeat. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return ChartbeatTopNode() - -class ChartbeatTopNode(Node): - def render(self, context): - if is_internal_ip(context): - return disable_html(INIT_CODE, "Chartbeat") - return INIT_CODE - - -@register.tag -def chartbeat_bottom(parser, token): - """ - Bottom Chartbeat template tag. - - Render the bottom Javascript code for Chartbeat. You must supply - your Chartbeat User ID (as a string) in the ``CHARTBEAT_USER_ID`` - setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return ChartbeatBottomNode() - -class ChartbeatBottomNode(Node): - def __init__(self): - self.user_id = get_required_setting('CHARTBEAT_USER_ID', USER_ID_RE, - "must be (a string containing) a number") - - def render(self, context): - config = {'uid': self.user_id} - domain = _get_domain(context) - if domain is not None: - config['domain'] = domain - html = SETUP_CODE % {'config': simplejson.dumps(config)} - if is_internal_ip(context, 'CHARTBEAT'): - html = disable_html(html, 'Chartbeat') - return html - - -def contribute_to_analytical(add_node): - ChartbeatBottomNode() # ensure properly configured - add_node('head_top', ChartbeatTopNode, 'first') - add_node('body_bottom', ChartbeatBottomNode, 'last') - - -def _get_domain(context): - domain = context.get(DOMAIN_CONTEXT_KEY) - - if domain is not None: - return domain - else: - if 'django.contrib.sites' not in settings.INSTALLED_APPS: - return - elif getattr(settings, 'CHARTBEAT_AUTO_DOMAIN', True): - try: - return Site.objects.get_current().domain - except (ImproperlyConfigured, Site.DoesNotExist): #pylint: disable=E1101 - return diff --git a/lib/python2.7/site-packages/analytical/templatetags/clicky.py b/lib/python2.7/site-packages/analytical/templatetags/clicky.py deleted file mode 100755 index ee592f5de..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/clicky.py +++ /dev/null @@ -1,77 +0,0 @@ -""" -Clicky template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError -from django.utils import simplejson - -from analytical.utils import get_identity, is_internal_ip, disable_html, \ - get_required_setting - - -SITE_ID_RE = re.compile(r'^\d+$') -TRACKING_CODE = """ - - -""" - - -register = Library() - - -@register.tag -def clicky(parser, token): - """ - Clicky tracking template tag. - - Renders Javascript code to track page visits. You must supply - your Clicky Site ID (as a string) in the ``CLICKY_SITE_ID`` - setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return ClickyNode() - -class ClickyNode(Node): - def __init__(self): - self.site_id = get_required_setting('CLICKY_SITE_ID', SITE_ID_RE, - "must be a (string containing) a number") - - def render(self, context): - custom = {} - for dict_ in context: - for var, val in dict_.items(): - if var.startswith('clicky_'): - custom[var[7:]] = val - if 'username' not in custom.get('session', {}): - identity = get_identity(context, 'clicky') - if identity is not None: - custom.setdefault('session', {})['username'] = identity - - html = TRACKING_CODE % {'site_id': self.site_id, - 'custom': simplejson.dumps(custom)} - if is_internal_ip(context, 'CLICKY'): - html = disable_html(html, 'Clicky') - return html - - -def contribute_to_analytical(add_node): - ClickyNode() # ensure properly configured - add_node('body_bottom', ClickyNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/crazy_egg.py b/lib/python2.7/site-packages/analytical/templatetags/crazy_egg.py deleted file mode 100755 index 884e678ff..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/crazy_egg.py +++ /dev/null @@ -1,58 +0,0 @@ -""" -Crazy Egg template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError - -from analytical.utils import is_internal_ip, disable_html, get_required_setting - - -ACCOUNT_NUMBER_RE = re.compile(r'^\d+$') -SETUP_CODE = """""" -USERVAR_CODE = "CE2.set(%(varnr)d, '%(value)s');" - - -register = Library() - - -@register.tag -def crazy_egg(parser, token): - """ - Crazy Egg tracking template tag. - - Renders Javascript code to track page clicks. You must supply - your Crazy Egg account number (as a string) in the - ``CRAZY_EGG_ACCOUNT_NUMBER`` setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return CrazyEggNode() - -class CrazyEggNode(Node): - def __init__(self): - self.account_nr = get_required_setting('CRAZY_EGG_ACCOUNT_NUMBER', - ACCOUNT_NUMBER_RE, "must be (a string containing) a number") - - def render(self, context): - html = SETUP_CODE % {'account_nr_1': self.account_nr[:4], - 'account_nr_2': self.account_nr[4:]} - values = (context.get('crazy_egg_var%d' % i) for i in range(1, 6)) - vars = [(i, v) for i, v in enumerate(values, 1) if v is not None] - if vars: - js = " ".join(USERVAR_CODE % {'varnr': varnr, 'value': value} - for (varnr, value) in vars) - html = '%s\n' \ - % (html, js) - if is_internal_ip(context, 'CRAZY_EGG'): - html = disable_html(html, 'Crazy Egg') - return html - - -def contribute_to_analytical(add_node): - CrazyEggNode() # ensure properly configured - add_node('body_bottom', CrazyEggNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/gauges.py b/lib/python2.7/site-packages/analytical/templatetags/gauges.py deleted file mode 100755 index 60b658653..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/gauges.py +++ /dev/null @@ -1,63 +0,0 @@ -""" -Gaug.es template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError - -from analytical.utils import is_internal_ip, disable_html, get_required_setting - -SITE_ID_RE = re.compile(r'[\da-f]+$') -TRACKING_CODE = """ - -""" - -register = Library() - - -@register.tag -def gauges(parser, token): - """ - Gaug.es template tag. - - Renders Javascript code to gaug.es testing. You must supply - your Site ID account number in the ``GAUGES_SITE_ID`` - setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return GaugesNode() - - -class GaugesNode(Node): - def __init__(self): - self.site_id = get_required_setting( - 'GAUGES_SITE_ID', SITE_ID_RE, - "must be a string looking like 'XXXXXXX'") - - def render(self, context): - html = TRACKING_CODE % {'site_id': self.site_id} - if is_internal_ip(context, 'GAUGES'): - html = disable_html(html, 'Gauges') - return html - - -def contribute_to_analytical(add_node): - GaugesNode() - add_node('head_bottom', GaugesNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/google_analytics.py b/lib/python2.7/site-packages/analytical/templatetags/google_analytics.py deleted file mode 100755 index 375a4e819..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/google_analytics.py +++ /dev/null @@ -1,127 +0,0 @@ -""" -Google Analytics template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.conf import settings -from django.template import Library, Node, TemplateSyntaxError - -from analytical.utils import is_internal_ip, disable_html, \ - get_required_setting, get_domain, AnalyticalException - -def enumerate(sequence, start=0): - """Copy of the Python 2.6 `enumerate` builtin for compatibility.""" - n = start - for elem in sequence: - yield n, elem - n += 1 - - -TRACK_SINGLE_DOMAIN = 1 -TRACK_MULTIPLE_SUBDOMAINS = 2 -TRACK_MULTIPLE_DOMAINS = 3 - -SCOPE_VISITOR = 1 -SCOPE_SESSION = 2 -SCOPE_PAGE = 3 - -PROPERTY_ID_RE = re.compile(r'^UA-\d+-\d+$') -SETUP_CODE = """ - -""" -DOMAIN_CODE = "_gaq.push(['_setDomainName', '%s']);" -NO_ALLOW_HASH_CODE = "_gaq.push(['_setAllowHash', false]);" -ALLOW_LINKER_CODE = "_gaq.push(['_setAllowLinker', true]);" -CUSTOM_VAR_CODE = "_gaq.push(['_setCustomVar', %(index)s, '%(name)s', " \ - "'%(value)s', %(scope)s]);" -SITE_SPEED_CODE = "_gaq.push(['_trackPageLoadTime']);" - - -register = Library() - -@register.tag -def google_analytics(parser, token): - """ - Google Analytics tracking template tag. - - Renders Javascript code to track page visits. You must supply - your website property ID (as a string) in the - ``GOOGLE_ANALYTICS_PROPERTY_ID`` setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return GoogleAnalyticsNode() - -class GoogleAnalyticsNode(Node): - def __init__(self): - self.property_id = get_required_setting( - 'GOOGLE_ANALYTICS_PROPERTY_ID', PROPERTY_ID_RE, - "must be a string looking like 'UA-XXXXXX-Y'") - - def render(self, context): - commands = self._get_domain_commands(context) - commands.extend(self._get_custom_var_commands(context)) - commands.extend(self._get_other_commands(context)) - html = SETUP_CODE % {'property_id': self.property_id, - 'commands': " ".join(commands)} - if is_internal_ip(context, 'GOOGLE_ANALYTICS'): - html = disable_html(html, 'Google Analytics') - return html - - def _get_domain_commands(self, context): - commands = [] - tracking_type = getattr(settings, 'GOOGLE_ANALYTICS_TRACKING_STYLE', - TRACK_SINGLE_DOMAIN) - if tracking_type == TRACK_SINGLE_DOMAIN: - pass - else: - domain = get_domain(context, 'google_analytics') - if domain is None: - raise AnalyticalException("tracking multiple domains with" - " Google Analytics requires a domain name") - commands.append(DOMAIN_CODE % domain) - commands.append(NO_ALLOW_HASH_CODE) - if tracking_type == TRACK_MULTIPLE_DOMAINS: - commands.append(ALLOW_LINKER_CODE) - return commands - - def _get_custom_var_commands(self, context): - values = (context.get('google_analytics_var%s' % i) - for i in range(1, 6)) - vars = [(i, v) for i, v in enumerate(values, 1) if v is not None] - commands = [] - for index, var in vars: - name = var[0] - value = var[1] - try: - scope = var[2] - except IndexError: - scope = SCOPE_PAGE - commands.append(CUSTOM_VAR_CODE % locals()) - return commands - - def _get_other_commands(self, context): - commands = [] - if getattr(settings, 'GOOGLE_ANALYTICS_SITE_SPEED', False): - commands.append(SITE_SPEED_CODE) - return commands - -def contribute_to_analytical(add_node): - GoogleAnalyticsNode() # ensure properly configured - add_node('head_bottom', GoogleAnalyticsNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/gosquared.py b/lib/python2.7/site-packages/analytical/templatetags/gosquared.py deleted file mode 100755 index 1622617eb..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/gosquared.py +++ /dev/null @@ -1,79 +0,0 @@ -""" -GoSquared template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.conf import settings -from django.template import Library, Node, TemplateSyntaxError -from django.utils import simplejson - -from analytical.utils import get_identity, get_user_from_context, \ - is_internal_ip, disable_html, get_required_setting - - -TOKEN_RE = re.compile(r'^\S+-\S+-\S+$') -TRACKING_CODE = """ - -""" -TOKEN_CODE = 'GoSquared.acct = "%s";' -IDENTIFY_CODE = 'GoSquared.UserName = "%s";' - - -register = Library() - - -@register.tag -def gosquared(parser, token): - """ - GoSquared tracking template tag. - - Renders Javascript code to track page visits. You must supply - your GoSquared site token in the ``GOSQUARED_SITE_TOKEN`` setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return GoSquaredNode() - -class GoSquaredNode(Node): - def __init__(self): - self.site_token = get_required_setting('GOSQUARED_SITE_TOKEN', TOKEN_RE, - "must be a string looking like XXX-XXXXXX-X") - - def render(self, context): - configs = [TOKEN_CODE % self.site_token] - identity = get_identity(context, 'gosquared', self._identify) - if identity: - configs.append(IDENTIFY_CODE % identity) - html = TRACKING_CODE % { - 'token': self.site_token, - 'config': ' '.join(configs), - } - if is_internal_ip(context, 'GOSQUARED'): - html = disable_html(html, 'GoSquared') - return html - - def _identify(self, user): - name = user.get_full_name() - if not name: - name = user.username - return name - - -def contribute_to_analytical(add_node): - GoSquaredNode() # ensure properly configured - add_node('body_bottom', GoSquaredNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/hubspot.py b/lib/python2.7/site-packages/analytical/templatetags/hubspot.py deleted file mode 100755 index 0d6417780..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/hubspot.py +++ /dev/null @@ -1,60 +0,0 @@ -""" -HubSpot template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError - -from analytical.utils import is_internal_ip, disable_html, get_required_setting - - -PORTAL_ID_RE = re.compile(r'^\d+$') -DOMAIN_RE = re.compile(r'^[\w.-]+$') -TRACKING_CODE = """ - -""" - - -register = Library() - - -@register.tag -def hubspot(parser, token): - """ - HubSpot tracking template tag. - - Renders Javascript code to track page visits. You must supply - your portal ID (as a string) in the ``HUBSPOT_PORTAL_ID`` setting, - and the website domain in ``HUBSPOT_DOMAIN``. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return HubSpotNode() - -class HubSpotNode(Node): - def __init__(self): - self.portal_id = get_required_setting('HUBSPOT_PORTAL_ID', - PORTAL_ID_RE, "must be a (string containing a) number") - self.domain = get_required_setting('HUBSPOT_DOMAIN', - DOMAIN_RE, "must be an internet domain name") - - def render(self, context): - html = TRACKING_CODE % {'portal_id': self.portal_id, - 'domain': self.domain} - if is_internal_ip(context, 'HUBSPOT'): - html = disable_html(html, 'HubSpot') - return html - - -def contribute_to_analytical(add_node): - HubSpotNode() # ensure properly configured - add_node('body_bottom', HubSpotNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/kiss_insights.py b/lib/python2.7/site-packages/analytical/templatetags/kiss_insights.py deleted file mode 100755 index 5ab430a08..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/kiss_insights.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -KISSinsights template tags. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError - -from analytical.utils import get_identity, get_required_setting - - -ACCOUNT_NUMBER_RE = re.compile(r'^\d+$') -SITE_CODE_RE = re.compile(r'^[\w]+$') -SETUP_CODE = """ - - -""" -IDENTIFY_CODE = "_kiq.push(['identify', '%s']);" -SHOW_SURVEY_CODE = "_kiq.push(['showSurvey', %s]);" -SHOW_SURVEY_CONTEXT_KEY = 'kiss_insights_show_survey' - - -register = Library() - - -@register.tag -def kiss_insights(parser, token): - """ - KISSinsights set-up template tag. - - Renders Javascript code to set-up surveys. You must supply - your account number and site code in the - ``KISS_INSIGHTS_ACCOUNT_NUMBER`` and ``KISS_INSIGHTS_SITE_CODE`` - settings. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return KissInsightsNode() - -class KissInsightsNode(Node): - def __init__(self): - self.account_number = get_required_setting( - 'KISS_INSIGHTS_ACCOUNT_NUMBER', ACCOUNT_NUMBER_RE, - "must be (a string containing) a number") - self.site_code = get_required_setting('KISS_INSIGHTS_SITE_CODE', - SITE_CODE_RE, "must be a string containing three characters") - - def render(self, context): - commands = [] - identity = get_identity(context, 'kiss_insights') - if identity is not None: - commands.append(IDENTIFY_CODE % identity) - try: - commands.append(SHOW_SURVEY_CODE - % context[SHOW_SURVEY_CONTEXT_KEY]) - except KeyError: - pass - html = SETUP_CODE % {'account_number': self.account_number, - 'site_code': self.site_code, 'commands': " ".join(commands)} - return html - - -def contribute_to_analytical(add_node): - KissInsightsNode() # ensure properly configured - add_node('body_top', KissInsightsNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/kiss_metrics.py b/lib/python2.7/site-packages/analytical/templatetags/kiss_metrics.py deleted file mode 100755 index 40c185974..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/kiss_metrics.py +++ /dev/null @@ -1,91 +0,0 @@ -""" -KISSmetrics template tags. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError -from django.utils import simplejson - -from analytical.utils import is_internal_ip, disable_html, get_identity, \ - get_required_setting - - -API_KEY_RE = re.compile(r'^[0-9a-f]{40}$') -TRACKING_CODE = """ - -""" -IDENTIFY_CODE = "_kmq.push(['identify', '%s']);" -EVENT_CODE = "_kmq.push(['record', '%(name)s', %(properties)s]);" -PROPERTY_CODE = "_kmq.push(['set', %(properties)s]);" - -EVENT_CONTEXT_KEY = 'kiss_metrics_event' -PROPERTY_CONTEXT_KEY = 'kiss_metrics_properties' - -register = Library() - - -@register.tag -def kiss_metrics(parser, token): - """ - KISSinsights tracking template tag. - - Renders Javascript code to track page visits. You must supply - your KISSmetrics API key in the ``KISS_METRICS_API_KEY`` - setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return KissMetricsNode() - -class KissMetricsNode(Node): - def __init__(self): - self.api_key = get_required_setting('KISS_METRICS_API_KEY', - API_KEY_RE, - "must be a string containing a 40-digit hexadecimal number") - - def render(self, context): - commands = [] - identity = get_identity(context, 'kiss_metrics') - if identity is not None: - commands.append(IDENTIFY_CODE % identity) - try: - name, properties = context[EVENT_CONTEXT_KEY] - commands.append(EVENT_CODE % {'name': name, - 'properties': simplejson.dumps(properties)}) - except KeyError: - pass - try: - properties = context[PROPERTY_CONTEXT_KEY] - commands.append(PROPERTY_CODE % { - 'properties': simplejson.dumps(properties)}) - except KeyError: - pass - html = TRACKING_CODE % {'api_key': self.api_key, - 'commands': " ".join(commands)} - if is_internal_ip(context, 'KISS_METRICS'): - html = disable_html(html, 'KISSmetrics') - return html - - -def contribute_to_analytical(add_node): - KissMetricsNode() # ensure properly configured - add_node('head_top', KissMetricsNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/mixpanel.py b/lib/python2.7/site-packages/analytical/templatetags/mixpanel.py deleted file mode 100755 index 8ac2f7041..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/mixpanel.py +++ /dev/null @@ -1,71 +0,0 @@ -""" -Mixpanel template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError -from django.utils import simplejson - -from analytical.utils import is_internal_ip, disable_html, get_identity, \ - get_required_setting - - -MIXPANEL_API_TOKEN_RE = re.compile(r'^[0-9a-f]{32}$') -TRACKING_CODE = """ - -""" -IDENTIFY_CODE = "mpq.push(['identify', '%s']);" -EVENT_CODE = "mpq.push(['track', '%(name)s', %(properties)s]);" -EVENT_CONTEXT_KEY = 'mixpanel_event' - -register = Library() - - -@register.tag -def mixpanel(parser, token): - """ - Mixpanel tracking template tag. - - Renders Javascript code to track page visits. You must supply - your Mixpanel token in the ``MIXPANEL_API_TOKEN`` setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return MixpanelNode() - -class MixpanelNode(Node): - def __init__(self): - self.token = get_required_setting( - 'MIXPANEL_API_TOKEN', MIXPANEL_API_TOKEN_RE, - "must be a string containing a 32-digit hexadecimal number") - - def render(self, context): - commands = [] - identity = get_identity(context, 'mixpanel') - if identity is not None: - commands.append(IDENTIFY_CODE % identity) - try: - name, properties = context[EVENT_CONTEXT_KEY] - commands.append(EVENT_CODE % {'name': name, - 'properties': simplejson.dumps(properties)}) - except KeyError: - pass - html = TRACKING_CODE % {'token': self.token, - 'commands': " ".join(commands)} - if is_internal_ip(context, 'MIXPANEL'): - html = disable_html(html, 'Mixpanel') - return html - - -def contribute_to_analytical(add_node): - MixpanelNode() # ensure properly configured - add_node('head_bottom', MixpanelNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/olark.py b/lib/python2.7/site-packages/analytical/templatetags/olark.py deleted file mode 100755 index 6be23e377..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/olark.py +++ /dev/null @@ -1,95 +0,0 @@ -""" -Olark template tags. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError -from django.utils import simplejson - -from analytical.utils import get_identity, get_required_setting - - -SITE_ID_RE = re.compile(r'^\d+-\d+-\d+-\d+$') -SETUP_CODE = """ - -""" -NICKNAME_CODE = "olark('api.chat.updateVisitorNickname', {snippet: '%s'});" -NICKNAME_CONTEXT_KEY = 'olark_nickname' -STATUS_CODE = "olark('api.chat.updateVisitorStatus', {snippet: %s});" -STATUS_CONTEXT_KEY = 'olark_status' -MESSAGE_CODE = "olark.configure('locale.%(key)s', \"%(msg)s\");" -MESSAGE_KEYS = set(["welcome_title", "chatting_title", "unavailable_title", - "busy_title", "away_message", "loading_title", "welcome_message", - "busy_message", "chat_input_text", "name_input_text", - "email_input_text", "offline_note_message", "send_button_text", - "offline_note_thankyou_text", "offline_note_error_text", - "offline_note_sending_text", "operator_is_typing_text", - "operator_has_stopped_typing_text", "introduction_error_text", - "introduction_messages", "introduction_submit_button_text"]) - -register = Library() - - -@register.tag -def olark(parser, token): - """ - Olark set-up template tag. - - Renders Javascript code to set-up Olark chat. You must supply - your site ID in the ``OLARK_SITE_ID`` setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return OlarkNode() - -class OlarkNode(Node): - def __init__(self): - self.site_id = get_required_setting('OLARK_SITE_ID', SITE_ID_RE, - "must be a string looking like 'XXXX-XXX-XX-XXXX'") - - def render(self, context): - extra_code = [] - try: - extra_code.append(NICKNAME_CODE % context[NICKNAME_CONTEXT_KEY]) - except KeyError: - identity = get_identity(context, 'olark', self._get_nickname) - if identity is not None: - extra_code.append(NICKNAME_CODE % identity) - try: - extra_code.append(STATUS_CODE % - simplejson.dumps(context[STATUS_CONTEXT_KEY])) - except KeyError: - pass - extra_code.extend(self._get_configuration(context)) - html = SETUP_CODE % {'site_id': self.site_id, - 'extra_code': " ".join(extra_code)} - return html - - def _get_nickname(self, user): - name = user.get_full_name() - if name: - return "%s (%s)" % (name, user.username) - else: - return user.username - - def _get_configuration(self, context): - code = [] - for dict_ in context: - for var, val in dict_.items(): - if var.startswith('olark_'): - key = var[6:] - if key in MESSAGE_KEYS: - code.append(MESSAGE_CODE % {'key': key, 'msg': val}) - return code - - -def contribute_to_analytical(add_node): - OlarkNode() # ensure properly configured - add_node('body_bottom', OlarkNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/optimizely.py b/lib/python2.7/site-packages/analytical/templatetags/optimizely.py deleted file mode 100755 index e5cd1852e..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/optimizely.py +++ /dev/null @@ -1,51 +0,0 @@ -""" -Optimizely template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError - -from analytical.utils import is_internal_ip, disable_html, get_required_setting - - -ACCOUNT_NUMBER_RE = re.compile(r'^\d+$') -SETUP_CODE = """""" - - -register = Library() - - -@register.tag -def optimizely(parser, token): - """ - Optimizely template tag. - - Renders Javascript code to set-up A/B testing. You must supply - your Optimizely account number in the ``OPTIMIZELY_ACCOUNT_NUMBER`` - setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return OptimizelyNode() - - -class OptimizelyNode(Node): - def __init__(self): - self.account_number = get_required_setting( - 'OPTIMIZELY_ACCOUNT_NUMBER', ACCOUNT_NUMBER_RE, - "must be a string looking like 'XXXXXXX'") - - def render(self, context): - html = SETUP_CODE % {'account_number': self.account_number} - if is_internal_ip(context, 'OPTIMIZELY'): - html = disable_html(html, 'Optimizely') - return html - - -def contribute_to_analytical(add_node): - OptimizelyNode() # ensure properly configured - add_node('head_top', OptimizelyNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/performable.py b/lib/python2.7/site-packages/analytical/templatetags/performable.py deleted file mode 100755 index 875315763..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/performable.py +++ /dev/null @@ -1,78 +0,0 @@ -""" -Performable template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError - -from analytical.utils import is_internal_ip, disable_html, get_identity, \ - get_required_setting - - -API_KEY_RE = re.compile(r'^\w+$') -SETUP_CODE = """ - -""" -IDENTIFY_CODE = """ - -""" -EMBED_CODE = """ - - -""" - -register = Library() - - -@register.tag -def performable(parser, token): - """ - Performable template tag. - - Renders Javascript code to set-up Performable tracking. You must - supply your Performable API key in the ``PERFORMABLE_API_KEY`` - setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return PerformableNode() - -class PerformableNode(Node): - def __init__(self): - self.api_key = get_required_setting('PERFORMABLE_API_KEY', API_KEY_RE, - "must be a string looking like 'XXXXX'") - - def render(self, context): - html = SETUP_CODE % {'api_key': self.api_key} - identity = get_identity(context, 'performable') - if identity is not None: - html = "%s%s" % (IDENTIFY_CODE % identity, html) - if is_internal_ip(context, 'PERFORMABLE'): - html = disable_html(html, 'Performable') - return html - - -@register.simple_tag -def performable_embed(hostname, page_id): - """ - Include a Performable landing page. - """ - return EMBED_CODE % {'hostname': hostname, 'page_id': page_id} - - -def contribute_to_analytical(add_node): - PerformableNode() # ensure properly configured - add_node('body_bottom', PerformableNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/reinvigorate.py b/lib/python2.7/site-packages/analytical/templatetags/reinvigorate.py deleted file mode 100755 index c7fca70cf..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/reinvigorate.py +++ /dev/null @@ -1,80 +0,0 @@ -""" -Reinvigorate template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError -from django.utils import simplejson - -from analytical.utils import get_identity, is_internal_ip, disable_html, \ - get_required_setting - - -TRACKING_ID_RE = re.compile(r'^[\w\d]+-[\w\d]+$') -TRACKING_CODE = """ - - -""" - - -register = Library() - - -@register.tag -def reinvigorate(parser, token): - """ - Reinvigorate tracking template tag. - - Renders Javascript code to track page visits. You must supply - your Reinvigorate tracking ID (as a string) in the - ``REINVIGORATE_TRACKING_ID`` setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return ReinvigorateNode() - -class ReinvigorateNode(Node): - def __init__(self): - self.tracking_id = get_required_setting('REINVIGORATE_TRACKING_ID', - TRACKING_ID_RE, - "must be a string looking like XXXXX-XXXXXXXXXX") - - def render(self, context): - re_vars = {} - for dict_ in context: - for var, val in dict_.items(): - if var.startswith('reinvigorate_'): - re_vars[var[13:]] = val - if 'name' not in re_vars: - identity = get_identity(context, 'reinvigorate', - lambda u: u.get_full_name()) - if identity is not None: - re_vars['name'] = identity - if 'context' not in re_vars: - email = get_identity(context, 'reinvigorate', lambda u: u.email) - if email is not None: - re_vars['context'] = email - tags = " ".join("var re_%s_tag = %s;" % (tag, simplejson.dumps(value)) - for tag, value in re_vars.items()) - - html = TRACKING_CODE % {'tracking_id': self.tracking_id, - 'tags': tags} - if is_internal_ip(context, 'REINVIGORATE'): - html = disable_html(html, 'Reinvigorate') - return html - - -def contribute_to_analytical(add_node): - ReinvigorateNode() # ensure properly configured - add_node('body_bottom', ReinvigorateNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/snapengage.py b/lib/python2.7/site-packages/analytical/templatetags/snapengage.py deleted file mode 100755 index 96652b595..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/snapengage.py +++ /dev/null @@ -1,181 +0,0 @@ -""" -SnapEngage template tags. -""" - -from __future__ import absolute_import - -import re - -from django.conf import settings -from django.template import Library, Node, TemplateSyntaxError -from django.utils import translation - -from analytical.utils import get_identity, get_required_setting - - -BUTTON_LOCATION_LEFT = 0 -BUTTON_LOCATION_RIGHT = 1 -BUTTON_LOCATION_TOP = 2 -BUTTON_LOCATION_BOTTOM = 3 - -BUTTON_STYLE_NONE = 0 -BUTTON_STYLE_DEFAULT = 1 -BUTTON_STYLE_LIVE = 2 - -FORM_POSITION_TOP_LEFT = 'tl' -FORM_POSITION_TOP_RIGHT = 'tr' -FORM_POSITION_BOTTOM_LEFT = 'bl' -FORM_POSITION_BOTTOM_RIGHT = 'br' - -WIDGET_ID_RE = re.compile(r'^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$') -SETUP_CODE = """ - -""" -DOMAIN_CODE = 'SnapABug.setDomain("%s");' -SECURE_CONNECTION_CODE = 'SnapABug.setSecureConnexion();' -INIT_CODE = 'SnapABug.init("%s");' -ADDBUTTON_CODE = 'SnapABug.addButton("%(id)s","%(location)s","%(offset)s"%(dynamic_tail)s);' -SETBUTTON_CODE = 'SnapABug.setButton("%s");' -SETEMAIL_CODE = 'SnapABug.setUserEmail("%s"%s);' -SETLOCALE_CODE = 'SnapABug.setLocale("%s");' -FORM_POSITION_CODE = 'SnapABug.setChatFormPosition("%s");' -FORM_TOP_POSITION_CODE = 'SnapABug.setFormTopPosition(%d);' -BUTTONEFFECT_CODE = 'SnapABug.setButtonEffect("%s");' -DISABLE_OFFLINE_CODE = 'SnapABug.allowOffline(false);' -DISABLE_SCREENSHOT_CODE = 'SnapABug.allowScreenshot(false);' -DISABLE_OFFLINE_SCREENSHOT_CODE = 'SnapABug.showScreenshotOption(false);' -DISABLE_PROACTIVE_CHAT_CODE = 'SnapABug.allowProactiveChat(false);' -DISABLE_SOUNDS_CODE = 'SnapABug.allowChatSound(false);' - -register = Library() - - -@register.tag -def snapengage(parser, token): - """ - SnapEngage set-up template tag. - - Renders Javascript code to set-up SnapEngage chat. You must supply - your widget ID in the ``SNAPENGAGE_WIDGET_ID`` setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return SnapEngageNode() - -class SnapEngageNode(Node): - def __init__(self): - self.widget_id = get_required_setting('SNAPENGAGE_WIDGET_ID', - WIDGET_ID_RE, "must be a string looking like this: " - "'XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX'") - - def render(self, context): - settings_code = [] - - domain = self._get_setting(context, 'snapengage_domain', - 'SNAPENGAGE_DOMAIN') - if domain is not None: - settings_code.append(DOMAIN_CODE % domain) - - secure_connection = self._get_setting(context, - 'snapengage_secure_connection', 'SNAPENGAGE_SECURE_CONNECTION', - False) - if secure_connection: - settings_code.append(SECURE_CONNECTION_CODE) - - email = context.get('snapengage_email') - if email is None: - email = get_identity(context, 'snapengage', lambda u: u.email) - if email is not None: - if self._get_setting(context, 'snapengage_readonly_email', - 'SNAPENGAGE_READONLY_EMAIL', False): - readonly_tail = ',true' - else: - readonly_tail = '' - settings_code.append(SETEMAIL_CODE % (email, readonly_tail)) - - locale = self._get_setting(context, 'snapengage_locale', - 'SNAPENGAGE_LOCALE') - if locale is None: - locale = translation.to_locale(translation.get_language()) - settings_code.append(SETLOCALE_CODE % locale) - - form_position = self._get_setting(context, - 'snapengage_form_position', 'SNAPENGAGE_FORM_POSITION') - if form_position is not None: - settings_code.append(FORM_POSITION_CODE % form_position) - - form_top_position = self._get_setting(context, - 'snapengage_form_top_position', 'SNAPENGAGE_FORM_TOP_POSITION') - if form_top_position is not None: - settings_code.append(FORM_TOP_POSITION_CODE % form_top_position) - - show_offline = self._get_setting(context, 'snapengage_show_offline', - 'SNAPENGAGE_SHOW_OFFLINE', True) - if not show_offline: - settings_code.append(DISABLE_OFFLINE_CODE) - - screenshots = self._get_setting(context, 'snapengage_screenshots', - 'SNAPENGAGE_SCREENSHOTS', True) - if not screenshots: - settings_code.append(DISABLE_SCREENSHOT_CODE) - - offline_screenshots = self._get_setting(context, - 'snapengage_offline_screenshots', - 'SNAPENGAGE_OFFLINE_SCREENSHOTS', True) - if not offline_screenshots: - settings_code.append(DISABLE_OFFLINE_SCREENSHOT_CODE) - - if not context.get('snapengage_proactive_chat', True): - settings_code.append(DISABLE_PROACTIVE_CHAT_CODE) - - sounds = self._get_setting(context, 'snapengage_sounds', - 'SNAPENGAGE_SOUNDS', True) - if not sounds: - settings_code.append(DISABLE_SOUNDS_CODE) - - button_effect = self._get_setting(context, 'snapengage_button_effect', - 'SNAPENGAGE_BUTTON_EFFECT') - if button_effect is not None: - settings_code.append(BUTTONEFFECT_CODE % button_effect) - - button = self._get_setting(context, 'snapengage_button', - 'SNAPENGAGE_BUTTON', BUTTON_STYLE_DEFAULT) - if button == BUTTON_STYLE_NONE: - settings_code.append(INIT_CODE % self.widget_id) - else: - if not isinstance(button, int): - # Assume button as a URL to a custom image - settings_code.append(SETBUTTON_CODE % button) - button_location = self._get_setting(context, - 'snapengage_button_location', 'SNAPENGAGE_BUTTON_LOCATION', - BUTTON_LOCATION_LEFT) - button_offset = self._get_setting(context, - 'snapengage_button_location_offset', - 'SNAPENGAGE_BUTTON_LOCATION_OFFSET', '55%') - settings_code.append(ADDBUTTON_CODE % { - 'id': self.widget_id, - 'location': button_location, - 'offset': button_offset, - 'dynamic_tail': ',true' if (button == BUTTON_STYLE_LIVE) else '', - }) - html = SETUP_CODE % {'widget_id': self.widget_id, - 'settings_code': " ".join(settings_code)} - return html - - def _get_setting(self, context, context_key, setting=None, default=None): - try: - return context[context_key] - except KeyError: - if setting is not None: - return getattr(settings, setting, default) - else: - return default - - -def contribute_to_analytical(add_node): - SnapEngageNode() # ensure properly configured - add_node('body_bottom', SnapEngageNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/spring_metrics.py b/lib/python2.7/site-packages/analytical/templatetags/spring_metrics.py deleted file mode 100755 index afafab906..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/spring_metrics.py +++ /dev/null @@ -1,88 +0,0 @@ -""" -Spring Metrics template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError -from django.utils import simplejson - -from analytical.utils import get_identity, is_internal_ip, disable_html, \ - get_required_setting - - -TRACKING_ID_RE = re.compile(r'^[0-9a-f]+$') -TRACKING_CODE = """ - -""" - - -register = Library() - - -@register.tag -def spring_metrics(parser, token): - """ - Spring Metrics tracking template tag. - - Renders Javascript code to track page visits. You must supply - your Spring Metrics Tracking ID in the - ``SPRING_METRICS_TRACKING_ID`` setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return SpringMetricsNode() - -class SpringMetricsNode(Node): - def __init__(self): - self.tracking_id = get_required_setting('SPRING_METRICS_TRACKING_ID', - TRACKING_ID_RE, "must be a hexadecimal string") - - def render(self, context): - custom = {} - for dict_ in context: - for var, val in dict_.items(): - if var.startswith('spring_metrics_'): - custom[var[15:]] = val - if 'email' not in custom: - identity = get_identity(context, 'spring_metrics', - lambda u: u.email) - if identity is not None: - custom['email'] = identity - - html = TRACKING_CODE % {'tracking_id': self.tracking_id, - 'custom_commands': self._generate_custom_javascript(custom)} - if is_internal_ip(context, 'SPRING_METRICS'): - html = disable_html(html, 'Spring Metrics') - return html - - def _generate_custom_javascript(self, vars): - commands = [] - convert = vars.pop('convert', None) - if convert is not None: - commands.append("_springMetq.push(['convert', '%s'])" % convert) - commands.extend("_springMetq.push(['setdata', {'%s': '%s'}]);" - % (var, val) for var, val in vars.items()) - return " ".join(commands) - - -def contribute_to_analytical(add_node): - SpringMetricsNode() # ensure properly configured - add_node('head_bottom', SpringMetricsNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/uservoice.py b/lib/python2.7/site-packages/analytical/templatetags/uservoice.py deleted file mode 100755 index 0b0cb286d..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/uservoice.py +++ /dev/null @@ -1,111 +0,0 @@ -""" -UserVoice template tags. -""" - -from __future__ import absolute_import - -import re - -from django.template import Library, Node, TemplateSyntaxError, Variable -from django.utils import simplejson - -from analytical.utils import get_identity, get_required_setting - - -WIDGET_KEY_RE = re.compile(r'^[a-zA-Z0-9]*$') -TRACKING_CODE = """ - -""" -LINK_CODE = "UserVoice.showPopupWidget(%s);" - - -register = Library() - - -@register.tag -def uservoice(parser, token): - """ - UserVoice tracking template tag. - - Renders Javascript code to track page visits. You must supply - your UserVoice Widget Key in the ``USERVOICE_WIDGET_KEY`` - setting or the ``uservoice_widget_key`` template context variable. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return UserVoiceNode() - -class UserVoiceNode(Node): - def __init__(self): - self.default_widget_key = get_required_setting('USERVOICE_WIDGET_KEY', - WIDGET_KEY_RE, "must be an alphanumeric string") - - def render(self, context): - widget_key = context.get('uservoice_widget_key') - if not widget_key: - widget_key = self.default_widget_key - if not widget_key: - return '' - options = {} - options['enabled'] = context.get('uservoice_show_tab', True) - options['custom_fields'] = context.get('uservoice_fields', {}) - identity = get_identity(context, 'uservoice') - if identity is not None: - # Enable SSO - pass - html = TRACKING_CODE % {'widget_key': widget_key, - 'options': simplejson.dumps(options)} - return html - - -@register.tag -def uservoice_popup(parser, token): - """ - UserVoice widget popup template tag. - - Renders the Javascript code to pop-up the UserVoice widget. For example:: - - Feedback - - The tag accepts an optional argument specifying the key of the widget you - want to show:: - - Helpdesk - - If you add this tag without a widget key, the default feedback tab will be - hidden. - """ - bits = token.split_contents() - if len(bits) == 1: - return UserVoiceLinkNode() - if len(bits) == 2: - return UserVoiceKeyLinkNode(bits[1]) - raise TemplateSyntaxError("'%s' takes at most one argument" % bits[0]) - -class UserVoiceLinkNode(Node): - def render(self, context): - context['uservoice_show_tab'] = False - return LINK_CODE % '' - -class UserVoiceKeyLinkNode(Node): - def __init__(self, widget_key): - self.widget_key = Variable(widget_key) - - def render(self, context): - vars = {} - if self.widget_key: - vars['widget_key'] = self.widget_key.resolve(context) - return LINK_CODE % simplejson.dumps(vars) - - -def contribute_to_analytical(add_node): - UserVoiceNode() # ensure properly configured - add_node('body_bottom', UserVoiceNode) diff --git a/lib/python2.7/site-packages/analytical/templatetags/woopra.py b/lib/python2.7/site-packages/analytical/templatetags/woopra.py deleted file mode 100755 index 040f0621b..000000000 --- a/lib/python2.7/site-packages/analytical/templatetags/woopra.py +++ /dev/null @@ -1,99 +0,0 @@ -""" -Woopra template tags and filters. -""" - -from __future__ import absolute_import - -import re - -from django.conf import settings -from django.template import Library, Node, TemplateSyntaxError -from django.utils import simplejson - -from analytical.utils import get_identity, get_user_from_context, \ - is_internal_ip, disable_html, get_required_setting - - -DOMAIN_RE = re.compile(r'^\S+$') -TRACKING_CODE = """ - -""" - - -register = Library() - - -@register.tag -def woopra(parser, token): - """ - Woopra tracking template tag. - - Renders Javascript code to track page visits. You must supply - your Woopra domain in the ``WOOPRA_DOMAIN`` setting. - """ - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' takes no arguments" % bits[0]) - return WoopraNode() - -class WoopraNode(Node): - def __init__(self): - self.domain = get_required_setting('WOOPRA_DOMAIN', DOMAIN_RE, - "must be a domain name") - - def render(self, context): - settings = self._get_settings(context) - visitor = self._get_visitor(context) - - html = TRACKING_CODE % { - 'settings': simplejson.dumps(settings), - 'visitor': simplejson.dumps(visitor), - } - if is_internal_ip(context, 'WOOPRA'): - html = disable_html(html, 'Woopra') - return html - - def _get_settings(self, context): - vars = {'domain': self.domain} - try: - vars['idle_timeout'] = str(settings.WOOPRA_IDLE_TIMEOUT) - except AttributeError: - pass - return vars - - def _get_visitor(self, context): - vars = {} - for dict_ in context: - for var, val in dict_.items(): - if var.startswith('woopra_'): - vars[var[7:]] = val - if 'name' not in vars and 'email' not in vars: - user = get_user_from_context(context) - if user is not None and user.is_authenticated(): - vars['name'] = get_identity(context, 'woopra', - self._identify, user) - if user.email: - vars['email'] = user.email - return vars - - def _identify(self, user): - name = user.get_full_name() - if not name: - name = user.username - return name - - -def contribute_to_analytical(add_node): - WoopraNode() # ensure properly configured - add_node('head_bottom', WoopraNode) diff --git a/lib/python2.7/site-packages/analytical/tests/__init__.py b/lib/python2.7/site-packages/analytical/tests/__init__.py deleted file mode 100755 index 1b1d4a752..000000000 --- a/lib/python2.7/site-packages/analytical/tests/__init__.py +++ /dev/null @@ -1,24 +0,0 @@ -""" -Tests for django-analytical. -""" - -from analytical.tests.test_tag_analytical import * -from analytical.tests.test_tag_chartbeat import * -from analytical.tests.test_tag_clicky import * -from analytical.tests.test_tag_crazy_egg import * -from analytical.tests.test_tag_gauges import * -from analytical.tests.test_tag_google_analytics import * -from analytical.tests.test_tag_gosquared import * -from analytical.tests.test_tag_hubspot import * -from analytical.tests.test_tag_kiss_insights import * -from analytical.tests.test_tag_kiss_metrics import * -from analytical.tests.test_tag_mixpanel import * -from analytical.tests.test_tag_olark import * -from analytical.tests.test_tag_optimizely import * -from analytical.tests.test_tag_performable import * -from analytical.tests.test_tag_reinvigorate import * -from analytical.tests.test_tag_snapengage import * -from analytical.tests.test_tag_spring_metrics import * -from analytical.tests.test_tag_uservoice import * -from analytical.tests.test_tag_woopra import * -from analytical.tests.test_utils import * diff --git a/lib/python2.7/site-packages/analytical/tests/settings.py b/lib/python2.7/site-packages/analytical/tests/settings.py deleted file mode 100755 index 05b2b6c29..000000000 --- a/lib/python2.7/site-packages/analytical/tests/settings.py +++ /dev/null @@ -1,14 +0,0 @@ -""" -django-analytical testing settings. -""" - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.sqlite3', - 'NAME': ':memory:', - } -} - -INSTALLED_APPS = [ - 'analytical', -] diff --git a/lib/python2.7/site-packages/analytical/tests/templatetags/__init__.py b/lib/python2.7/site-packages/analytical/tests/templatetags/__init__.py deleted file mode 100755 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/analytical/tests/templatetags/dummy.py b/lib/python2.7/site-packages/analytical/tests/templatetags/dummy.py deleted file mode 100755 index 40d978166..000000000 --- a/lib/python2.7/site-packages/analytical/tests/templatetags/dummy.py +++ /dev/null @@ -1,38 +0,0 @@ -""" -Dummy testing template tags and filters. -""" - -from __future__ import absolute_import - -from django.template import Library, Node, TemplateSyntaxError - -from analytical.templatetags.analytical import TAG_LOCATIONS - - -register = Library() - - -def _location_node(location): - class DummyNode(Node): - def render(self, context): - return "" % location - return DummyNode - -_location_nodes = dict((l, _location_node(l)) for l in TAG_LOCATIONS) - - -def _location_tag(location): - def dummy_tag(parser, token): - bits = token.split_contents() - if len(bits) > 1: - raise TemplateSyntaxError("'%s' tag takes no arguments" % bits[0]) - return _location_nodes[location] - return dummy_tag - -for loc in TAG_LOCATIONS: - register.tag('dummy_%s' % loc, _location_tag(loc)) - - -def contribute_to_analytical(add_node_cls): - for location in TAG_LOCATIONS: - add_node_cls(location, _location_nodes[location]) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_analytical.py b/lib/python2.7/site-packages/analytical/tests/test_tag_analytical.py deleted file mode 100755 index 8439197a6..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_analytical.py +++ /dev/null @@ -1,37 +0,0 @@ -""" -Tests for the generic template tags and filters. -""" - -from django.template import Context, Template - -from analytical.templatetags import analytical -from analytical.tests.utils import TagTestCase - - -class AnalyticsTagTestCase(TagTestCase): - """ - Tests for the ``analytical`` template tags. - """ - - def setUp(self): - super(AnalyticsTagTestCase, self).setUp() - self._tag_modules = analytical.TAG_MODULES - analytical.TAG_MODULES = ['analytical.tests.dummy'] - analytical.template_nodes = analytical._load_template_nodes() - - def tearDown(self): - analytical.TAG_MODULES = self._tag_modules - analytical.template_nodes = analytical._load_template_nodes() - super(AnalyticsTagTestCase, self).tearDown() - - def render_location_tag(self, location, vars=None): - if vars is None: - vars = {} - t = Template("{%% load analytical %%}{%% analytical_%s %%}" - % location) - return t.render(Context(vars)) - - def test_location_tags(self): - for l in ['head_top', 'head_bottom', 'body_top', 'body_bottom']: - r = self.render_location_tag(l) - self.assertTrue('dummy_%s' % l in r, r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_chartbeat.py b/lib/python2.7/site-packages/analytical/tests/test_tag_chartbeat.py deleted file mode 100755 index 8588a82c3..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_chartbeat.py +++ /dev/null @@ -1,105 +0,0 @@ -""" -Tests for the Chartbeat template tags and filters. -""" - -import re - -from django.conf import settings -from django.contrib.sites.models import Site -from django.http import HttpRequest -from django.template import Context -from django.test import TestCase - -from analytical.templatetags.chartbeat import ChartbeatTopNode, \ - ChartbeatBottomNode -from analytical.tests.utils import TagTestCase, with_apps, without_apps, \ - override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@without_apps('django.contrib.sites') -@override_settings(CHARTBEAT_USER_ID='12345') -class ChartbeatTagTestCaseNoSites(TestCase): - def test_rendering_setup_no_site(self): - r = ChartbeatBottomNode().render(Context()) - self.assertTrue('var _sf_async_config={"uid": "12345"};' in r, r) - - -@with_apps('django.contrib.sites') -@override_settings(CHARTBEAT_USER_ID='12345') -class ChartbeatTagTestCaseWithSites(TestCase): - def setUp(self): - from django.core.management import call_command - from django.db.models import loading - loading.cache.loaded = False - call_command("syncdb", verbosity=0) - - def test_rendering_setup_site(self): - site = Site.objects.create(domain="test.com", name="test") - with override_settings(SITE_ID=site.id): - r = ChartbeatBottomNode().render(Context()) - self.assertTrue(re.search( - 'var _sf_async_config={.*"uid": "12345".*};', r), r) - self.assertTrue(re.search( - 'var _sf_async_config={.*"domain": "test.com".*};', r), r) - - @override_settings(CHARTBEAT_AUTO_DOMAIN=False) - def test_auto_domain_false(self): - """ - Even if 'django.contrib.sites' is in INSTALLED_APPS, if - CHARTBEAT_AUTO_DOMAIN is False, ensure there is no 'domain' - in _sf_async_config. - """ - r = ChartbeatBottomNode().render(Context()) - self.assertTrue('var _sf_async_config={"uid": "12345"};' in r, r) - - -@override_settings(CHARTBEAT_USER_ID='12345') -class ChartbeatTagTestCase(TagTestCase): - """ - Tests for the ``chartbeat`` template tag. - """ - - def test_top_tag(self): - r = self.render_tag('chartbeat', 'chartbeat_top', - {'chartbeat_domain': "test.com"}) - self.assertTrue('var _sf_startpt=(new Date()).getTime()' in r, r) - - def test_bottom_tag(self): - r = self.render_tag('chartbeat', 'chartbeat_bottom', - {'chartbeat_domain': "test.com"}) - self.assertTrue(re.search( - 'var _sf_async_config={.*"uid": "12345".*};', r), r) - self.assertTrue(re.search( - 'var _sf_async_config={.*"domain": "test.com".*};', r), r) - - def test_top_node(self): - r = ChartbeatTopNode().render( - Context({'chartbeat_domain': "test.com"})) - self.assertTrue('var _sf_startpt=(new Date()).getTime()' in r, r) - - def test_bottom_node(self): - r = ChartbeatBottomNode().render( - Context({'chartbeat_domain': "test.com"})) - self.assertTrue(re.search( - 'var _sf_async_config={.*"uid": "12345".*};', r), r) - self.assertTrue(re.search( - 'var _sf_async_config={.*"domain": "test.com".*};', r), r) - - @override_settings(CHARTBEAT_USER_ID=SETTING_DELETED) - def test_no_user_id(self): - self.assertRaises(AnalyticalException, ChartbeatBottomNode) - - @override_settings(CHARTBEAT_USER_ID='123abc') - def test_wrong_user_id(self): - self.assertRaises(AnalyticalException, ChartbeatBottomNode) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = ChartbeatBottomNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_clicky.py b/lib/python2.7/site-packages/analytical/tests/test_tag_clicky.py deleted file mode 100755 index 1755e7ee7..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_clicky.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -Tests for the Clicky template tags and filters. -""" - -import re - -from django.contrib.auth.models import User, AnonymousUser -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.clicky import ClickyNode -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(CLICKY_SITE_ID='12345678') -class ClickyTagTestCase(TagTestCase): - """ - Tests for the ``clicky`` template tag. - """ - - def test_tag(self): - r = self.render_tag('clicky', 'clicky') - self.assertTrue('clicky_site_ids.push(12345678);' in r, r) - self.assertTrue('src="//in.getclicky.com/12345678ns.gif"' in r, - r) - - def test_node(self): - r = ClickyNode().render(Context({})) - self.assertTrue('clicky_site_ids.push(12345678);' in r, r) - self.assertTrue('src="//in.getclicky.com/12345678ns.gif"' in r, - r) - - @override_settings(CLICKY_SITE_ID=SETTING_DELETED) - def test_no_site_id(self): - self.assertRaises(AnalyticalException, ClickyNode) - - @override_settings(CLICKY_SITE_ID='123abc') - def test_wrong_site_id(self): - self.assertRaises(AnalyticalException, ClickyNode) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify(self): - r = ClickyNode().render(Context({'user': User(username='test')})) - self.assertTrue( - 'var clicky_custom = {"session": {"username": "test"}};' in r, - r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = ClickyNode().render(Context({'user': AnonymousUser()})) - self.assertFalse('var clicky_custom = {"session": {"username":' in r, r) - - def test_custom(self): - r = ClickyNode().render(Context({'clicky_var1': 'val1', - 'clicky_var2': 'val2'})) - self.assertTrue(re.search('var clicky_custom = {.*' - '"var1": "val1", "var2": "val2".*};', r), r) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = ClickyNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_crazy_egg.py b/lib/python2.7/site-packages/analytical/tests/test_tag_crazy_egg.py deleted file mode 100755 index f1f696ab8..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_crazy_egg.py +++ /dev/null @@ -1,49 +0,0 @@ -""" -Tests for the Crazy Egg template tags and filters. -""" - -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.crazy_egg import CrazyEggNode -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(CRAZY_EGG_ACCOUNT_NUMBER='12345678') -class CrazyEggTagTestCase(TagTestCase): - """ - Tests for the ``crazy_egg`` template tag. - """ - - def test_tag(self): - r = self.render_tag('crazy_egg', 'crazy_egg') - self.assertTrue('/1234/5678.js' in r, r) - - def test_node(self): - r = CrazyEggNode().render(Context()) - self.assertTrue('/1234/5678.js' in r, r) - - @override_settings(CRAZY_EGG_ACCOUNT_NUMBER=SETTING_DELETED) - def test_no_account_number(self): - self.assertRaises(AnalyticalException, CrazyEggNode) - - @override_settings(CRAZY_EGG_ACCOUNT_NUMBER='123abc') - def test_wrong_account_number(self): - self.assertRaises(AnalyticalException, CrazyEggNode) - - def test_uservars(self): - context = Context({'crazy_egg_var1': 'foo', 'crazy_egg_var2': 'bar'}) - r = CrazyEggNode().render(context) - self.assertTrue("CE2.set(1, 'foo');" in r, r) - self.assertTrue("CE2.set(2, 'bar');" in r, r) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = CrazyEggNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_gauges.py b/lib/python2.7/site-packages/analytical/tests/test_tag_gauges.py deleted file mode 100755 index 95c0806a0..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_gauges.py +++ /dev/null @@ -1,72 +0,0 @@ -""" -Tests for the Gauges template tags and filters. -""" - -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.gauges import GaugesNode -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(GAUGES_SITE_ID='1234567890abcdef0123456789') -class GaugesTagTestCase(TagTestCase): - """ - Tests for the ``gauges`` template tag. - """ - - def test_tag(self): - self.assertEqual(""" - -""", - self.render_tag('gauges', 'gauges')) - - def test_node(self): - self.assertEqual( - """ - -""", - GaugesNode().render(Context())) - - @override_settings(GAUGES_SITE_ID=SETTING_DELETED) - def test_no_account_number(self): - self.assertRaises(AnalyticalException, GaugesNode) - - @override_settings(GAUGES_SITE_ID='123abQ') - def test_wrong_account_number(self): - self.assertRaises(AnalyticalException, GaugesNode) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = GaugesNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_google_analytics.py b/lib/python2.7/site-packages/analytical/tests/test_tag_google_analytics.py deleted file mode 100755 index c833bf3f2..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_google_analytics.py +++ /dev/null @@ -1,99 +0,0 @@ -""" -Tests for the Google Analytics template tags and filters. -""" - -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.google_analytics import GoogleAnalyticsNode, \ - TRACK_SINGLE_DOMAIN, TRACK_MULTIPLE_DOMAINS, TRACK_MULTIPLE_SUBDOMAINS,\ - SCOPE_VISITOR, SCOPE_SESSION, SCOPE_PAGE -from analytical.tests.utils import TestCase, TagTestCase, override_settings, \ - without_apps, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(GOOGLE_ANALYTICS_PROPERTY_ID='UA-123456-7', - GOOGLE_ANALYTICS_TRACKING_STYLE=TRACK_SINGLE_DOMAIN) -class GoogleAnalyticsTagTestCase(TagTestCase): - """ - Tests for the ``google_analytics`` template tag. - """ - - def test_tag(self): - r = self.render_tag('google_analytics', 'google_analytics') - self.assertTrue("_gaq.push(['_setAccount', 'UA-123456-7']);" in r, r) - self.assertTrue("_gaq.push(['_trackPageview']);" in r, r) - - def test_node(self): - r = GoogleAnalyticsNode().render(Context()) - self.assertTrue("_gaq.push(['_setAccount', 'UA-123456-7']);" in r, r) - self.assertTrue("_gaq.push(['_trackPageview']);" in r, r) - - @override_settings(GOOGLE_ANALYTICS_PROPERTY_ID=SETTING_DELETED) - def test_no_property_id(self): - self.assertRaises(AnalyticalException, GoogleAnalyticsNode) - - @override_settings(GOOGLE_ANALYTICS_PROPERTY_ID='wrong') - def test_wrong_property_id(self): - self.assertRaises(AnalyticalException, GoogleAnalyticsNode) - - @override_settings( - GOOGLE_ANALYTICS_TRACKING_STYLE=TRACK_MULTIPLE_SUBDOMAINS, - GOOGLE_ANALYTICS_DOMAIN='example.com') - def test_track_multiple_subdomains(self): - r = GoogleAnalyticsNode().render(Context()) - self.assertTrue("_gaq.push(['_setDomainName', 'example.com']);" in r, r) - self.assertTrue("_gaq.push(['_setAllowHash', false]);" in r, r) - - @override_settings(GOOGLE_ANALYTICS_TRACKING_STYLE=TRACK_MULTIPLE_DOMAINS, - GOOGLE_ANALYTICS_DOMAIN='example.com') - def test_track_multiple_domains(self): - r = GoogleAnalyticsNode().render(Context()) - self.assertTrue("_gaq.push(['_setDomainName', 'example.com']);" in r, r) - self.assertTrue("_gaq.push(['_setAllowHash', false]);" in r, r) - self.assertTrue("_gaq.push(['_setAllowLinker', true]);" in r, r) - - def test_custom_vars(self): - context = Context({ - 'google_analytics_var1': ('test1', 'foo'), - 'google_analytics_var2': ('test2', 'bar', SCOPE_VISITOR), - 'google_analytics_var4': ('test4', 'baz', SCOPE_SESSION), - 'google_analytics_var5': ('test5', 'qux', SCOPE_PAGE), - }) - r = GoogleAnalyticsNode().render(context) - self.assertTrue("_gaq.push(['_setCustomVar', 1, 'test1', 'foo', 3]);" - in r, r) - self.assertTrue("_gaq.push(['_setCustomVar', 2, 'test2', 'bar', 1]);" - in r, r) - self.assertTrue("_gaq.push(['_setCustomVar', 4, 'test4', 'baz', 2]);" - in r, r) - self.assertTrue("_gaq.push(['_setCustomVar', 5, 'test5', 'qux', 3]);" - in r, r) - - @override_settings(GOOGLE_ANALYTICS_SITE_SPEED=True) - def test_track_page_load_time(self): - r = GoogleAnalyticsNode().render(Context()) - self.assertTrue("_gaq.push(['_trackPageLoadTime']);" in r, r) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = GoogleAnalyticsNode().render(context) - self.assertTrue(r.startswith( - ''), r) - - -@without_apps('django.contrib.sites') -@override_settings(GOOGLE_ANALYTICS_PROPERTY_ID='UA-123456-7', - GOOGLE_ANALYTICS_TRACKING_STYLE=TRACK_MULTIPLE_DOMAINS, - GOOGLE_ANALYTICS_DOMAIN=SETTING_DELETED, - ANALYTICAL_DOMAIN=SETTING_DELETED) -class NoDomainTestCase(TestCase): - def test_exception_without_domain(self): - context = Context() - self.assertRaises(AnalyticalException, GoogleAnalyticsNode().render, - context) \ No newline at end of file diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_gosquared.py b/lib/python2.7/site-packages/analytical/tests/test_tag_gosquared.py deleted file mode 100755 index ff922b901..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_gosquared.py +++ /dev/null @@ -1,64 +0,0 @@ -""" -Tests for the GoSquared template tags and filters. -""" - -from django.contrib.auth.models import User, AnonymousUser -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.gosquared import GoSquaredNode -from analytical.tests import override_settings -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(GOSQUARED_SITE_TOKEN='ABC-123456-D') -class GoSquaredTagTestCase(TagTestCase): - """ - Tests for the ``gosquared`` template tag. - """ - - def test_tag(self): - r = self.render_tag('gosquared', 'gosquared') - self.assertTrue('GoSquared.acct = "ABC-123456-D";' in r, r) - - def test_node(self): - r = GoSquaredNode().render(Context({})) - self.assertTrue('GoSquared.acct = "ABC-123456-D";' in r, r) - - @override_settings(GOSQUARED_SITE_TOKEN=SETTING_DELETED) - def test_no_token(self): - self.assertRaises(AnalyticalException, GoSquaredNode) - - @override_settings(GOSQUARED_SITE_TOKEN='this is not a token') - def test_wrong_token(self): - self.assertRaises(AnalyticalException, GoSquaredNode) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_auto_identify(self): - r = GoSquaredNode().render(Context({'user': User(username='test', - first_name='Test', last_name='User')})) - self.assertTrue('GoSquared.UserName = "Test User";' in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_manual_identify(self): - r = GoSquaredNode().render(Context({ - 'user': User(username='test', first_name='Test', last_name='User'), - 'gosquared_identity': 'test_identity', - })) - self.assertTrue('GoSquared.UserName = "test_identity";' in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = GoSquaredNode().render(Context({'user': AnonymousUser()})) - self.assertFalse('GoSquared.UserName = ' in r, r) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = GoSquaredNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_hubspot.py b/lib/python2.7/site-packages/analytical/tests/test_tag_hubspot.py deleted file mode 100755 index 043999e88..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_hubspot.py +++ /dev/null @@ -1,53 +0,0 @@ -""" -Tests for the HubSpot template tags and filters. -""" - -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.hubspot import HubSpotNode -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(HUBSPOT_PORTAL_ID='1234', HUBSPOT_DOMAIN='example.com') -class HubSpotTagTestCase(TagTestCase): - """ - Tests for the ``hubspot`` template tag. - """ - - def test_tag(self): - r = self.render_tag('hubspot', 'hubspot') - self.assertTrue('var hs_portalid = 1234;' in r, r) - self.assertTrue('var hs_ppa = "example.com";' in r, r) - - def test_node(self): - r = HubSpotNode().render(Context()) - self.assertTrue('var hs_portalid = 1234;' in r, r) - self.assertTrue('var hs_ppa = "example.com";' in r, r) - - @override_settings(HUBSPOT_PORTAL_ID=SETTING_DELETED) - def test_no_portal_id(self): - self.assertRaises(AnalyticalException, HubSpotNode) - - @override_settings(HUBSPOT_PORTAL_ID='wrong') - def test_wrong_portal_id(self): - self.assertRaises(AnalyticalException, HubSpotNode) - - @override_settings(HUBSPOT_DOMAIN=SETTING_DELETED) - def test_no_domain(self): - self.assertRaises(AnalyticalException, HubSpotNode) - - @override_settings(HUBSPOT_DOMAIN='wrong domain') - def test_wrong_domain(self): - self.assertRaises(AnalyticalException, HubSpotNode) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = HubSpotNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_kiss_insights.py b/lib/python2.7/site-packages/analytical/tests/test_tag_kiss_insights.py deleted file mode 100755 index 2626ac719..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_kiss_insights.py +++ /dev/null @@ -1,57 +0,0 @@ -""" -Tests for the KISSinsights template tags and filters. -""" - -from django.contrib.auth.models import User, AnonymousUser -from django.template import Context - -from analytical.templatetags.kiss_insights import KissInsightsNode -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(KISS_INSIGHTS_ACCOUNT_NUMBER='12345', - KISS_INSIGHTS_SITE_CODE='abc') -class KissInsightsTagTestCase(TagTestCase): - """ - Tests for the ``kiss_insights`` template tag. - """ - - def test_tag(self): - r = self.render_tag('kiss_insights', 'kiss_insights') - self.assertTrue("//s3.amazonaws.com/ki.js/12345/abc.js" in r, r) - - def test_node(self): - r = KissInsightsNode().render(Context()) - self.assertTrue("//s3.amazonaws.com/ki.js/12345/abc.js" in r, r) - - @override_settings(KISS_INSIGHTS_ACCOUNT_NUMBER=SETTING_DELETED) - def test_no_account_number(self): - self.assertRaises(AnalyticalException, KissInsightsNode) - - @override_settings(KISS_INSIGHTS_SITE_CODE=SETTING_DELETED) - def test_no_site_code(self): - self.assertRaises(AnalyticalException, KissInsightsNode) - - @override_settings(KISS_INSIGHTS_ACCOUNT_NUMBER='abcde') - def test_wrong_account_number(self): - self.assertRaises(AnalyticalException, KissInsightsNode) - - @override_settings(KISS_INSIGHTS_SITE_CODE='abc def') - def test_wrong_site_id(self): - self.assertRaises(AnalyticalException, KissInsightsNode) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify(self): - r = KissInsightsNode().render(Context({'user': User(username='test')})) - self.assertTrue("_kiq.push(['identify', 'test']);" in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = KissInsightsNode().render(Context({'user': AnonymousUser()})) - self.assertFalse("_kiq.push(['identify', " in r, r) - - def test_show_survey(self): - r = KissInsightsNode().render( - Context({'kiss_insights_show_survey': 1234})) - self.assertTrue("_kiq.push(['showSurvey', 1234]);" in r, r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_kiss_metrics.py b/lib/python2.7/site-packages/analytical/tests/test_tag_kiss_metrics.py deleted file mode 100755 index b92aacc9f..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_kiss_metrics.py +++ /dev/null @@ -1,75 +0,0 @@ -""" -Tests for the KISSmetrics tags and filters. -""" - -from django.contrib.auth.models import User, AnonymousUser -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.kiss_metrics import KissMetricsNode -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(KISS_METRICS_API_KEY='0123456789abcdef0123456789abcdef' - '01234567') -class KissMetricsTagTestCase(TagTestCase): - """ - Tests for the ``kiss_metrics`` template tag. - """ - - def test_tag(self): - r = self.render_tag('kiss_metrics', 'kiss_metrics') - self.assertTrue("//doug1izaerwt3.cloudfront.net/0123456789abcdef012345" - "6789abcdef01234567.1.js" in r, r) - - def test_node(self): - r = KissMetricsNode().render(Context()) - self.assertTrue("//doug1izaerwt3.cloudfront.net/0123456789abcdef012345" - "6789abcdef01234567.1.js" in r, r) - - @override_settings(KISS_METRICS_API_KEY=SETTING_DELETED) - def test_no_api_key(self): - self.assertRaises(AnalyticalException, KissMetricsNode) - - @override_settings(KISS_METRICS_API_KEY='0123456789abcdef0123456789abcdef' - '0123456') - def test_api_key_too_short(self): - self.assertRaises(AnalyticalException, KissMetricsNode) - - @override_settings(KISS_METRICS_API_KEY='0123456789abcdef0123456789abcdef' - '012345678') - def test_api_key_too_long(self): - self.assertRaises(AnalyticalException, KissMetricsNode) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify(self): - r = KissMetricsNode().render(Context({'user': User(username='test')})) - self.assertTrue("_kmq.push(['identify', 'test']);" in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = KissMetricsNode().render(Context({'user': AnonymousUser()})) - self.assertFalse("_kmq.push(['identify', " in r, r) - - def test_event(self): - r = KissMetricsNode().render(Context({'kiss_metrics_event': - ('test_event', {'prop1': 'val1', 'prop2': 'val2'})})) - self.assertTrue("_kmq.push(['record', 'test_event', " - '{"prop1": "val1", "prop2": "val2"}]);' in r, r) - - def test_property(self): - r = KissMetricsNode().render(Context({'kiss_metrics_properties': - {'prop1': 'val1', 'prop2': 'val2'}})) - self.assertTrue("_kmq.push(['set', " - '{"prop1": "val1", "prop2": "val2"}]);' in r, r) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = KissMetricsNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_mixpanel.py b/lib/python2.7/site-packages/analytical/tests/test_tag_mixpanel.py deleted file mode 100755 index d7132b54c..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_mixpanel.py +++ /dev/null @@ -1,68 +0,0 @@ -""" -Tests for the Mixpanel tags and filters. -""" - -from django.contrib.auth.models import User, AnonymousUser -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.mixpanel import MixpanelNode -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(MIXPANEL_API_TOKEN='0123456789abcdef0123456789abcdef') -class MixpanelTagTestCase(TagTestCase): - """ - Tests for the ``mixpanel`` template tag. - """ - - def test_tag(self): - r = self.render_tag('mixpanel', 'mixpanel') - self.assertTrue( - "mpq.push(['init', '0123456789abcdef0123456789abcdef']);" in r, - r) - - def test_node(self): - r = MixpanelNode().render(Context()) - self.assertTrue( - "mpq.push(['init', '0123456789abcdef0123456789abcdef']);" in r, - r) - - @override_settings(MIXPANEL_API_TOKEN=SETTING_DELETED) - def test_no_token(self): - self.assertRaises(AnalyticalException, MixpanelNode) - - @override_settings(MIXPANEL_API_TOKEN='0123456789abcdef0123456789abcdef0') - def test_token_too_long(self): - self.assertRaises(AnalyticalException, MixpanelNode) - - @override_settings(MIXPANEL_API_TOKEN='0123456789abcdef0123456789abcde') - def test_token_too_short(self): - self.assertRaises(AnalyticalException, MixpanelNode) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify(self): - r = MixpanelNode().render(Context({'user': User(username='test')})) - self.assertTrue("mpq.push(['identify', 'test']);" in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = MixpanelNode().render(Context({'user': AnonymousUser()})) - self.assertFalse("mpq.push(['identify', " in r, r) - - def test_event(self): - r = MixpanelNode().render(Context({'mixpanel_event': - ('test_event', {'prop1': 'val1', 'prop2': 'val2'})})) - self.assertTrue("mpq.push(['track', 'test_event', " - '{"prop1": "val1", "prop2": "val2"}]);' in r, r) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = MixpanelNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_olark.py b/lib/python2.7/site-packages/analytical/tests/test_tag_olark.py deleted file mode 100755 index bd9345880..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_olark.py +++ /dev/null @@ -1,91 +0,0 @@ -""" -Tests for the Olark template tags and filters. -""" - -from django.contrib.auth.models import User, AnonymousUser -from django.template import Context - -from analytical.templatetags.olark import OlarkNode -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(OLARK_SITE_ID='1234-567-89-0123') -class OlarkTestCase(TagTestCase): - """ - Tests for the ``olark`` template tag. - """ - - def test_tag(self): - r = self.render_tag('olark', 'olark') - self.assertTrue("olark.identify('1234-567-89-0123');" in r, r) - - def test_node(self): - r = OlarkNode().render(Context()) - self.assertTrue("olark.identify('1234-567-89-0123');" in r, r) - - @override_settings(OLARK_SITE_ID=SETTING_DELETED) - def test_no_site_id(self): - self.assertRaises(AnalyticalException, OlarkNode) - - @override_settings(OLARK_SITE_ID='1234-567-8901234') - def test_wrong_site_id(self): - self.assertRaises(AnalyticalException, OlarkNode) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify(self): - r = OlarkNode().render(Context({'user': - User(username='test', first_name='Test', last_name='User')})) - self.assertTrue("olark('api.chat.updateVisitorNickname', " - "{snippet: 'Test User (test)'});" in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = OlarkNode().render(Context({'user': AnonymousUser()})) - self.assertFalse("olark('api.chat.updateVisitorNickname', " in r, r) - - def test_nickname(self): - r = OlarkNode().render(Context({'olark_nickname': 'testnick'})) - self.assertTrue("olark('api.chat.updateVisitorNickname', " - "{snippet: 'testnick'});" in r, r) - - def test_status_string(self): - r = OlarkNode().render(Context({'olark_status': 'teststatus'})) - self.assertTrue("olark('api.chat.updateVisitorStatus', " - '{snippet: "teststatus"});' in r, r) - - def test_status_string_list(self): - r = OlarkNode().render(Context({'olark_status': - ['teststatus1', 'teststatus2']})) - self.assertTrue("olark('api.chat.updateVisitorStatus', " - '{snippet: ["teststatus1", "teststatus2"]});' in r, r) - - def test_messages(self): - messages = [ - "welcome_title", - "chatting_title", - "unavailable_title", - "busy_title", - "away_message", - "loading_title", - "welcome_message", - "busy_message", - "chat_input_text", - "name_input_text", - "email_input_text", - "offline_note_message", - "send_button_text", - "offline_note_thankyou_text", - "offline_note_error_text", - "offline_note_sending_text", - "operator_is_typing_text", - "operator_has_stopped_typing_text", - "introduction_error_text", - "introduction_messages", - "introduction_submit_button_text", - ] - vars = dict(('olark_%s' % m, m) for m in messages) - r = OlarkNode().render(Context(vars)) - for m in messages: - self.assertTrue("olark.configure('locale.%s', \"%s\");" % (m, m) - in r, r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_optimizely.py b/lib/python2.7/site-packages/analytical/tests/test_tag_optimizely.py deleted file mode 100755 index 412eb461e..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_optimizely.py +++ /dev/null @@ -1,45 +0,0 @@ -""" -Tests for the Optimizely template tags and filters. -""" - -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.optimizely import OptimizelyNode -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(OPTIMIZELY_ACCOUNT_NUMBER='1234567') -class OptimizelyTagTestCase(TagTestCase): - """ - Tests for the ``optimizely`` template tag. - """ - - def test_tag(self): - self.assertEqual( - '', - self.render_tag('optimizely', 'optimizely')) - - def test_node(self): - self.assertEqual( - '', - OptimizelyNode().render(Context())) - - @override_settings(OPTIMIZELY_ACCOUNT_NUMBER=SETTING_DELETED) - def test_no_account_number(self): - self.assertRaises(AnalyticalException, OptimizelyNode) - - @override_settings(OPTIMIZELY_ACCOUNT_NUMBER='123abc') - def test_wrong_account_number(self): - self.assertRaises(AnalyticalException, OptimizelyNode) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = OptimizelyNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_performable.py b/lib/python2.7/site-packages/analytical/tests/test_tag_performable.py deleted file mode 100755 index 5e5c80561..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_performable.py +++ /dev/null @@ -1,69 +0,0 @@ -""" -Tests for the Performable template tags and filters. -""" - -from django.contrib.auth.models import User, AnonymousUser -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.performable import PerformableNode -from analytical.tests.utils import TagTestCase, override_settings, SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(PERFORMABLE_API_KEY='123ABC') -class PerformableTagTestCase(TagTestCase): - """ - Tests for the ``performable`` template tag. - """ - - def test_tag(self): - r = self.render_tag('performable', 'performable') - self.assertTrue('/performable/pax/123ABC.js' in r, r) - - def test_node(self): - r = PerformableNode().render(Context()) - self.assertTrue('/performable/pax/123ABC.js' in r, r) - - @override_settings(PERFORMABLE_API_KEY=SETTING_DELETED) - def test_no_api_key(self): - self.assertRaises(AnalyticalException, PerformableNode) - - @override_settings(PERFORMABLE_API_KEY='123 ABC') - def test_wrong_account_number(self): - self.assertRaises(AnalyticalException, PerformableNode) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = PerformableNode().render(context) - self.assertTrue(r.startswith( - ''), r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify(self): - r = PerformableNode().render(Context({'user': User(username='test')})) - self.assertTrue('_paq.push(["identify", {identity: "test"}]);' in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = PerformableNode().render(Context({'user': AnonymousUser()})) - self.assertFalse('_paq.push(["identify", ' in r, r) - - -class PerformableEmbedTagTestCase(TagTestCase): - """ - Tests for the ``performable_embed`` template tag. - """ - - def test_tag(self): - domain = 'example.com' - page = 'test' - r = self.render_tag('performable', 'performable_embed "%s" "%s"' - % (domain, page)) - self.assertTrue( - "$f.initialize({'host': 'example.com', 'page': 'test'});" in r, - r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_reinvigorate.py b/lib/python2.7/site-packages/analytical/tests/test_tag_reinvigorate.py deleted file mode 100755 index f3c4111a9..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_reinvigorate.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -Tests for the Reinvigorate template tags and filters. -""" - -import re - -from django.contrib.auth.models import User, AnonymousUser -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.reinvigorate import ReinvigorateNode -from analytical.tests.utils import TagTestCase, override_settings, \ - SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(REINVIGORATE_TRACKING_ID='12345-abcdefghij') -class ReinvigorateTagTestCase(TagTestCase): - """ - Tests for the ``reinvigorate`` template tag. - """ - - def test_tag(self): - r = self.render_tag('reinvigorate', 'reinvigorate') - self.assertTrue('reinvigorate.track("12345-abcdefghij");' in r, r) - - def test_node(self): - r = ReinvigorateNode().render(Context({})) - self.assertTrue('reinvigorate.track("12345-abcdefghij");' in r, r) - - @override_settings(REINVIGORATE_TRACKING_ID=SETTING_DELETED) - def test_no_tracking_id(self): - self.assertRaises(AnalyticalException, ReinvigorateNode) - - @override_settings(REINVIGORATE_TRACKING_ID='123abc') - def test_wrong_tracking_id(self): - self.assertRaises(AnalyticalException, ReinvigorateNode) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify(self): - r = ReinvigorateNode().render(Context({'user': - User(username='test', first_name='Test', last_name='User', - email='test@example.com')})) - self.assertTrue('var re_name_tag = "Test User";' in r, r) - self.assertTrue('var re_context_tag = "test@example.com";' in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = ReinvigorateNode().render(Context({'user': AnonymousUser()})) - self.assertFalse('var re_name_tag = ' in r, r) - self.assertFalse('var re_context_tag = ' in r, r) - - def test_tags(self): - r = ReinvigorateNode().render(Context({'reinvigorate_var1': 'val1', - 'reinvigorate_var2': 2})) - self.assertTrue(re.search('var re_var1_tag = "val1";', r), r) - self.assertTrue(re.search('var re_var2_tag = 2;', r), r) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = ReinvigorateNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_snapengage.py b/lib/python2.7/site-packages/analytical/tests/test_tag_snapengage.py deleted file mode 100755 index 931b1fbc6..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_snapengage.py +++ /dev/null @@ -1,256 +0,0 @@ -""" -Tests for the SnapEngage template tags and filters. -""" - -from django.contrib.auth.models import User, AnonymousUser -from django.template import Context -from django.utils import translation - -from analytical.templatetags.snapengage import SnapEngageNode, \ - BUTTON_STYLE_LIVE, BUTTON_STYLE_DEFAULT, BUTTON_STYLE_NONE, \ - BUTTON_LOCATION_LEFT, BUTTON_LOCATION_RIGHT, BUTTON_LOCATION_TOP, \ - BUTTON_LOCATION_BOTTOM, FORM_POSITION_TOP_LEFT -from analytical.tests.utils import TagTestCase, override_settings, \ - SETTING_DELETED -from analytical.utils import AnalyticalException - - -WIDGET_ID = 'ec329c69-0bf0-4db8-9b77-3f8150fb977e' - - -@override_settings( - SNAPENGAGE_WIDGET_ID=WIDGET_ID, - SNAPENGAGE_BUTTON=BUTTON_STYLE_DEFAULT, - SNAPENGAGE_BUTTON_LOCATION=BUTTON_LOCATION_LEFT, - SNAPENGAGE_BUTTON_OFFSET="55%", -) -class SnapEngageTestCase(TagTestCase): - """ - Tests for the ``snapengage`` template tag. - """ - - def test_tag(self): - r = self.render_tag('snapengage', 'snapengage') - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","0",' - '"55%");' in r, r) - - def test_node(self): - r = SnapEngageNode().render(Context()) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","0",' - '"55%");' in r, r) - - @override_settings(SNAPENGAGE_WIDGET_ID=SETTING_DELETED) - def test_no_site_id(self): - self.assertRaises(AnalyticalException, SnapEngageNode) - - @override_settings(SNAPENGAGE_WIDGET_ID='abc') - def test_wrong_site_id(self): - self.assertRaises(AnalyticalException, SnapEngageNode) - - def test_no_button(self): - r = SnapEngageNode().render(Context({'snapengage_button': BUTTON_STYLE_NONE})) - self.assertTrue('SnapABug.init("ec329c69-0bf0-4db8-9b77-3f8150fb977e")' - in r, r) - with override_settings(SNAPENGAGE_BUTTON=BUTTON_STYLE_NONE): - r = SnapEngageNode().render(Context()) - self.assertTrue( - 'SnapABug.init("ec329c69-0bf0-4db8-9b77-3f8150fb977e")' in r, r) - - def test_live_button(self): - r = SnapEngageNode().render(Context({'snapengage_button': BUTTON_STYLE_LIVE})) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","0",' - '"55%",true);' in r, r) - with override_settings(SNAPENGAGE_BUTTON=BUTTON_STYLE_LIVE): - r = SnapEngageNode().render(Context()) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","0",' - '"55%",true);' in r, r) - - def test_custom_button(self): - r = SnapEngageNode().render(Context({ - 'snapengage_button': "http://www.example.com/button.png"})) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","0",' - '"55%");' in r, r) - self.assertTrue( - 'SnapABug.setButton("http://www.example.com/button.png");' in r, r) - with override_settings( - SNAPENGAGE_BUTTON="http://www.example.com/button.png"): - r = SnapEngageNode().render(Context()) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","0",' - '"55%");' in r, r) - self.assertTrue( - 'SnapABug.setButton("http://www.example.com/button.png");' in r, - r) - - def test_button_location_right(self): - r = SnapEngageNode().render(Context({ - 'snapengage_button_location': BUTTON_LOCATION_RIGHT})) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","1",' - '"55%");' in r, r) - with override_settings( - SNAPENGAGE_BUTTON_LOCATION=BUTTON_LOCATION_RIGHT): - r = SnapEngageNode().render(Context()) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","1",' - '"55%");' in r, r) - - def test_button_location_top(self): - r = SnapEngageNode().render(Context({ - 'snapengage_button_location': BUTTON_LOCATION_TOP})) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","2",' - '"55%");' in r, r) - with override_settings(SNAPENGAGE_BUTTON_LOCATION=BUTTON_LOCATION_TOP): - r = SnapEngageNode().render(Context()) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","2",' - '"55%");' in r, r) - - def test_button_location_bottom(self): - r = SnapEngageNode().render(Context({ - 'snapengage_button_location': BUTTON_LOCATION_BOTTOM})) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","3",' - '"55%");' in r, r) - with override_settings( - SNAPENGAGE_BUTTON_LOCATION=BUTTON_LOCATION_BOTTOM): - r = SnapEngageNode().render(Context()) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","3",' - '"55%");' in r, r) - - def test_button_offset(self): - r = SnapEngageNode().render(Context({ - 'snapengage_button_location_offset': "30%"})) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","0",' - '"30%");' in r, r) - with override_settings(SNAPENGAGE_BUTTON_LOCATION_OFFSET="30%"): - r = SnapEngageNode().render(Context()) - self.assertTrue( - 'SnapABug.addButton("ec329c69-0bf0-4db8-9b77-3f8150fb977e","0",' - '"30%");' in r, r) - - def test_button_effect(self): - r = SnapEngageNode().render(Context({ - 'snapengage_button_effect': "-4px"})) - self.assertTrue('SnapABug.setButtonEffect("-4px");' in r, r) - with override_settings(SNAPENGAGE_BUTTON_EFFECT="-4px"): - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.setButtonEffect("-4px");' in r, r) - - def test_form_position(self): - r = SnapEngageNode().render(Context({ - 'snapengage_form_position': FORM_POSITION_TOP_LEFT})) - self.assertTrue('SnapABug.setChatFormPosition("tl");' in r, r) - with override_settings(SNAPENGAGE_FORM_POSITION=FORM_POSITION_TOP_LEFT): - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.setChatFormPosition("tl");' in r, r) - - def test_form_top_position(self): - r = SnapEngageNode().render(Context({ - 'snapengage_form_top_position': 40})) - self.assertTrue('SnapABug.setFormTopPosition(40);' in r, r) - with override_settings(SNAPENGAGE_FORM_TOP_POSITION=40): - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.setFormTopPosition(40);' in r, r) - - def test_domain(self): - r = SnapEngageNode().render(Context({ - 'snapengage_domain': "example.com"})) - self.assertTrue('SnapABug.setDomain("example.com");' in r, r) - with override_settings(SNAPENGAGE_DOMAIN="example.com"): - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.setDomain("example.com");' in r, r) - - def test_secure_connection(self): - r = SnapEngageNode().render(Context({ - 'snapengage_secure_connection': True})) - self.assertTrue('SnapABug.setSecureConnexion();' in r, r) - with override_settings(SNAPENGAGE_SECURE_CONNECTION=True): - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.setSecureConnexion();' in r, r) - - def test_show_offline(self): - r = SnapEngageNode().render(Context({'snapengage_show_offline': False})) - self.assertTrue('SnapABug.allowOffline(false);' in r, r) - with override_settings(SNAPENGAGE_SHOW_OFFLINE=False): - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.allowOffline(false);' in r, r) - - def test_proactive_chat(self): - r = SnapEngageNode().render(Context({ - 'snapengage_proactive_chat': False})) - self.assertTrue('SnapABug.allowProactiveChat(false);' in r, r) - - def test_screenshot(self): - r = SnapEngageNode().render(Context({'snapengage_screenshots': False})) - self.assertTrue('SnapABug.allowScreenshot(false);' in r, r) - with override_settings(SNAPENGAGE_SCREENSHOTS=False): - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.allowScreenshot(false);' in r, r) - - def test_offline_screenshots(self): - r = SnapEngageNode().render(Context( - {'snapengage_offline_screenshots': False})) - self.assertTrue('SnapABug.showScreenshotOption(false);' in r, r) - with override_settings(SNAPENGAGE_OFFLINE_SCREENSHOTS=False): - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.showScreenshotOption(false);' in r, r) - - def test_sounds(self): - r = SnapEngageNode().render(Context({'snapengage_sounds': False})) - self.assertTrue('SnapABug.allowChatSound(false);' in r, r) - with override_settings(SNAPENGAGE_SOUNDS=False): - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.allowChatSound(false);' in r, r) - - @override_settings(SNAPENGAGE_READONLY_EMAIL=False) - def test_email(self): - r = SnapEngageNode().render(Context({'snapengage_email': - 'test@example.com'})) - self.assertTrue('SnapABug.setUserEmail("test@example.com");' in r, r) - - def test_email_readonly(self): - r = SnapEngageNode().render(Context({'snapengage_email': - 'test@example.com', 'snapengage_readonly_email': True})) - self.assertTrue('SnapABug.setUserEmail("test@example.com",true);' in r, - r) - with override_settings(SNAPENGAGE_READONLY_EMAIL=True): - r = SnapEngageNode().render(Context({'snapengage_email': - 'test@example.com'})) - self.assertTrue('SnapABug.setUserEmail("test@example.com",true);' - in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify(self): - r = SnapEngageNode().render(Context({'user': - User(username='test', email='test@example.com')})) - self.assertTrue('SnapABug.setUserEmail("test@example.com");' in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = SnapEngageNode().render(Context({'user': AnonymousUser()})) - self.assertFalse('SnapABug.setUserEmail(' in r, r) - - def test_language(self): - r = SnapEngageNode().render(Context({'snapengage_locale': 'fr'})) - self.assertTrue('SnapABug.setLocale("fr");' in r, r) - with override_settings(SNAPENGAGE_LOCALE='fr'): - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.setLocale("fr");' in r, r) - - def test_automatic_language(self): - real_get_language = translation.get_language - try: - translation.get_language = lambda: 'fr-ca' - r = SnapEngageNode().render(Context()) - self.assertTrue('SnapABug.setLocale("fr_CA");' in r, r) - finally: - translation.get_language = real_get_language diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_spring_metrics.py b/lib/python2.7/site-packages/analytical/tests/test_tag_spring_metrics.py deleted file mode 100755 index a69cb5d46..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_spring_metrics.py +++ /dev/null @@ -1,67 +0,0 @@ -""" -Tests for the Spring Metrics template tags and filters. -""" - -import re - -from django.contrib.auth.models import User, AnonymousUser -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.spring_metrics import SpringMetricsNode -from analytical.tests.utils import TagTestCase, override_settings, \ - SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(SPRING_METRICS_TRACKING_ID='12345678') -class SpringMetricsTagTestCase(TagTestCase): - """ - Tests for the ``spring_metrics`` template tag. - """ - - def test_tag(self): - r = self.render_tag('spring_metrics', 'spring_metrics') - self.assertTrue("_springMetq.push(['id', '12345678']);" in r, r) - - def test_node(self): - r = SpringMetricsNode().render(Context({})) - self.assertTrue("_springMetq.push(['id', '12345678']);" in r, r) - - @override_settings(SPRING_METRICS_TRACKING_ID=SETTING_DELETED) - def test_no_site_id(self): - self.assertRaises(AnalyticalException, SpringMetricsNode) - - @override_settings(SPRING_METRICS_TRACKING_ID='123xyz') - def test_wrong_site_id(self): - self.assertRaises(AnalyticalException, SpringMetricsNode) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify(self): - r = SpringMetricsNode().render(Context({'user': - User(email='test@test.com')})) - self.assertTrue("_springMetq.push(['setdata', " - "{'email': 'test@test.com'}]);" in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = SpringMetricsNode().render(Context({'user': AnonymousUser()})) - self.assertFalse("_springMetq.push(['setdata', {'email':" in r, r) - - def test_custom(self): - r = SpringMetricsNode().render(Context({'spring_metrics_var1': 'val1', - 'spring_metrics_var2': 'val2'})) - self.assertTrue("_springMetq.push(['setdata', {'var1': 'val1'}]);" in r, - r) - self.assertTrue("_springMetq.push(['setdata', {'var2': 'val2'}]);" in r, - r) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = SpringMetricsNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_uservoice.py b/lib/python2.7/site-packages/analytical/tests/test_tag_uservoice.py deleted file mode 100755 index e5dc46ca9..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_uservoice.py +++ /dev/null @@ -1,93 +0,0 @@ -""" -Tests for the UserVoice tags and filters. -""" - -from django.contrib.auth.models import User, AnonymousUser -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.uservoice import UserVoiceNode -from analytical.tests.utils import TagTestCase, override_settings, \ - SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(USERVOICE_WIDGET_KEY='abcdefghijklmnopqrst') -class UserVoiceTagTestCase(TagTestCase): - """ - Tests for the ``uservoice`` template tag. - """ - - def test_node(self): - r = UserVoiceNode().render(Context()) - self.assertTrue("'widget.uservoice.com/abcdefghijklmnopqrst.js'" in r, - r) - - def test_tag(self): - r = self.render_tag('uservoice', 'uservoice') - self.assertTrue("'widget.uservoice.com/abcdefghijklmnopqrst.js'" in r, - r) - - @override_settings(USERVOICE_WIDGET_KEY=SETTING_DELETED) - def test_no_key(self): - self.assertRaises(AnalyticalException, UserVoiceNode) - - @override_settings(USERVOICE_WIDGET_KEY='abcdefgh ijklmnopqrst') - def test_invalid_key(self): - self.assertRaises(AnalyticalException, UserVoiceNode) - - @override_settings(USERVOICE_WIDGET_KEY='') - def test_empty_key(self): - r = UserVoiceNode().render(Context()) - self.assertFalse("widget.uservoice.com" in r, r) - - @override_settings(USERVOICE_WIDGET_KEY='') - def test_overridden_empty_key(self): - vars = {'uservoice_widget_key': 'bcdefghijklmnopqrstu'} - r = UserVoiceNode().render(Context(vars)) - self.assertTrue("'widget.uservoice.com/bcdefghijklmnopqrstu.js'" in r, - r) - - def test_overridden_key(self): - vars = {'uservoice_widget_key': 'defghijklmnopqrstuvw'} - r = UserVoiceNode().render(Context(vars)) - self.assertTrue("'widget.uservoice.com/defghijklmnopqrstuvw.js'" in r, - r) - - def test_link(self): - r = self.render_tag('uservoice', 'uservoice_popup') - self.assertEqual(r, "UserVoice.showPopupWidget();") - - def test_link_with_key(self): - r = self.render_tag('uservoice', - 'uservoice_popup "efghijklmnopqrstuvwx"') - self.assertEqual(r, 'UserVoice.showPopupWidget({"widget_key": ' - '"efghijklmnopqrstuvwx"});') - - def test_link_disables_tab(self): - r = self.render_template( - '{% load uservoice %}{% uservoice_popup %}{% uservoice %}') - self.assertTrue("UserVoice.showPopupWidget();" in r, r) - self.assertTrue('"enabled": false' in r, r) - self.assertTrue("'widget.uservoice.com/abcdefghijklmnopqrst.js'" in r, - r) - - def test_link_with_key_enables_tab(self): - r = self.render_template('{% load uservoice %}' - '{% uservoice_popup "efghijklmnopqrstuvwx" %}{% uservoice %}') - self.assertTrue('UserVoice.showPopupWidget({"widget_key": ' - '"efghijklmnopqrstuvwx"});' in r, r) - self.assertTrue('"enabled": true' in r, r) - self.assertTrue("'widget.uservoice.com/abcdefghijklmnopqrst.js'" in r, - r) - - def test_custom_fields(self): - vars = { - 'uservoice_fields': { - 'field1': 'val1', - 'field2': 'val2', - } - } - r = UserVoiceNode().render(Context(vars)) - self.assertTrue('"custom_fields": {"field2": "val2", "field1": "val1"}' - in r, r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_tag_woopra.py b/lib/python2.7/site-packages/analytical/tests/test_tag_woopra.py deleted file mode 100755 index 6fcf9ca7b..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_tag_woopra.py +++ /dev/null @@ -1,87 +0,0 @@ -""" -Tests for the Woopra template tags and filters. -""" - -from django.contrib.auth.models import User, AnonymousUser -from django.http import HttpRequest -from django.template import Context - -from analytical.templatetags.woopra import WoopraNode -from analytical.tests.utils import TagTestCase, override_settings, \ - SETTING_DELETED -from analytical.utils import AnalyticalException - - -@override_settings(WOOPRA_DOMAIN='example.com') -class WoopraTagTestCase(TagTestCase): - """ - Tests for the ``woopra`` template tag. - """ - - def test_tag(self): - r = self.render_tag('woopra', 'woopra') - self.assertTrue('var woo_settings = {"domain": "example.com"};' in r, r) - - def test_node(self): - r = WoopraNode().render(Context({})) - self.assertTrue('var woo_settings = {"domain": "example.com"};' in r, r) - - @override_settings(WOOPRA_DOMAIN=SETTING_DELETED) - def test_no_domain(self): - self.assertRaises(AnalyticalException, WoopraNode) - - @override_settings(WOOPRA_DOMAIN='this is not a domain') - def test_wrong_domain(self): - self.assertRaises(AnalyticalException, WoopraNode) - - @override_settings(WOOPRA_IDLE_TIMEOUT=1234) - def test_idle_timeout(self): - r = WoopraNode().render(Context({})) - self.assertTrue('var woo_settings = {"domain": "example.com", ' - '"idle_timeout": "1234"};' in r, r) - - def test_custom(self): - r = WoopraNode().render(Context({'woopra_var1': 'val1', - 'woopra_var2': 'val2'})) - self.assertTrue('var woo_visitor = {"var1": "val1", "var2": "val2"};' - in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_name_and_email(self): - r = WoopraNode().render(Context({'user': User(username='test', - first_name='Firstname', last_name='Lastname', - email="test@example.com")})) - self.assertTrue('var woo_visitor = {"name": "Firstname Lastname", ' - '"email": "test@example.com"};' in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_username_no_email(self): - r = WoopraNode().render(Context({'user': User(username='test')})) - self.assertTrue('var woo_visitor = {"name": "test"};' in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_no_identify_when_explicit_name(self): - r = WoopraNode().render(Context({'woopra_name': 'explicit', - 'user': User(username='implicit')})) - self.assertTrue('var woo_visitor = {"name": "explicit"};' in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_no_identify_when_explicit_email(self): - r = WoopraNode().render(Context({'woopra_email': 'explicit', - 'user': User(username='implicit')})) - self.assertTrue('var woo_visitor = {"email": "explicit"};' in r, r) - - @override_settings(ANALYTICAL_AUTO_IDENTIFY=True) - def test_identify_anonymous_user(self): - r = WoopraNode().render(Context({'user': AnonymousUser()})) - self.assertTrue('var woo_visitor = {};' in r, r) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - r = WoopraNode().render(context) - self.assertTrue(r.startswith( - ''), r) diff --git a/lib/python2.7/site-packages/analytical/tests/test_utils.py b/lib/python2.7/site-packages/analytical/tests/test_utils.py deleted file mode 100755 index edef2465f..000000000 --- a/lib/python2.7/site-packages/analytical/tests/test_utils.py +++ /dev/null @@ -1,117 +0,0 @@ -""" -Tests for the analytical.utils module. -""" - -from django.conf import settings -from django.contrib.sites.models import Site -from django.http import HttpRequest -from django.template import Context - -from analytical.utils import ( - get_domain, is_internal_ip, get_required_setting, AnalyticalException) -from analytical.tests.utils import ( - TestCase, override_settings, with_apps, SETTING_DELETED) - - -class SettingDeletedTestCase(TestCase): - @override_settings(USER_ID=SETTING_DELETED) - def test_deleted_setting_raises_exception(self): - self.assertRaises(AttributeError, getattr, settings, "USER_ID") - - @override_settings(USER_ID=1) - def test_only_disable_within_context_manager(self): - """ - Make sure deleted settings returns once the block exits. - """ - self.assertEqual(settings.USER_ID, 1) - - with override_settings(USER_ID=SETTING_DELETED): - self.assertRaises(AttributeError, getattr, settings, "USER_ID") - - self.assertEqual(settings.USER_ID, 1) - - @override_settings(USER_ID=SETTING_DELETED) - def test_get_required_setting(self): - """ - Make sure using get_required_setting fails in the right place. - """ - # only available in python >= 2.7 - if hasattr(self, 'assertRaisesRegexp'): - with self.assertRaisesRegexp(AnalyticalException, "^USER_ID setting: not found$"): - user_id = get_required_setting("USER_ID", "\d+", "invalid USER_ID") - else: - self.assertRaises(AnalyticalException, - get_required_setting, "USER_ID", "\d+", "invalid USER_ID") - -@override_settings(ANALYTICAL_DOMAIN="example.org") -class GetDomainTestCase(TestCase): - def test_get_service_domain_from_context(self): - context = Context({'test_domain': 'example.com'}) - self.assertEqual(get_domain(context, 'test'), 'example.com') - - def test_get_analytical_domain_from_context(self): - context = Context({'analytical_domain': 'example.com'}) - self.assertEqual(get_domain(context, 'test'), 'example.com') - - @override_settings(TEST_DOMAIN="example.net") - def test_get_service_domain_from_settings(self): - context = Context() - self.assertEqual(get_domain(context, 'test'), 'example.net') - - def test_get_analytical_domain_from_settings(self): - context = Context() - self.assertEqual(get_domain(context, 'test'), 'example.org') - - -@with_apps('django.contrib.sites') -@override_settings(TEST_DOMAIN=SETTING_DELETED, - ANALYTICAL_DOMAIN=SETTING_DELETED) -class GetDomainTestCaseWithSites(TestCase): - def test_get_domain_from_site(self): - site = Site.objects.create(domain="example.com", name="test") - with override_settings(SITE_ID=site.id): - context = Context() - self.assertEqual(get_domain(context, 'test'), 'example.com') - - -class InternalIpTestCase(TestCase): - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_no_internal_ip(self): - context = Context() - self.assertFalse(is_internal_ip(context)) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - self.assertTrue(is_internal_ip(context)) - - @override_settings(TEST_INTERNAL_IPS=['1.1.1.1']) - def test_render_prefix_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - self.assertTrue(is_internal_ip(context, 'TEST')) - - @override_settings(INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip_fallback(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '1.1.1.1' - context = Context({'request': req}) - self.assertTrue(is_internal_ip(context)) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_internal_ip_forwarded_for(self): - req = HttpRequest() - req.META['HTTP_X_FORWARDED_FOR'] = '1.1.1.1' - context = Context({'request': req}) - self.assertTrue(is_internal_ip(context)) - - @override_settings(ANALYTICAL_INTERNAL_IPS=['1.1.1.1']) - def test_render_different_internal_ip(self): - req = HttpRequest() - req.META['REMOTE_ADDR'] = '2.2.2.2' - context = Context({'request': req}) - self.assertFalse(is_internal_ip(context)) diff --git a/lib/python2.7/site-packages/analytical/tests/utils.py b/lib/python2.7/site-packages/analytical/tests/utils.py deleted file mode 100755 index 8c29fecef..000000000 --- a/lib/python2.7/site-packages/analytical/tests/utils.py +++ /dev/null @@ -1,161 +0,0 @@ -""" -Testing utilities. -""" - -from __future__ import with_statement - -import copy - -from django.conf import settings, UserSettingsHolder -from django.core.management import call_command -from django.db.models import loading -from django.template import Template, Context, RequestContext -from django.test.testcases import TestCase -from django.utils.functional import wraps - - -SETTING_DELETED = object() - - -# Backported adapted from Django trunk (r16377) -class override_settings(object): - """ - Temporarily override Django settings. - - Can be used as either a decorator on test classes/functions or as - a context manager inside test functions. - - In either case it temporarily overrides django.conf.settings so - that you can test how code acts when certain settings are set to - certain values or deleted altogether with SETTING_DELETED. - - >>> @override_settings(FOOBAR=42) - >>> class TestBaz(TestCase): - >>> # settings.FOOBAR == 42 for all tests - >>> - >>> @override_settings(FOOBAR=43) - >>> def test_widget(self): - >>> # settings.FOOBAR == 43 for just this test - >>> - >>> with override_settings(FOOBAR=44): - >>> # settings.FOOBAR == 44 just inside this block - >>> pass - >>> - >>> # settings.FOOBAR == 43 inside the test - """ - def __init__(self, **kwargs): - self.options = kwargs - self.wrapped = settings._wrapped - - def __enter__(self): - self.enable() - - def __exit__(self, exc_type, exc_value, traceback): - self.disable() - - def __call__(self, test_func): - from django.test import TransactionTestCase - if isinstance(test_func, type) and issubclass(test_func, TransactionTestCase): - # When decorating a class, we need to construct a new class - # with the same name so that the test discovery tools can - # get a useful name. - def _pre_setup(innerself): - self.enable() - test_func._pre_setup(innerself) - def _post_teardown(innerself): - test_func._post_teardown(innerself) - self.disable() - inner = type( - test_func.__name__, - (test_func,), - { - '_pre_setup': _pre_setup, - '_post_teardown': _post_teardown, - '__module__': test_func.__module__, - }) - else: - @wraps(test_func) - def inner(*args, **kwargs): - with self: - return test_func(*args, **kwargs) - return inner - - def enable(self): - class OverrideSettingsHolder(UserSettingsHolder): - def __getattr__(self, name): - if name == "default_settings": - return self.__dict__["default_settings"] - return getattr(self.default_settings, name) - - override = OverrideSettingsHolder(copy.copy(settings._wrapped)) - for key, new_value in self.options.items(): - if new_value is SETTING_DELETED: - try: - delattr(override.default_settings, key) - except AttributeError: - pass - else: - setattr(override, key, new_value) - settings._wrapped = override - - def disable(self): - settings._wrapped = self.wrapped - - -def run_tests(): - """ - Use the Django test runner to run the tests. - - Sets the return code to the number of failed tests. - """ - import sys - from django.test.simple import DjangoTestSuiteRunner - runner = DjangoTestSuiteRunner() - sys.exit(runner.run_tests(["analytical"])) - - -def with_apps(*apps): - """ - Class decorator that makes sure the passed apps are present in - INSTALLED_APPS. - """ - apps_set = set(settings.INSTALLED_APPS) - apps_set.update(apps) - return override_settings(INSTALLED_APPS=list(apps_set)) - - -def without_apps(*apps): - """ - Class decorator that makes sure the passed apps are not present in - INSTALLED_APPS. - """ - apps_list = [a for a in settings.INSTALLED_APPS if a not in apps] - return override_settings(INSTALLED_APPS=apps_list) - - -class TagTestCase(TestCase): - """ - Tests for a template tag. - - Adds support methods for testing template tags. - """ - - def render_tag(self, library, tag, vars=None, request=None): - if vars is None: - vars = {} - t = Template("{%% load %s %%}{%% %s %%}" % (library, tag)) - if request is not None: - context = RequestContext(request, vars) - else: - context = Context(vars) - return t.render(context) - - def render_template(self, template, vars=None, request=None): - if vars is None: - vars = {} - t = Template(template) - if request is not None: - context = RequestContext(request, vars) - else: - context = Context(vars) - return t.render(context) diff --git a/lib/python2.7/site-packages/analytical/utils.py b/lib/python2.7/site-packages/analytical/utils.py deleted file mode 100755 index db3170698..000000000 --- a/lib/python2.7/site-packages/analytical/utils.py +++ /dev/null @@ -1,151 +0,0 @@ -""" -Utility function for django-analytical. -""" - -from django.conf import settings -from django.contrib.sites.models import Site -from django.core.exceptions import ImproperlyConfigured - - -HTML_COMMENT = "" - - -def get_required_setting(setting, value_re, invalid_msg): - """ - Return a constant from ``django.conf.settings``. The `setting` - argument is the constant name, the `value_re` argument is a regular - expression used to validate the setting value and the `invalid_msg` - argument is used as exception message if the value is not valid. - """ - try: - value = getattr(settings, setting) - except AttributeError: - raise AnalyticalException("%s setting: not found" % setting) - value = str(value) - if not value_re.search(value): - raise AnalyticalException("%s setting: %s: '%s'" - % (setting, invalid_msg, value)) - return value - - -def get_user_from_context(context): - """ - Get the user instance from the template context, if possible. - - If the context does not contain a `request` or `user` attribute, - `None` is returned. - """ - try: - return context['user'] - except KeyError: - pass - try: - request = context['request'] - return request.user - except (KeyError, AttributeError): - pass - return None - - -def get_identity(context, prefix=None, identity_func=None, user=None): - """ - Get the identity of a logged in user from a template context. - - The `prefix` argument is used to provide different identities to - different analytics services. The `identity_func` argument is a - function that returns the identity of the user; by default the - identity is the username. - """ - if prefix is not None: - try: - return context['%s_identity' % prefix] - except KeyError: - pass - try: - return context['analytical_identity'] - except KeyError: - pass - if getattr(settings, 'ANALYTICAL_AUTO_IDENTIFY', True): - try: - if user is None: - user = get_user_from_context(context) - if user.is_authenticated(): - if identity_func is not None: - return identity_func(user) - else: - return user.username - except (KeyError, AttributeError): - pass - return None - - -def get_domain(context, prefix): - """ - Return the domain used for the tracking code. Each service may be - configured with its own domain (called `_domain`), or a - django-analytical-wide domain may be set (using `analytical_domain`. - - If no explicit domain is found in either the context or the - settings, try to get the domain from the contrib sites framework. - """ - domain = context.get('%s_domain' % prefix) - if domain is None: - domain = context.get('analytical_domain') - if domain is None: - domain = getattr(settings, '%s_DOMAIN' % prefix.upper(), None) - if domain is None: - domain = getattr(settings, 'ANALYTICAL_DOMAIN', None) - if domain is None: - if 'django.contrib.sites' in settings.INSTALLED_APPS: - try: - domain = Site.objects.get_current().domain - except (ImproperlyConfigured, Site.DoesNotExist): - pass - return domain - - -def is_internal_ip(context, prefix=None): - """ - Return whether the visitor is coming from an internal IP address, - based on information from the template context. - - The prefix is used to allow different analytics services to have - different notions of internal addresses. - """ - try: - request = context['request'] - remote_ip = request.META.get('HTTP_X_FORWARDED_FOR', '') - if not remote_ip: - remote_ip = request.META.get('REMOTE_ADDR', '') - if not remote_ip: - return False - - internal_ips = '' - if prefix is not None: - internal_ips = getattr(settings, '%s_INTERNAL_IPS' % prefix, '') - if not internal_ips: - internal_ips = getattr(settings, 'ANALYTICAL_INTERNAL_IPS', '') - if not internal_ips: - internal_ips = getattr(settings, 'INTERNAL_IPS', '') - - return remote_ip in internal_ips - except (KeyError, AttributeError): - return False - - -def disable_html(html, service): - """ - Disable HTML code by commenting it out. - - The `service` argument is used to display a friendly message. - """ - return HTML_COMMENT % {'html': html, 'service': service} - - -class AnalyticalException(Exception): - """ - Raised when an exception occurs in any django-analytical code that should - be silenced in templates. - """ - silent_variable_failure = True diff --git a/lib/python2.7/site-packages/dateutil/__init__.py b/lib/python2.7/site-packages/dateutil/__init__.py deleted file mode 100644 index 290814cf9..000000000 --- a/lib/python2.7/site-packages/dateutil/__init__.py +++ /dev/null @@ -1,9 +0,0 @@ -""" -Copyright (c) 2003-2010 Gustavo Niemeyer - -This module offers extensions to the standard python 2.3+ -datetime module. -""" -__author__ = "Gustavo Niemeyer " -__license__ = "PSF License" -__version__ = "1.5" diff --git a/lib/python2.7/site-packages/dateutil/easter.py b/lib/python2.7/site-packages/dateutil/easter.py deleted file mode 100644 index d7944104b..000000000 --- a/lib/python2.7/site-packages/dateutil/easter.py +++ /dev/null @@ -1,92 +0,0 @@ -""" -Copyright (c) 2003-2007 Gustavo Niemeyer - -This module offers extensions to the standard python 2.3+ -datetime module. -""" -__author__ = "Gustavo Niemeyer " -__license__ = "PSF License" - -import datetime - -__all__ = ["easter", "EASTER_JULIAN", "EASTER_ORTHODOX", "EASTER_WESTERN"] - -EASTER_JULIAN = 1 -EASTER_ORTHODOX = 2 -EASTER_WESTERN = 3 - -def easter(year, method=EASTER_WESTERN): - """ - This method was ported from the work done by GM Arts, - on top of the algorithm by Claus Tondering, which was - based in part on the algorithm of Ouding (1940), as - quoted in "Explanatory Supplement to the Astronomical - Almanac", P. Kenneth Seidelmann, editor. - - This algorithm implements three different easter - calculation methods: - - 1 - Original calculation in Julian calendar, valid in - dates after 326 AD - 2 - Original method, with date converted to Gregorian - calendar, valid in years 1583 to 4099 - 3 - Revised method, in Gregorian calendar, valid in - years 1583 to 4099 as well - - These methods are represented by the constants: - - EASTER_JULIAN = 1 - EASTER_ORTHODOX = 2 - EASTER_WESTERN = 3 - - The default method is method 3. - - More about the algorithm may be found at: - - http://users.chariot.net.au/~gmarts/eastalg.htm - - and - - http://www.tondering.dk/claus/calendar.html - - """ - - if not (1 <= method <= 3): - raise ValueError, "invalid method" - - # g - Golden year - 1 - # c - Century - # h - (23 - Epact) mod 30 - # i - Number of days from March 21 to Paschal Full Moon - # j - Weekday for PFM (0=Sunday, etc) - # p - Number of days from March 21 to Sunday on or before PFM - # (-6 to 28 methods 1 & 3, to 56 for method 2) - # e - Extra days to add for method 2 (converting Julian - # date to Gregorian date) - - y = year - g = y % 19 - e = 0 - if method < 3: - # Old method - i = (19*g+15)%30 - j = (y+y//4+i)%7 - if method == 2: - # Extra dates to convert Julian to Gregorian date - e = 10 - if y > 1600: - e = e+y//100-16-(y//100-16)//4 - else: - # New method - c = y//100 - h = (c-c//4-(8*c+13)//25+19*g+15)%30 - i = h-(h//28)*(1-(h//28)*(29//(h+1))*((21-g)//11)) - j = (y+y//4+i+2-c+c//4)%7 - - # p can be from -6 to 56 corresponding to dates 22 March to 23 May - # (later dates apply to method 2, although 23 May never actually occurs) - p = i-j+e - d = 1+(p+27+(p+6)//40)%31 - m = 3+(p+26)//30 - return datetime.date(int(y),int(m),int(d)) - diff --git a/lib/python2.7/site-packages/dateutil/parser.py b/lib/python2.7/site-packages/dateutil/parser.py deleted file mode 100644 index 5d824e411..000000000 --- a/lib/python2.7/site-packages/dateutil/parser.py +++ /dev/null @@ -1,886 +0,0 @@ -# -*- coding:iso-8859-1 -*- -""" -Copyright (c) 2003-2007 Gustavo Niemeyer - -This module offers extensions to the standard python 2.3+ -datetime module. -""" -__author__ = "Gustavo Niemeyer " -__license__ = "PSF License" - -import datetime -import string -import time -import sys -import os - -try: - from cStringIO import StringIO -except ImportError: - from StringIO import StringIO - -import relativedelta -import tz - - -__all__ = ["parse", "parserinfo"] - - -# Some pointers: -# -# http://www.cl.cam.ac.uk/~mgk25/iso-time.html -# http://www.iso.ch/iso/en/prods-services/popstds/datesandtime.html -# http://www.w3.org/TR/NOTE-datetime -# http://ringmaster.arc.nasa.gov/tools/time_formats.html -# http://search.cpan.org/author/MUIR/Time-modules-2003.0211/lib/Time/ParseDate.pm -# http://stein.cshl.org/jade/distrib/docs/java.text.SimpleDateFormat.html - - -class _timelex(object): - - def __init__(self, instream): - if isinstance(instream, basestring): - instream = StringIO(instream) - self.instream = instream - self.wordchars = ('abcdfeghijklmnopqrstuvwxyz' - 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_' - 'ßàáâãäåæçèéêëìíîïðñòóôõöøùúûüýþÿ' - 'ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØÙÚÛÜÝÞ') - self.numchars = '0123456789' - self.whitespace = ' \t\r\n' - self.charstack = [] - self.tokenstack = [] - self.eof = False - - def get_token(self): - if self.tokenstack: - return self.tokenstack.pop(0) - seenletters = False - token = None - state = None - wordchars = self.wordchars - numchars = self.numchars - whitespace = self.whitespace - while not self.eof: - if self.charstack: - nextchar = self.charstack.pop(0) - else: - nextchar = self.instream.read(1) - while nextchar == '\x00': - nextchar = self.instream.read(1) - if not nextchar: - self.eof = True - break - elif not state: - token = nextchar - if nextchar in wordchars: - state = 'a' - elif nextchar in numchars: - state = '0' - elif nextchar in whitespace: - token = ' ' - break # emit token - else: - break # emit token - elif state == 'a': - seenletters = True - if nextchar in wordchars: - token += nextchar - elif nextchar == '.': - token += nextchar - state = 'a.' - else: - self.charstack.append(nextchar) - break # emit token - elif state == '0': - if nextchar in numchars: - token += nextchar - elif nextchar == '.': - token += nextchar - state = '0.' - else: - self.charstack.append(nextchar) - break # emit token - elif state == 'a.': - seenletters = True - if nextchar == '.' or nextchar in wordchars: - token += nextchar - elif nextchar in numchars and token[-1] == '.': - token += nextchar - state = '0.' - else: - self.charstack.append(nextchar) - break # emit token - elif state == '0.': - if nextchar == '.' or nextchar in numchars: - token += nextchar - elif nextchar in wordchars and token[-1] == '.': - token += nextchar - state = 'a.' - else: - self.charstack.append(nextchar) - break # emit token - if (state in ('a.', '0.') and - (seenletters or token.count('.') > 1 or token[-1] == '.')): - l = token.split('.') - token = l[0] - for tok in l[1:]: - self.tokenstack.append('.') - if tok: - self.tokenstack.append(tok) - return token - - def __iter__(self): - return self - - def next(self): - token = self.get_token() - if token is None: - raise StopIteration - return token - - def split(cls, s): - return list(cls(s)) - split = classmethod(split) - - -class _resultbase(object): - - def __init__(self): - for attr in self.__slots__: - setattr(self, attr, None) - - def _repr(self, classname): - l = [] - for attr in self.__slots__: - value = getattr(self, attr) - if value is not None: - l.append("%s=%s" % (attr, `value`)) - return "%s(%s)" % (classname, ", ".join(l)) - - def __repr__(self): - return self._repr(self.__class__.__name__) - - -class parserinfo(object): - - # m from a.m/p.m, t from ISO T separator - JUMP = [" ", ".", ",", ";", "-", "/", "'", - "at", "on", "and", "ad", "m", "t", "of", - "st", "nd", "rd", "th"] - - WEEKDAYS = [("Mon", "Monday"), - ("Tue", "Tuesday"), - ("Wed", "Wednesday"), - ("Thu", "Thursday"), - ("Fri", "Friday"), - ("Sat", "Saturday"), - ("Sun", "Sunday")] - MONTHS = [("Jan", "January"), - ("Feb", "February"), - ("Mar", "March"), - ("Apr", "April"), - ("May", "May"), - ("Jun", "June"), - ("Jul", "July"), - ("Aug", "August"), - ("Sep", "September"), - ("Oct", "October"), - ("Nov", "November"), - ("Dec", "December")] - HMS = [("h", "hour", "hours"), - ("m", "minute", "minutes"), - ("s", "second", "seconds")] - AMPM = [("am", "a"), - ("pm", "p")] - UTCZONE = ["UTC", "GMT", "Z"] - PERTAIN = ["of"] - TZOFFSET = {} - - def __init__(self, dayfirst=False, yearfirst=False): - self._jump = self._convert(self.JUMP) - self._weekdays = self._convert(self.WEEKDAYS) - self._months = self._convert(self.MONTHS) - self._hms = self._convert(self.HMS) - self._ampm = self._convert(self.AMPM) - self._utczone = self._convert(self.UTCZONE) - self._pertain = self._convert(self.PERTAIN) - - self.dayfirst = dayfirst - self.yearfirst = yearfirst - - self._year = time.localtime().tm_year - self._century = self._year//100*100 - - def _convert(self, lst): - dct = {} - for i in range(len(lst)): - v = lst[i] - if isinstance(v, tuple): - for v in v: - dct[v.lower()] = i - else: - dct[v.lower()] = i - return dct - - def jump(self, name): - return name.lower() in self._jump - - def weekday(self, name): - if len(name) >= 3: - try: - return self._weekdays[name.lower()] - except KeyError: - pass - return None - - def month(self, name): - if len(name) >= 3: - try: - return self._months[name.lower()]+1 - except KeyError: - pass - return None - - def hms(self, name): - try: - return self._hms[name.lower()] - except KeyError: - return None - - def ampm(self, name): - try: - return self._ampm[name.lower()] - except KeyError: - return None - - def pertain(self, name): - return name.lower() in self._pertain - - def utczone(self, name): - return name.lower() in self._utczone - - def tzoffset(self, name): - if name in self._utczone: - return 0 - return self.TZOFFSET.get(name) - - def convertyear(self, year): - if year < 100: - year += self._century - if abs(year-self._year) >= 50: - if year < self._year: - year += 100 - else: - year -= 100 - return year - - def validate(self, res): - # move to info - if res.year is not None: - res.year = self.convertyear(res.year) - if res.tzoffset == 0 and not res.tzname or res.tzname == 'Z': - res.tzname = "UTC" - res.tzoffset = 0 - elif res.tzoffset != 0 and res.tzname and self.utczone(res.tzname): - res.tzoffset = 0 - return True - - -class parser(object): - - def __init__(self, info=None): - self.info = info or parserinfo() - - def parse(self, timestr, default=None, - ignoretz=False, tzinfos=None, - **kwargs): - if not default: - default = datetime.datetime.now().replace(hour=0, minute=0, - second=0, microsecond=0) - res = self._parse(timestr, **kwargs) - if res is None: - raise ValueError, "unknown string format" - repl = {} - for attr in ["year", "month", "day", "hour", - "minute", "second", "microsecond"]: - value = getattr(res, attr) - if value is not None: - repl[attr] = value - ret = default.replace(**repl) - if res.weekday is not None and not res.day: - ret = ret+relativedelta.relativedelta(weekday=res.weekday) - if not ignoretz: - if callable(tzinfos) or tzinfos and res.tzname in tzinfos: - if callable(tzinfos): - tzdata = tzinfos(res.tzname, res.tzoffset) - else: - tzdata = tzinfos.get(res.tzname) - if isinstance(tzdata, datetime.tzinfo): - tzinfo = tzdata - elif isinstance(tzdata, basestring): - tzinfo = tz.tzstr(tzdata) - elif isinstance(tzdata, int): - tzinfo = tz.tzoffset(res.tzname, tzdata) - else: - raise ValueError, "offset must be tzinfo subclass, " \ - "tz string, or int offset" - ret = ret.replace(tzinfo=tzinfo) - elif res.tzname and res.tzname in time.tzname: - ret = ret.replace(tzinfo=tz.tzlocal()) - elif res.tzoffset == 0: - ret = ret.replace(tzinfo=tz.tzutc()) - elif res.tzoffset: - ret = ret.replace(tzinfo=tz.tzoffset(res.tzname, res.tzoffset)) - return ret - - class _result(_resultbase): - __slots__ = ["year", "month", "day", "weekday", - "hour", "minute", "second", "microsecond", - "tzname", "tzoffset"] - - def _parse(self, timestr, dayfirst=None, yearfirst=None, fuzzy=False): - info = self.info - if dayfirst is None: - dayfirst = info.dayfirst - if yearfirst is None: - yearfirst = info.yearfirst - res = self._result() - l = _timelex.split(timestr) - try: - - # year/month/day list - ymd = [] - - # Index of the month string in ymd - mstridx = -1 - - len_l = len(l) - i = 0 - while i < len_l: - - # Check if it's a number - try: - value_repr = l[i] - value = float(value_repr) - except ValueError: - value = None - - if value is not None: - # Token is a number - len_li = len(l[i]) - i += 1 - if (len(ymd) == 3 and len_li in (2, 4) - and (i >= len_l or (l[i] != ':' and - info.hms(l[i]) is None))): - # 19990101T23[59] - s = l[i-1] - res.hour = int(s[:2]) - if len_li == 4: - res.minute = int(s[2:]) - elif len_li == 6 or (len_li > 6 and l[i-1].find('.') == 6): - # YYMMDD or HHMMSS[.ss] - s = l[i-1] - if not ymd and l[i-1].find('.') == -1: - ymd.append(info.convertyear(int(s[:2]))) - ymd.append(int(s[2:4])) - ymd.append(int(s[4:])) - else: - # 19990101T235959[.59] - res.hour = int(s[:2]) - res.minute = int(s[2:4]) - res.second, res.microsecond = _parsems(s[4:]) - elif len_li == 8: - # YYYYMMDD - s = l[i-1] - ymd.append(int(s[:4])) - ymd.append(int(s[4:6])) - ymd.append(int(s[6:])) - elif len_li in (12, 14): - # YYYYMMDDhhmm[ss] - s = l[i-1] - ymd.append(int(s[:4])) - ymd.append(int(s[4:6])) - ymd.append(int(s[6:8])) - res.hour = int(s[8:10]) - res.minute = int(s[10:12]) - if len_li == 14: - res.second = int(s[12:]) - elif ((i < len_l and info.hms(l[i]) is not None) or - (i+1 < len_l and l[i] == ' ' and - info.hms(l[i+1]) is not None)): - # HH[ ]h or MM[ ]m or SS[.ss][ ]s - if l[i] == ' ': - i += 1 - idx = info.hms(l[i]) - while True: - if idx == 0: - res.hour = int(value) - if value%1: - res.minute = int(60*(value%1)) - elif idx == 1: - res.minute = int(value) - if value%1: - res.second = int(60*(value%1)) - elif idx == 2: - res.second, res.microsecond = \ - _parsems(value_repr) - i += 1 - if i >= len_l or idx == 2: - break - # 12h00 - try: - value_repr = l[i] - value = float(value_repr) - except ValueError: - break - else: - i += 1 - idx += 1 - if i < len_l: - newidx = info.hms(l[i]) - if newidx is not None: - idx = newidx - elif i+1 < len_l and l[i] == ':': - # HH:MM[:SS[.ss]] - res.hour = int(value) - i += 1 - value = float(l[i]) - res.minute = int(value) - if value%1: - res.second = int(60*(value%1)) - i += 1 - if i < len_l and l[i] == ':': - res.second, res.microsecond = _parsems(l[i+1]) - i += 2 - elif i < len_l and l[i] in ('-', '/', '.'): - sep = l[i] - ymd.append(int(value)) - i += 1 - if i < len_l and not info.jump(l[i]): - try: - # 01-01[-01] - ymd.append(int(l[i])) - except ValueError: - # 01-Jan[-01] - value = info.month(l[i]) - if value is not None: - ymd.append(value) - assert mstridx == -1 - mstridx = len(ymd)-1 - else: - return None - i += 1 - if i < len_l and l[i] == sep: - # We have three members - i += 1 - value = info.month(l[i]) - if value is not None: - ymd.append(value) - mstridx = len(ymd)-1 - assert mstridx == -1 - else: - ymd.append(int(l[i])) - i += 1 - elif i >= len_l or info.jump(l[i]): - if i+1 < len_l and info.ampm(l[i+1]) is not None: - # 12 am - res.hour = int(value) - if res.hour < 12 and info.ampm(l[i+1]) == 1: - res.hour += 12 - elif res.hour == 12 and info.ampm(l[i+1]) == 0: - res.hour = 0 - i += 1 - else: - # Year, month or day - ymd.append(int(value)) - i += 1 - elif info.ampm(l[i]) is not None: - # 12am - res.hour = int(value) - if res.hour < 12 and info.ampm(l[i]) == 1: - res.hour += 12 - elif res.hour == 12 and info.ampm(l[i]) == 0: - res.hour = 0 - i += 1 - elif not fuzzy: - return None - else: - i += 1 - continue - - # Check weekday - value = info.weekday(l[i]) - if value is not None: - res.weekday = value - i += 1 - continue - - # Check month name - value = info.month(l[i]) - if value is not None: - ymd.append(value) - assert mstridx == -1 - mstridx = len(ymd)-1 - i += 1 - if i < len_l: - if l[i] in ('-', '/'): - # Jan-01[-99] - sep = l[i] - i += 1 - ymd.append(int(l[i])) - i += 1 - if i < len_l and l[i] == sep: - # Jan-01-99 - i += 1 - ymd.append(int(l[i])) - i += 1 - elif (i+3 < len_l and l[i] == l[i+2] == ' ' - and info.pertain(l[i+1])): - # Jan of 01 - # In this case, 01 is clearly year - try: - value = int(l[i+3]) - except ValueError: - # Wrong guess - pass - else: - # Convert it here to become unambiguous - ymd.append(info.convertyear(value)) - i += 4 - continue - - # Check am/pm - value = info.ampm(l[i]) - if value is not None: - if value == 1 and res.hour < 12: - res.hour += 12 - elif value == 0 and res.hour == 12: - res.hour = 0 - i += 1 - continue - - # Check for a timezone name - if (res.hour is not None and len(l[i]) <= 5 and - res.tzname is None and res.tzoffset is None and - not [x for x in l[i] if x not in string.ascii_uppercase]): - res.tzname = l[i] - res.tzoffset = info.tzoffset(res.tzname) - i += 1 - - # Check for something like GMT+3, or BRST+3. Notice - # that it doesn't mean "I am 3 hours after GMT", but - # "my time +3 is GMT". If found, we reverse the - # logic so that timezone parsing code will get it - # right. - if i < len_l and l[i] in ('+', '-'): - l[i] = ('+', '-')[l[i] == '+'] - res.tzoffset = None - if info.utczone(res.tzname): - # With something like GMT+3, the timezone - # is *not* GMT. - res.tzname = None - - continue - - # Check for a numbered timezone - if res.hour is not None and l[i] in ('+', '-'): - signal = (-1,1)[l[i] == '+'] - i += 1 - len_li = len(l[i]) - if len_li == 4: - # -0300 - res.tzoffset = int(l[i][:2])*3600+int(l[i][2:])*60 - elif i+1 < len_l and l[i+1] == ':': - # -03:00 - res.tzoffset = int(l[i])*3600+int(l[i+2])*60 - i += 2 - elif len_li <= 2: - # -[0]3 - res.tzoffset = int(l[i][:2])*3600 - else: - return None - i += 1 - res.tzoffset *= signal - - # Look for a timezone name between parenthesis - if (i+3 < len_l and - info.jump(l[i]) and l[i+1] == '(' and l[i+3] == ')' and - 3 <= len(l[i+2]) <= 5 and - not [x for x in l[i+2] - if x not in string.ascii_uppercase]): - # -0300 (BRST) - res.tzname = l[i+2] - i += 4 - continue - - # Check jumps - if not (info.jump(l[i]) or fuzzy): - return None - - i += 1 - - # Process year/month/day - len_ymd = len(ymd) - if len_ymd > 3: - # More than three members!? - return None - elif len_ymd == 1 or (mstridx != -1 and len_ymd == 2): - # One member, or two members with a month string - if mstridx != -1: - res.month = ymd[mstridx] - del ymd[mstridx] - if len_ymd > 1 or mstridx == -1: - if ymd[0] > 31: - res.year = ymd[0] - else: - res.day = ymd[0] - elif len_ymd == 2: - # Two members with numbers - if ymd[0] > 31: - # 99-01 - res.year, res.month = ymd - elif ymd[1] > 31: - # 01-99 - res.month, res.year = ymd - elif dayfirst and ymd[1] <= 12: - # 13-01 - res.day, res.month = ymd - else: - # 01-13 - res.month, res.day = ymd - if len_ymd == 3: - # Three members - if mstridx == 0: - res.month, res.day, res.year = ymd - elif mstridx == 1: - if ymd[0] > 31 or (yearfirst and ymd[2] <= 31): - # 99-Jan-01 - res.year, res.month, res.day = ymd - else: - # 01-Jan-01 - # Give precendence to day-first, since - # two-digit years is usually hand-written. - res.day, res.month, res.year = ymd - elif mstridx == 2: - # WTF!? - if ymd[1] > 31: - # 01-99-Jan - res.day, res.year, res.month = ymd - else: - # 99-01-Jan - res.year, res.day, res.month = ymd - else: - if ymd[0] > 31 or \ - (yearfirst and ymd[1] <= 12 and ymd[2] <= 31): - # 99-01-01 - res.year, res.month, res.day = ymd - elif ymd[0] > 12 or (dayfirst and ymd[1] <= 12): - # 13-01-01 - res.day, res.month, res.year = ymd - else: - # 01-13-01 - res.month, res.day, res.year = ymd - - except (IndexError, ValueError, AssertionError): - return None - - if not info.validate(res): - return None - return res - -DEFAULTPARSER = parser() -def parse(timestr, parserinfo=None, **kwargs): - if parserinfo: - return parser(parserinfo).parse(timestr, **kwargs) - else: - return DEFAULTPARSER.parse(timestr, **kwargs) - - -class _tzparser(object): - - class _result(_resultbase): - - __slots__ = ["stdabbr", "stdoffset", "dstabbr", "dstoffset", - "start", "end"] - - class _attr(_resultbase): - __slots__ = ["month", "week", "weekday", - "yday", "jyday", "day", "time"] - - def __repr__(self): - return self._repr("") - - def __init__(self): - _resultbase.__init__(self) - self.start = self._attr() - self.end = self._attr() - - def parse(self, tzstr): - res = self._result() - l = _timelex.split(tzstr) - try: - - len_l = len(l) - - i = 0 - while i < len_l: - # BRST+3[BRDT[+2]] - j = i - while j < len_l and not [x for x in l[j] - if x in "0123456789:,-+"]: - j += 1 - if j != i: - if not res.stdabbr: - offattr = "stdoffset" - res.stdabbr = "".join(l[i:j]) - else: - offattr = "dstoffset" - res.dstabbr = "".join(l[i:j]) - i = j - if (i < len_l and - (l[i] in ('+', '-') or l[i][0] in "0123456789")): - if l[i] in ('+', '-'): - # Yes, that's right. See the TZ variable - # documentation. - signal = (1,-1)[l[i] == '+'] - i += 1 - else: - signal = -1 - len_li = len(l[i]) - if len_li == 4: - # -0300 - setattr(res, offattr, - (int(l[i][:2])*3600+int(l[i][2:])*60)*signal) - elif i+1 < len_l and l[i+1] == ':': - # -03:00 - setattr(res, offattr, - (int(l[i])*3600+int(l[i+2])*60)*signal) - i += 2 - elif len_li <= 2: - # -[0]3 - setattr(res, offattr, - int(l[i][:2])*3600*signal) - else: - return None - i += 1 - if res.dstabbr: - break - else: - break - - if i < len_l: - for j in range(i, len_l): - if l[j] == ';': l[j] = ',' - - assert l[i] == ',' - - i += 1 - - if i >= len_l: - pass - elif (8 <= l.count(',') <= 9 and - not [y for x in l[i:] if x != ',' - for y in x if y not in "0123456789"]): - # GMT0BST,3,0,30,3600,10,0,26,7200[,3600] - for x in (res.start, res.end): - x.month = int(l[i]) - i += 2 - if l[i] == '-': - value = int(l[i+1])*-1 - i += 1 - else: - value = int(l[i]) - i += 2 - if value: - x.week = value - x.weekday = (int(l[i])-1)%7 - else: - x.day = int(l[i]) - i += 2 - x.time = int(l[i]) - i += 2 - if i < len_l: - if l[i] in ('-','+'): - signal = (-1,1)[l[i] == "+"] - i += 1 - else: - signal = 1 - res.dstoffset = (res.stdoffset+int(l[i]))*signal - elif (l.count(',') == 2 and l[i:].count('/') <= 2 and - not [y for x in l[i:] if x not in (',','/','J','M', - '.','-',':') - for y in x if y not in "0123456789"]): - for x in (res.start, res.end): - if l[i] == 'J': - # non-leap year day (1 based) - i += 1 - x.jyday = int(l[i]) - elif l[i] == 'M': - # month[-.]week[-.]weekday - i += 1 - x.month = int(l[i]) - i += 1 - assert l[i] in ('-', '.') - i += 1 - x.week = int(l[i]) - if x.week == 5: - x.week = -1 - i += 1 - assert l[i] in ('-', '.') - i += 1 - x.weekday = (int(l[i])-1)%7 - else: - # year day (zero based) - x.yday = int(l[i])+1 - - i += 1 - - if i < len_l and l[i] == '/': - i += 1 - # start time - len_li = len(l[i]) - if len_li == 4: - # -0300 - x.time = (int(l[i][:2])*3600+int(l[i][2:])*60) - elif i+1 < len_l and l[i+1] == ':': - # -03:00 - x.time = int(l[i])*3600+int(l[i+2])*60 - i += 2 - if i+1 < len_l and l[i+1] == ':': - i += 2 - x.time += int(l[i]) - elif len_li <= 2: - # -[0]3 - x.time = (int(l[i][:2])*3600) - else: - return None - i += 1 - - assert i == len_l or l[i] == ',' - - i += 1 - - assert i >= len_l - - except (IndexError, ValueError, AssertionError): - return None - - return res - - -DEFAULTTZPARSER = _tzparser() -def _parsetz(tzstr): - return DEFAULTTZPARSER.parse(tzstr) - - -def _parsems(value): - """Parse a I[.F] seconds value into (seconds, microseconds).""" - if "." not in value: - return int(value), 0 - else: - i, f = value.split(".") - return int(i), int(f.ljust(6, "0")[:6]) - - -# vim:ts=4:sw=4:et diff --git a/lib/python2.7/site-packages/dateutil/relativedelta.py b/lib/python2.7/site-packages/dateutil/relativedelta.py deleted file mode 100644 index 0c72a8180..000000000 --- a/lib/python2.7/site-packages/dateutil/relativedelta.py +++ /dev/null @@ -1,432 +0,0 @@ -""" -Copyright (c) 2003-2010 Gustavo Niemeyer - -This module offers extensions to the standard python 2.3+ -datetime module. -""" -__author__ = "Gustavo Niemeyer " -__license__ = "PSF License" - -import datetime -import calendar - -__all__ = ["relativedelta", "MO", "TU", "WE", "TH", "FR", "SA", "SU"] - -class weekday(object): - __slots__ = ["weekday", "n"] - - def __init__(self, weekday, n=None): - self.weekday = weekday - self.n = n - - def __call__(self, n): - if n == self.n: - return self - else: - return self.__class__(self.weekday, n) - - def __eq__(self, other): - try: - if self.weekday != other.weekday or self.n != other.n: - return False - except AttributeError: - return False - return True - - def __repr__(self): - s = ("MO", "TU", "WE", "TH", "FR", "SA", "SU")[self.weekday] - if not self.n: - return s - else: - return "%s(%+d)" % (s, self.n) - -MO, TU, WE, TH, FR, SA, SU = weekdays = tuple([weekday(x) for x in range(7)]) - -class relativedelta: - """ -The relativedelta type is based on the specification of the excelent -work done by M.-A. Lemburg in his mx.DateTime extension. However, -notice that this type does *NOT* implement the same algorithm as -his work. Do *NOT* expect it to behave like mx.DateTime's counterpart. - -There's two different ways to build a relativedelta instance. The -first one is passing it two date/datetime classes: - - relativedelta(datetime1, datetime2) - -And the other way is to use the following keyword arguments: - - year, month, day, hour, minute, second, microsecond: - Absolute information. - - years, months, weeks, days, hours, minutes, seconds, microseconds: - Relative information, may be negative. - - weekday: - One of the weekday instances (MO, TU, etc). These instances may - receive a parameter N, specifying the Nth weekday, which could - be positive or negative (like MO(+1) or MO(-2). Not specifying - it is the same as specifying +1. You can also use an integer, - where 0=MO. - - leapdays: - Will add given days to the date found, if year is a leap - year, and the date found is post 28 of february. - - yearday, nlyearday: - Set the yearday or the non-leap year day (jump leap days). - These are converted to day/month/leapdays information. - -Here is the behavior of operations with relativedelta: - -1) Calculate the absolute year, using the 'year' argument, or the - original datetime year, if the argument is not present. - -2) Add the relative 'years' argument to the absolute year. - -3) Do steps 1 and 2 for month/months. - -4) Calculate the absolute day, using the 'day' argument, or the - original datetime day, if the argument is not present. Then, - subtract from the day until it fits in the year and month - found after their operations. - -5) Add the relative 'days' argument to the absolute day. Notice - that the 'weeks' argument is multiplied by 7 and added to - 'days'. - -6) Do steps 1 and 2 for hour/hours, minute/minutes, second/seconds, - microsecond/microseconds. - -7) If the 'weekday' argument is present, calculate the weekday, - with the given (wday, nth) tuple. wday is the index of the - weekday (0-6, 0=Mon), and nth is the number of weeks to add - forward or backward, depending on its signal. Notice that if - the calculated date is already Monday, for example, using - (0, 1) or (0, -1) won't change the day. - """ - - def __init__(self, dt1=None, dt2=None, - years=0, months=0, days=0, leapdays=0, weeks=0, - hours=0, minutes=0, seconds=0, microseconds=0, - year=None, month=None, day=None, weekday=None, - yearday=None, nlyearday=None, - hour=None, minute=None, second=None, microsecond=None): - if dt1 and dt2: - if not isinstance(dt1, datetime.date) or \ - not isinstance(dt2, datetime.date): - raise TypeError, "relativedelta only diffs datetime/date" - if type(dt1) is not type(dt2): - if not isinstance(dt1, datetime.datetime): - dt1 = datetime.datetime.fromordinal(dt1.toordinal()) - elif not isinstance(dt2, datetime.datetime): - dt2 = datetime.datetime.fromordinal(dt2.toordinal()) - self.years = 0 - self.months = 0 - self.days = 0 - self.leapdays = 0 - self.hours = 0 - self.minutes = 0 - self.seconds = 0 - self.microseconds = 0 - self.year = None - self.month = None - self.day = None - self.weekday = None - self.hour = None - self.minute = None - self.second = None - self.microsecond = None - self._has_time = 0 - - months = (dt1.year*12+dt1.month)-(dt2.year*12+dt2.month) - self._set_months(months) - dtm = self.__radd__(dt2) - if dt1 < dt2: - while dt1 > dtm: - months += 1 - self._set_months(months) - dtm = self.__radd__(dt2) - else: - while dt1 < dtm: - months -= 1 - self._set_months(months) - dtm = self.__radd__(dt2) - delta = dt1 - dtm - self.seconds = delta.seconds+delta.days*86400 - self.microseconds = delta.microseconds - else: - self.years = years - self.months = months - self.days = days+weeks*7 - self.leapdays = leapdays - self.hours = hours - self.minutes = minutes - self.seconds = seconds - self.microseconds = microseconds - self.year = year - self.month = month - self.day = day - self.hour = hour - self.minute = minute - self.second = second - self.microsecond = microsecond - - if type(weekday) is int: - self.weekday = weekdays[weekday] - else: - self.weekday = weekday - - yday = 0 - if nlyearday: - yday = nlyearday - elif yearday: - yday = yearday - if yearday > 59: - self.leapdays = -1 - if yday: - ydayidx = [31,59,90,120,151,181,212,243,273,304,334,366] - for idx, ydays in enumerate(ydayidx): - if yday <= ydays: - self.month = idx+1 - if idx == 0: - self.day = yday - else: - self.day = yday-ydayidx[idx-1] - break - else: - raise ValueError, "invalid year day (%d)" % yday - - self._fix() - - def _fix(self): - if abs(self.microseconds) > 999999: - s = self.microseconds//abs(self.microseconds) - div, mod = divmod(self.microseconds*s, 1000000) - self.microseconds = mod*s - self.seconds += div*s - if abs(self.seconds) > 59: - s = self.seconds//abs(self.seconds) - div, mod = divmod(self.seconds*s, 60) - self.seconds = mod*s - self.minutes += div*s - if abs(self.minutes) > 59: - s = self.minutes//abs(self.minutes) - div, mod = divmod(self.minutes*s, 60) - self.minutes = mod*s - self.hours += div*s - if abs(self.hours) > 23: - s = self.hours//abs(self.hours) - div, mod = divmod(self.hours*s, 24) - self.hours = mod*s - self.days += div*s - if abs(self.months) > 11: - s = self.months//abs(self.months) - div, mod = divmod(self.months*s, 12) - self.months = mod*s - self.years += div*s - if (self.hours or self.minutes or self.seconds or self.microseconds or - self.hour is not None or self.minute is not None or - self.second is not None or self.microsecond is not None): - self._has_time = 1 - else: - self._has_time = 0 - - def _set_months(self, months): - self.months = months - if abs(self.months) > 11: - s = self.months//abs(self.months) - div, mod = divmod(self.months*s, 12) - self.months = mod*s - self.years = div*s - else: - self.years = 0 - - def __radd__(self, other): - if not isinstance(other, datetime.date): - raise TypeError, "unsupported type for add operation" - elif self._has_time and not isinstance(other, datetime.datetime): - other = datetime.datetime.fromordinal(other.toordinal()) - year = (self.year or other.year)+self.years - month = self.month or other.month - if self.months: - assert 1 <= abs(self.months) <= 12 - month += self.months - if month > 12: - year += 1 - month -= 12 - elif month < 1: - year -= 1 - month += 12 - day = min(calendar.monthrange(year, month)[1], - self.day or other.day) - repl = {"year": year, "month": month, "day": day} - for attr in ["hour", "minute", "second", "microsecond"]: - value = getattr(self, attr) - if value is not None: - repl[attr] = value - days = self.days - if self.leapdays and month > 2 and calendar.isleap(year): - days += self.leapdays - ret = (other.replace(**repl) - + datetime.timedelta(days=days, - hours=self.hours, - minutes=self.minutes, - seconds=self.seconds, - microseconds=self.microseconds)) - if self.weekday: - weekday, nth = self.weekday.weekday, self.weekday.n or 1 - jumpdays = (abs(nth)-1)*7 - if nth > 0: - jumpdays += (7-ret.weekday()+weekday)%7 - else: - jumpdays += (ret.weekday()-weekday)%7 - jumpdays *= -1 - ret += datetime.timedelta(days=jumpdays) - return ret - - def __rsub__(self, other): - return self.__neg__().__radd__(other) - - def __add__(self, other): - if not isinstance(other, relativedelta): - raise TypeError, "unsupported type for add operation" - return relativedelta(years=other.years+self.years, - months=other.months+self.months, - days=other.days+self.days, - hours=other.hours+self.hours, - minutes=other.minutes+self.minutes, - seconds=other.seconds+self.seconds, - microseconds=other.microseconds+self.microseconds, - leapdays=other.leapdays or self.leapdays, - year=other.year or self.year, - month=other.month or self.month, - day=other.day or self.day, - weekday=other.weekday or self.weekday, - hour=other.hour or self.hour, - minute=other.minute or self.minute, - second=other.second or self.second, - microsecond=other.second or self.microsecond) - - def __sub__(self, other): - if not isinstance(other, relativedelta): - raise TypeError, "unsupported type for sub operation" - return relativedelta(years=other.years-self.years, - months=other.months-self.months, - days=other.days-self.days, - hours=other.hours-self.hours, - minutes=other.minutes-self.minutes, - seconds=other.seconds-self.seconds, - microseconds=other.microseconds-self.microseconds, - leapdays=other.leapdays or self.leapdays, - year=other.year or self.year, - month=other.month or self.month, - day=other.day or self.day, - weekday=other.weekday or self.weekday, - hour=other.hour or self.hour, - minute=other.minute or self.minute, - second=other.second or self.second, - microsecond=other.second or self.microsecond) - - def __neg__(self): - return relativedelta(years=-self.years, - months=-self.months, - days=-self.days, - hours=-self.hours, - minutes=-self.minutes, - seconds=-self.seconds, - microseconds=-self.microseconds, - leapdays=self.leapdays, - year=self.year, - month=self.month, - day=self.day, - weekday=self.weekday, - hour=self.hour, - minute=self.minute, - second=self.second, - microsecond=self.microsecond) - - def __nonzero__(self): - return not (not self.years and - not self.months and - not self.days and - not self.hours and - not self.minutes and - not self.seconds and - not self.microseconds and - not self.leapdays and - self.year is None and - self.month is None and - self.day is None and - self.weekday is None and - self.hour is None and - self.minute is None and - self.second is None and - self.microsecond is None) - - def __mul__(self, other): - f = float(other) - return relativedelta(years=self.years*f, - months=self.months*f, - days=self.days*f, - hours=self.hours*f, - minutes=self.minutes*f, - seconds=self.seconds*f, - microseconds=self.microseconds*f, - leapdays=self.leapdays, - year=self.year, - month=self.month, - day=self.day, - weekday=self.weekday, - hour=self.hour, - minute=self.minute, - second=self.second, - microsecond=self.microsecond) - - def __eq__(self, other): - if not isinstance(other, relativedelta): - return False - if self.weekday or other.weekday: - if not self.weekday or not other.weekday: - return False - if self.weekday.weekday != other.weekday.weekday: - return False - n1, n2 = self.weekday.n, other.weekday.n - if n1 != n2 and not ((not n1 or n1 == 1) and (not n2 or n2 == 1)): - return False - return (self.years == other.years and - self.months == other.months and - self.days == other.days and - self.hours == other.hours and - self.minutes == other.minutes and - self.seconds == other.seconds and - self.leapdays == other.leapdays and - self.year == other.year and - self.month == other.month and - self.day == other.day and - self.hour == other.hour and - self.minute == other.minute and - self.second == other.second and - self.microsecond == other.microsecond) - - def __ne__(self, other): - return not self.__eq__(other) - - def __div__(self, other): - return self.__mul__(1/float(other)) - - def __repr__(self): - l = [] - for attr in ["years", "months", "days", "leapdays", - "hours", "minutes", "seconds", "microseconds"]: - value = getattr(self, attr) - if value: - l.append("%s=%+d" % (attr, value)) - for attr in ["year", "month", "day", "weekday", - "hour", "minute", "second", "microsecond"]: - value = getattr(self, attr) - if value is not None: - l.append("%s=%s" % (attr, `value`)) - return "%s(%s)" % (self.__class__.__name__, ", ".join(l)) - -# vim:ts=4:sw=4:et diff --git a/lib/python2.7/site-packages/dateutil/rrule.py b/lib/python2.7/site-packages/dateutil/rrule.py deleted file mode 100644 index 6bd83cad3..000000000 --- a/lib/python2.7/site-packages/dateutil/rrule.py +++ /dev/null @@ -1,1097 +0,0 @@ -""" -Copyright (c) 2003-2010 Gustavo Niemeyer - -This module offers extensions to the standard python 2.3+ -datetime module. -""" -__author__ = "Gustavo Niemeyer " -__license__ = "PSF License" - -import itertools -import datetime -import calendar -import thread -import sys - -__all__ = ["rrule", "rruleset", "rrulestr", - "YEARLY", "MONTHLY", "WEEKLY", "DAILY", - "HOURLY", "MINUTELY", "SECONDLY", - "MO", "TU", "WE", "TH", "FR", "SA", "SU"] - -# Every mask is 7 days longer to handle cross-year weekly periods. -M366MASK = tuple([1]*31+[2]*29+[3]*31+[4]*30+[5]*31+[6]*30+ - [7]*31+[8]*31+[9]*30+[10]*31+[11]*30+[12]*31+[1]*7) -M365MASK = list(M366MASK) -M29, M30, M31 = range(1,30), range(1,31), range(1,32) -MDAY366MASK = tuple(M31+M29+M31+M30+M31+M30+M31+M31+M30+M31+M30+M31+M31[:7]) -MDAY365MASK = list(MDAY366MASK) -M29, M30, M31 = range(-29,0), range(-30,0), range(-31,0) -NMDAY366MASK = tuple(M31+M29+M31+M30+M31+M30+M31+M31+M30+M31+M30+M31+M31[:7]) -NMDAY365MASK = list(NMDAY366MASK) -M366RANGE = (0,31,60,91,121,152,182,213,244,274,305,335,366) -M365RANGE = (0,31,59,90,120,151,181,212,243,273,304,334,365) -WDAYMASK = [0,1,2,3,4,5,6]*55 -del M29, M30, M31, M365MASK[59], MDAY365MASK[59], NMDAY365MASK[31] -MDAY365MASK = tuple(MDAY365MASK) -M365MASK = tuple(M365MASK) - -(YEARLY, - MONTHLY, - WEEKLY, - DAILY, - HOURLY, - MINUTELY, - SECONDLY) = range(7) - -# Imported on demand. -easter = None -parser = None - -class weekday(object): - __slots__ = ["weekday", "n"] - - def __init__(self, weekday, n=None): - if n == 0: - raise ValueError, "Can't create weekday with n == 0" - self.weekday = weekday - self.n = n - - def __call__(self, n): - if n == self.n: - return self - else: - return self.__class__(self.weekday, n) - - def __eq__(self, other): - try: - if self.weekday != other.weekday or self.n != other.n: - return False - except AttributeError: - return False - return True - - def __repr__(self): - s = ("MO", "TU", "WE", "TH", "FR", "SA", "SU")[self.weekday] - if not self.n: - return s - else: - return "%s(%+d)" % (s, self.n) - -MO, TU, WE, TH, FR, SA, SU = weekdays = tuple([weekday(x) for x in range(7)]) - -class rrulebase: - def __init__(self, cache=False): - if cache: - self._cache = [] - self._cache_lock = thread.allocate_lock() - self._cache_gen = self._iter() - self._cache_complete = False - else: - self._cache = None - self._cache_complete = False - self._len = None - - def __iter__(self): - if self._cache_complete: - return iter(self._cache) - elif self._cache is None: - return self._iter() - else: - return self._iter_cached() - - def _iter_cached(self): - i = 0 - gen = self._cache_gen - cache = self._cache - acquire = self._cache_lock.acquire - release = self._cache_lock.release - while gen: - if i == len(cache): - acquire() - if self._cache_complete: - break - try: - for j in range(10): - cache.append(gen.next()) - except StopIteration: - self._cache_gen = gen = None - self._cache_complete = True - break - release() - yield cache[i] - i += 1 - while i < self._len: - yield cache[i] - i += 1 - - def __getitem__(self, item): - if self._cache_complete: - return self._cache[item] - elif isinstance(item, slice): - if item.step and item.step < 0: - return list(iter(self))[item] - else: - return list(itertools.islice(self, - item.start or 0, - item.stop or sys.maxint, - item.step or 1)) - elif item >= 0: - gen = iter(self) - try: - for i in range(item+1): - res = gen.next() - except StopIteration: - raise IndexError - return res - else: - return list(iter(self))[item] - - def __contains__(self, item): - if self._cache_complete: - return item in self._cache - else: - for i in self: - if i == item: - return True - elif i > item: - return False - return False - - # __len__() introduces a large performance penality. - def count(self): - if self._len is None: - for x in self: pass - return self._len - - def before(self, dt, inc=False): - if self._cache_complete: - gen = self._cache - else: - gen = self - last = None - if inc: - for i in gen: - if i > dt: - break - last = i - else: - for i in gen: - if i >= dt: - break - last = i - return last - - def after(self, dt, inc=False): - if self._cache_complete: - gen = self._cache - else: - gen = self - if inc: - for i in gen: - if i >= dt: - return i - else: - for i in gen: - if i > dt: - return i - return None - - def between(self, after, before, inc=False): - if self._cache_complete: - gen = self._cache - else: - gen = self - started = False - l = [] - if inc: - for i in gen: - if i > before: - break - elif not started: - if i >= after: - started = True - l.append(i) - else: - l.append(i) - else: - for i in gen: - if i >= before: - break - elif not started: - if i > after: - started = True - l.append(i) - else: - l.append(i) - return l - -class rrule(rrulebase): - def __init__(self, freq, dtstart=None, - interval=1, wkst=None, count=None, until=None, bysetpos=None, - bymonth=None, bymonthday=None, byyearday=None, byeaster=None, - byweekno=None, byweekday=None, - byhour=None, byminute=None, bysecond=None, - cache=False): - rrulebase.__init__(self, cache) - global easter - if not dtstart: - dtstart = datetime.datetime.now().replace(microsecond=0) - elif not isinstance(dtstart, datetime.datetime): - dtstart = datetime.datetime.fromordinal(dtstart.toordinal()) - else: - dtstart = dtstart.replace(microsecond=0) - self._dtstart = dtstart - self._tzinfo = dtstart.tzinfo - self._freq = freq - self._interval = interval - self._count = count - if until and not isinstance(until, datetime.datetime): - until = datetime.datetime.fromordinal(until.toordinal()) - self._until = until - if wkst is None: - self._wkst = calendar.firstweekday() - elif type(wkst) is int: - self._wkst = wkst - else: - self._wkst = wkst.weekday - if bysetpos is None: - self._bysetpos = None - elif type(bysetpos) is int: - if bysetpos == 0 or not (-366 <= bysetpos <= 366): - raise ValueError("bysetpos must be between 1 and 366, " - "or between -366 and -1") - self._bysetpos = (bysetpos,) - else: - self._bysetpos = tuple(bysetpos) - for pos in self._bysetpos: - if pos == 0 or not (-366 <= pos <= 366): - raise ValueError("bysetpos must be between 1 and 366, " - "or between -366 and -1") - if not (byweekno or byyearday or bymonthday or - byweekday is not None or byeaster is not None): - if freq == YEARLY: - if not bymonth: - bymonth = dtstart.month - bymonthday = dtstart.day - elif freq == MONTHLY: - bymonthday = dtstart.day - elif freq == WEEKLY: - byweekday = dtstart.weekday() - # bymonth - if not bymonth: - self._bymonth = None - elif type(bymonth) is int: - self._bymonth = (bymonth,) - else: - self._bymonth = tuple(bymonth) - # byyearday - if not byyearday: - self._byyearday = None - elif type(byyearday) is int: - self._byyearday = (byyearday,) - else: - self._byyearday = tuple(byyearday) - # byeaster - if byeaster is not None: - if not easter: - from dateutil import easter - if type(byeaster) is int: - self._byeaster = (byeaster,) - else: - self._byeaster = tuple(byeaster) - else: - self._byeaster = None - # bymonthay - if not bymonthday: - self._bymonthday = () - self._bynmonthday = () - elif type(bymonthday) is int: - if bymonthday < 0: - self._bynmonthday = (bymonthday,) - self._bymonthday = () - else: - self._bymonthday = (bymonthday,) - self._bynmonthday = () - else: - self._bymonthday = tuple([x for x in bymonthday if x > 0]) - self._bynmonthday = tuple([x for x in bymonthday if x < 0]) - # byweekno - if byweekno is None: - self._byweekno = None - elif type(byweekno) is int: - self._byweekno = (byweekno,) - else: - self._byweekno = tuple(byweekno) - # byweekday / bynweekday - if byweekday is None: - self._byweekday = None - self._bynweekday = None - elif type(byweekday) is int: - self._byweekday = (byweekday,) - self._bynweekday = None - elif hasattr(byweekday, "n"): - if not byweekday.n or freq > MONTHLY: - self._byweekday = (byweekday.weekday,) - self._bynweekday = None - else: - self._bynweekday = ((byweekday.weekday, byweekday.n),) - self._byweekday = None - else: - self._byweekday = [] - self._bynweekday = [] - for wday in byweekday: - if type(wday) is int: - self._byweekday.append(wday) - elif not wday.n or freq > MONTHLY: - self._byweekday.append(wday.weekday) - else: - self._bynweekday.append((wday.weekday, wday.n)) - self._byweekday = tuple(self._byweekday) - self._bynweekday = tuple(self._bynweekday) - if not self._byweekday: - self._byweekday = None - elif not self._bynweekday: - self._bynweekday = None - # byhour - if byhour is None: - if freq < HOURLY: - self._byhour = (dtstart.hour,) - else: - self._byhour = None - elif type(byhour) is int: - self._byhour = (byhour,) - else: - self._byhour = tuple(byhour) - # byminute - if byminute is None: - if freq < MINUTELY: - self._byminute = (dtstart.minute,) - else: - self._byminute = None - elif type(byminute) is int: - self._byminute = (byminute,) - else: - self._byminute = tuple(byminute) - # bysecond - if bysecond is None: - if freq < SECONDLY: - self._bysecond = (dtstart.second,) - else: - self._bysecond = None - elif type(bysecond) is int: - self._bysecond = (bysecond,) - else: - self._bysecond = tuple(bysecond) - - if self._freq >= HOURLY: - self._timeset = None - else: - self._timeset = [] - for hour in self._byhour: - for minute in self._byminute: - for second in self._bysecond: - self._timeset.append( - datetime.time(hour, minute, second, - tzinfo=self._tzinfo)) - self._timeset.sort() - self._timeset = tuple(self._timeset) - - def _iter(self): - year, month, day, hour, minute, second, weekday, yearday, _ = \ - self._dtstart.timetuple() - - # Some local variables to speed things up a bit - freq = self._freq - interval = self._interval - wkst = self._wkst - until = self._until - bymonth = self._bymonth - byweekno = self._byweekno - byyearday = self._byyearday - byweekday = self._byweekday - byeaster = self._byeaster - bymonthday = self._bymonthday - bynmonthday = self._bynmonthday - bysetpos = self._bysetpos - byhour = self._byhour - byminute = self._byminute - bysecond = self._bysecond - - ii = _iterinfo(self) - ii.rebuild(year, month) - - getdayset = {YEARLY:ii.ydayset, - MONTHLY:ii.mdayset, - WEEKLY:ii.wdayset, - DAILY:ii.ddayset, - HOURLY:ii.ddayset, - MINUTELY:ii.ddayset, - SECONDLY:ii.ddayset}[freq] - - if freq < HOURLY: - timeset = self._timeset - else: - gettimeset = {HOURLY:ii.htimeset, - MINUTELY:ii.mtimeset, - SECONDLY:ii.stimeset}[freq] - if ((freq >= HOURLY and - self._byhour and hour not in self._byhour) or - (freq >= MINUTELY and - self._byminute and minute not in self._byminute) or - (freq >= SECONDLY and - self._bysecond and second not in self._bysecond)): - timeset = () - else: - timeset = gettimeset(hour, minute, second) - - total = 0 - count = self._count - while True: - # Get dayset with the right frequency - dayset, start, end = getdayset(year, month, day) - - # Do the "hard" work ;-) - filtered = False - for i in dayset[start:end]: - if ((bymonth and ii.mmask[i] not in bymonth) or - (byweekno and not ii.wnomask[i]) or - (byweekday and ii.wdaymask[i] not in byweekday) or - (ii.nwdaymask and not ii.nwdaymask[i]) or - (byeaster and not ii.eastermask[i]) or - ((bymonthday or bynmonthday) and - ii.mdaymask[i] not in bymonthday and - ii.nmdaymask[i] not in bynmonthday) or - (byyearday and - ((i < ii.yearlen and i+1 not in byyearday - and -ii.yearlen+i not in byyearday) or - (i >= ii.yearlen and i+1-ii.yearlen not in byyearday - and -ii.nextyearlen+i-ii.yearlen - not in byyearday)))): - dayset[i] = None - filtered = True - - # Output results - if bysetpos and timeset: - poslist = [] - for pos in bysetpos: - if pos < 0: - daypos, timepos = divmod(pos, len(timeset)) - else: - daypos, timepos = divmod(pos-1, len(timeset)) - try: - i = [x for x in dayset[start:end] - if x is not None][daypos] - time = timeset[timepos] - except IndexError: - pass - else: - date = datetime.date.fromordinal(ii.yearordinal+i) - res = datetime.datetime.combine(date, time) - if res not in poslist: - poslist.append(res) - poslist.sort() - for res in poslist: - if until and res > until: - self._len = total - return - elif res >= self._dtstart: - total += 1 - yield res - if count: - count -= 1 - if not count: - self._len = total - return - else: - for i in dayset[start:end]: - if i is not None: - date = datetime.date.fromordinal(ii.yearordinal+i) - for time in timeset: - res = datetime.datetime.combine(date, time) - if until and res > until: - self._len = total - return - elif res >= self._dtstart: - total += 1 - yield res - if count: - count -= 1 - if not count: - self._len = total - return - - # Handle frequency and interval - fixday = False - if freq == YEARLY: - year += interval - if year > datetime.MAXYEAR: - self._len = total - return - ii.rebuild(year, month) - elif freq == MONTHLY: - month += interval - if month > 12: - div, mod = divmod(month, 12) - month = mod - year += div - if month == 0: - month = 12 - year -= 1 - if year > datetime.MAXYEAR: - self._len = total - return - ii.rebuild(year, month) - elif freq == WEEKLY: - if wkst > weekday: - day += -(weekday+1+(6-wkst))+self._interval*7 - else: - day += -(weekday-wkst)+self._interval*7 - weekday = wkst - fixday = True - elif freq == DAILY: - day += interval - fixday = True - elif freq == HOURLY: - if filtered: - # Jump to one iteration before next day - hour += ((23-hour)//interval)*interval - while True: - hour += interval - div, mod = divmod(hour, 24) - if div: - hour = mod - day += div - fixday = True - if not byhour or hour in byhour: - break - timeset = gettimeset(hour, minute, second) - elif freq == MINUTELY: - if filtered: - # Jump to one iteration before next day - minute += ((1439-(hour*60+minute))//interval)*interval - while True: - minute += interval - div, mod = divmod(minute, 60) - if div: - minute = mod - hour += div - div, mod = divmod(hour, 24) - if div: - hour = mod - day += div - fixday = True - filtered = False - if ((not byhour or hour in byhour) and - (not byminute or minute in byminute)): - break - timeset = gettimeset(hour, minute, second) - elif freq == SECONDLY: - if filtered: - # Jump to one iteration before next day - second += (((86399-(hour*3600+minute*60+second)) - //interval)*interval) - while True: - second += self._interval - div, mod = divmod(second, 60) - if div: - second = mod - minute += div - div, mod = divmod(minute, 60) - if div: - minute = mod - hour += div - div, mod = divmod(hour, 24) - if div: - hour = mod - day += div - fixday = True - if ((not byhour or hour in byhour) and - (not byminute or minute in byminute) and - (not bysecond or second in bysecond)): - break - timeset = gettimeset(hour, minute, second) - - if fixday and day > 28: - daysinmonth = calendar.monthrange(year, month)[1] - if day > daysinmonth: - while day > daysinmonth: - day -= daysinmonth - month += 1 - if month == 13: - month = 1 - year += 1 - if year > datetime.MAXYEAR: - self._len = total - return - daysinmonth = calendar.monthrange(year, month)[1] - ii.rebuild(year, month) - -class _iterinfo(object): - __slots__ = ["rrule", "lastyear", "lastmonth", - "yearlen", "nextyearlen", "yearordinal", "yearweekday", - "mmask", "mrange", "mdaymask", "nmdaymask", - "wdaymask", "wnomask", "nwdaymask", "eastermask"] - - def __init__(self, rrule): - for attr in self.__slots__: - setattr(self, attr, None) - self.rrule = rrule - - def rebuild(self, year, month): - # Every mask is 7 days longer to handle cross-year weekly periods. - rr = self.rrule - if year != self.lastyear: - self.yearlen = 365+calendar.isleap(year) - self.nextyearlen = 365+calendar.isleap(year+1) - firstyday = datetime.date(year, 1, 1) - self.yearordinal = firstyday.toordinal() - self.yearweekday = firstyday.weekday() - - wday = datetime.date(year, 1, 1).weekday() - if self.yearlen == 365: - self.mmask = M365MASK - self.mdaymask = MDAY365MASK - self.nmdaymask = NMDAY365MASK - self.wdaymask = WDAYMASK[wday:] - self.mrange = M365RANGE - else: - self.mmask = M366MASK - self.mdaymask = MDAY366MASK - self.nmdaymask = NMDAY366MASK - self.wdaymask = WDAYMASK[wday:] - self.mrange = M366RANGE - - if not rr._byweekno: - self.wnomask = None - else: - self.wnomask = [0]*(self.yearlen+7) - #no1wkst = firstwkst = self.wdaymask.index(rr._wkst) - no1wkst = firstwkst = (7-self.yearweekday+rr._wkst)%7 - if no1wkst >= 4: - no1wkst = 0 - # Number of days in the year, plus the days we got - # from last year. - wyearlen = self.yearlen+(self.yearweekday-rr._wkst)%7 - else: - # Number of days in the year, minus the days we - # left in last year. - wyearlen = self.yearlen-no1wkst - div, mod = divmod(wyearlen, 7) - numweeks = div+mod//4 - for n in rr._byweekno: - if n < 0: - n += numweeks+1 - if not (0 < n <= numweeks): - continue - if n > 1: - i = no1wkst+(n-1)*7 - if no1wkst != firstwkst: - i -= 7-firstwkst - else: - i = no1wkst - for j in range(7): - self.wnomask[i] = 1 - i += 1 - if self.wdaymask[i] == rr._wkst: - break - if 1 in rr._byweekno: - # Check week number 1 of next year as well - # TODO: Check -numweeks for next year. - i = no1wkst+numweeks*7 - if no1wkst != firstwkst: - i -= 7-firstwkst - if i < self.yearlen: - # If week starts in next year, we - # don't care about it. - for j in range(7): - self.wnomask[i] = 1 - i += 1 - if self.wdaymask[i] == rr._wkst: - break - if no1wkst: - # Check last week number of last year as - # well. If no1wkst is 0, either the year - # started on week start, or week number 1 - # got days from last year, so there are no - # days from last year's last week number in - # this year. - if -1 not in rr._byweekno: - lyearweekday = datetime.date(year-1,1,1).weekday() - lno1wkst = (7-lyearweekday+rr._wkst)%7 - lyearlen = 365+calendar.isleap(year-1) - if lno1wkst >= 4: - lno1wkst = 0 - lnumweeks = 52+(lyearlen+ - (lyearweekday-rr._wkst)%7)%7//4 - else: - lnumweeks = 52+(self.yearlen-no1wkst)%7//4 - else: - lnumweeks = -1 - if lnumweeks in rr._byweekno: - for i in range(no1wkst): - self.wnomask[i] = 1 - - if (rr._bynweekday and - (month != self.lastmonth or year != self.lastyear)): - ranges = [] - if rr._freq == YEARLY: - if rr._bymonth: - for month in rr._bymonth: - ranges.append(self.mrange[month-1:month+1]) - else: - ranges = [(0, self.yearlen)] - elif rr._freq == MONTHLY: - ranges = [self.mrange[month-1:month+1]] - if ranges: - # Weekly frequency won't get here, so we may not - # care about cross-year weekly periods. - self.nwdaymask = [0]*self.yearlen - for first, last in ranges: - last -= 1 - for wday, n in rr._bynweekday: - if n < 0: - i = last+(n+1)*7 - i -= (self.wdaymask[i]-wday)%7 - else: - i = first+(n-1)*7 - i += (7-self.wdaymask[i]+wday)%7 - if first <= i <= last: - self.nwdaymask[i] = 1 - - if rr._byeaster: - self.eastermask = [0]*(self.yearlen+7) - eyday = easter.easter(year).toordinal()-self.yearordinal - for offset in rr._byeaster: - self.eastermask[eyday+offset] = 1 - - self.lastyear = year - self.lastmonth = month - - def ydayset(self, year, month, day): - return range(self.yearlen), 0, self.yearlen - - def mdayset(self, year, month, day): - set = [None]*self.yearlen - start, end = self.mrange[month-1:month+1] - for i in range(start, end): - set[i] = i - return set, start, end - - def wdayset(self, year, month, day): - # We need to handle cross-year weeks here. - set = [None]*(self.yearlen+7) - i = datetime.date(year, month, day).toordinal()-self.yearordinal - start = i - for j in range(7): - set[i] = i - i += 1 - #if (not (0 <= i < self.yearlen) or - # self.wdaymask[i] == self.rrule._wkst): - # This will cross the year boundary, if necessary. - if self.wdaymask[i] == self.rrule._wkst: - break - return set, start, i - - def ddayset(self, year, month, day): - set = [None]*self.yearlen - i = datetime.date(year, month, day).toordinal()-self.yearordinal - set[i] = i - return set, i, i+1 - - def htimeset(self, hour, minute, second): - set = [] - rr = self.rrule - for minute in rr._byminute: - for second in rr._bysecond: - set.append(datetime.time(hour, minute, second, - tzinfo=rr._tzinfo)) - set.sort() - return set - - def mtimeset(self, hour, minute, second): - set = [] - rr = self.rrule - for second in rr._bysecond: - set.append(datetime.time(hour, minute, second, tzinfo=rr._tzinfo)) - set.sort() - return set - - def stimeset(self, hour, minute, second): - return (datetime.time(hour, minute, second, - tzinfo=self.rrule._tzinfo),) - - -class rruleset(rrulebase): - - class _genitem: - def __init__(self, genlist, gen): - try: - self.dt = gen() - genlist.append(self) - except StopIteration: - pass - self.genlist = genlist - self.gen = gen - - def next(self): - try: - self.dt = self.gen() - except StopIteration: - self.genlist.remove(self) - - def __cmp__(self, other): - return cmp(self.dt, other.dt) - - def __init__(self, cache=False): - rrulebase.__init__(self, cache) - self._rrule = [] - self._rdate = [] - self._exrule = [] - self._exdate = [] - - def rrule(self, rrule): - self._rrule.append(rrule) - - def rdate(self, rdate): - self._rdate.append(rdate) - - def exrule(self, exrule): - self._exrule.append(exrule) - - def exdate(self, exdate): - self._exdate.append(exdate) - - def _iter(self): - rlist = [] - self._rdate.sort() - self._genitem(rlist, iter(self._rdate).next) - for gen in [iter(x).next for x in self._rrule]: - self._genitem(rlist, gen) - rlist.sort() - exlist = [] - self._exdate.sort() - self._genitem(exlist, iter(self._exdate).next) - for gen in [iter(x).next for x in self._exrule]: - self._genitem(exlist, gen) - exlist.sort() - lastdt = None - total = 0 - while rlist: - ritem = rlist[0] - if not lastdt or lastdt != ritem.dt: - while exlist and exlist[0] < ritem: - exlist[0].next() - exlist.sort() - if not exlist or ritem != exlist[0]: - total += 1 - yield ritem.dt - lastdt = ritem.dt - ritem.next() - rlist.sort() - self._len = total - -class _rrulestr: - - _freq_map = {"YEARLY": YEARLY, - "MONTHLY": MONTHLY, - "WEEKLY": WEEKLY, - "DAILY": DAILY, - "HOURLY": HOURLY, - "MINUTELY": MINUTELY, - "SECONDLY": SECONDLY} - - _weekday_map = {"MO":0,"TU":1,"WE":2,"TH":3,"FR":4,"SA":5,"SU":6} - - def _handle_int(self, rrkwargs, name, value, **kwargs): - rrkwargs[name.lower()] = int(value) - - def _handle_int_list(self, rrkwargs, name, value, **kwargs): - rrkwargs[name.lower()] = [int(x) for x in value.split(',')] - - _handle_INTERVAL = _handle_int - _handle_COUNT = _handle_int - _handle_BYSETPOS = _handle_int_list - _handle_BYMONTH = _handle_int_list - _handle_BYMONTHDAY = _handle_int_list - _handle_BYYEARDAY = _handle_int_list - _handle_BYEASTER = _handle_int_list - _handle_BYWEEKNO = _handle_int_list - _handle_BYHOUR = _handle_int_list - _handle_BYMINUTE = _handle_int_list - _handle_BYSECOND = _handle_int_list - - def _handle_FREQ(self, rrkwargs, name, value, **kwargs): - rrkwargs["freq"] = self._freq_map[value] - - def _handle_UNTIL(self, rrkwargs, name, value, **kwargs): - global parser - if not parser: - from dateutil import parser - try: - rrkwargs["until"] = parser.parse(value, - ignoretz=kwargs.get("ignoretz"), - tzinfos=kwargs.get("tzinfos")) - except ValueError: - raise ValueError, "invalid until date" - - def _handle_WKST(self, rrkwargs, name, value, **kwargs): - rrkwargs["wkst"] = self._weekday_map[value] - - def _handle_BYWEEKDAY(self, rrkwargs, name, value, **kwarsg): - l = [] - for wday in value.split(','): - for i in range(len(wday)): - if wday[i] not in '+-0123456789': - break - n = wday[:i] or None - w = wday[i:] - if n: n = int(n) - l.append(weekdays[self._weekday_map[w]](n)) - rrkwargs["byweekday"] = l - - _handle_BYDAY = _handle_BYWEEKDAY - - def _parse_rfc_rrule(self, line, - dtstart=None, - cache=False, - ignoretz=False, - tzinfos=None): - if line.find(':') != -1: - name, value = line.split(':') - if name != "RRULE": - raise ValueError, "unknown parameter name" - else: - value = line - rrkwargs = {} - for pair in value.split(';'): - name, value = pair.split('=') - name = name.upper() - value = value.upper() - try: - getattr(self, "_handle_"+name)(rrkwargs, name, value, - ignoretz=ignoretz, - tzinfos=tzinfos) - except AttributeError: - raise ValueError, "unknown parameter '%s'" % name - except (KeyError, ValueError): - raise ValueError, "invalid '%s': %s" % (name, value) - return rrule(dtstart=dtstart, cache=cache, **rrkwargs) - - def _parse_rfc(self, s, - dtstart=None, - cache=False, - unfold=False, - forceset=False, - compatible=False, - ignoretz=False, - tzinfos=None): - global parser - if compatible: - forceset = True - unfold = True - s = s.upper() - if not s.strip(): - raise ValueError, "empty string" - if unfold: - lines = s.splitlines() - i = 0 - while i < len(lines): - line = lines[i].rstrip() - if not line: - del lines[i] - elif i > 0 and line[0] == " ": - lines[i-1] += line[1:] - del lines[i] - else: - i += 1 - else: - lines = s.split() - if (not forceset and len(lines) == 1 and - (s.find(':') == -1 or s.startswith('RRULE:'))): - return self._parse_rfc_rrule(lines[0], cache=cache, - dtstart=dtstart, ignoretz=ignoretz, - tzinfos=tzinfos) - else: - rrulevals = [] - rdatevals = [] - exrulevals = [] - exdatevals = [] - for line in lines: - if not line: - continue - if line.find(':') == -1: - name = "RRULE" - value = line - else: - name, value = line.split(':', 1) - parms = name.split(';') - if not parms: - raise ValueError, "empty property name" - name = parms[0] - parms = parms[1:] - if name == "RRULE": - for parm in parms: - raise ValueError, "unsupported RRULE parm: "+parm - rrulevals.append(value) - elif name == "RDATE": - for parm in parms: - if parm != "VALUE=DATE-TIME": - raise ValueError, "unsupported RDATE parm: "+parm - rdatevals.append(value) - elif name == "EXRULE": - for parm in parms: - raise ValueError, "unsupported EXRULE parm: "+parm - exrulevals.append(value) - elif name == "EXDATE": - for parm in parms: - if parm != "VALUE=DATE-TIME": - raise ValueError, "unsupported RDATE parm: "+parm - exdatevals.append(value) - elif name == "DTSTART": - for parm in parms: - raise ValueError, "unsupported DTSTART parm: "+parm - if not parser: - from dateutil import parser - dtstart = parser.parse(value, ignoretz=ignoretz, - tzinfos=tzinfos) - else: - raise ValueError, "unsupported property: "+name - if (forceset or len(rrulevals) > 1 or - rdatevals or exrulevals or exdatevals): - if not parser and (rdatevals or exdatevals): - from dateutil import parser - set = rruleset(cache=cache) - for value in rrulevals: - set.rrule(self._parse_rfc_rrule(value, dtstart=dtstart, - ignoretz=ignoretz, - tzinfos=tzinfos)) - for value in rdatevals: - for datestr in value.split(','): - set.rdate(parser.parse(datestr, - ignoretz=ignoretz, - tzinfos=tzinfos)) - for value in exrulevals: - set.exrule(self._parse_rfc_rrule(value, dtstart=dtstart, - ignoretz=ignoretz, - tzinfos=tzinfos)) - for value in exdatevals: - for datestr in value.split(','): - set.exdate(parser.parse(datestr, - ignoretz=ignoretz, - tzinfos=tzinfos)) - if compatible and dtstart: - set.rdate(dtstart) - return set - else: - return self._parse_rfc_rrule(rrulevals[0], - dtstart=dtstart, - cache=cache, - ignoretz=ignoretz, - tzinfos=tzinfos) - - def __call__(self, s, **kwargs): - return self._parse_rfc(s, **kwargs) - -rrulestr = _rrulestr() - -# vim:ts=4:sw=4:et diff --git a/lib/python2.7/site-packages/dateutil/tz.py b/lib/python2.7/site-packages/dateutil/tz.py deleted file mode 100644 index 0e28d6b33..000000000 --- a/lib/python2.7/site-packages/dateutil/tz.py +++ /dev/null @@ -1,951 +0,0 @@ -""" -Copyright (c) 2003-2007 Gustavo Niemeyer - -This module offers extensions to the standard python 2.3+ -datetime module. -""" -__author__ = "Gustavo Niemeyer " -__license__ = "PSF License" - -import datetime -import struct -import time -import sys -import os - -relativedelta = None -parser = None -rrule = None - -__all__ = ["tzutc", "tzoffset", "tzlocal", "tzfile", "tzrange", - "tzstr", "tzical", "tzwin", "tzwinlocal", "gettz"] - -try: - from dateutil.tzwin import tzwin, tzwinlocal -except (ImportError, OSError): - tzwin, tzwinlocal = None, None - -ZERO = datetime.timedelta(0) -EPOCHORDINAL = datetime.datetime.utcfromtimestamp(0).toordinal() - -class tzutc(datetime.tzinfo): - - def utcoffset(self, dt): - return ZERO - - def dst(self, dt): - return ZERO - - def tzname(self, dt): - return "UTC" - - def __eq__(self, other): - return (isinstance(other, tzutc) or - (isinstance(other, tzoffset) and other._offset == ZERO)) - - def __ne__(self, other): - return not self.__eq__(other) - - def __repr__(self): - return "%s()" % self.__class__.__name__ - - __reduce__ = object.__reduce__ - -class tzoffset(datetime.tzinfo): - - def __init__(self, name, offset): - self._name = name - self._offset = datetime.timedelta(seconds=offset) - - def utcoffset(self, dt): - return self._offset - - def dst(self, dt): - return ZERO - - def tzname(self, dt): - return self._name - - def __eq__(self, other): - return (isinstance(other, tzoffset) and - self._offset == other._offset) - - def __ne__(self, other): - return not self.__eq__(other) - - def __repr__(self): - return "%s(%s, %s)" % (self.__class__.__name__, - `self._name`, - self._offset.days*86400+self._offset.seconds) - - __reduce__ = object.__reduce__ - -class tzlocal(datetime.tzinfo): - - _std_offset = datetime.timedelta(seconds=-time.timezone) - if time.daylight: - _dst_offset = datetime.timedelta(seconds=-time.altzone) - else: - _dst_offset = _std_offset - - def utcoffset(self, dt): - if self._isdst(dt): - return self._dst_offset - else: - return self._std_offset - - def dst(self, dt): - if self._isdst(dt): - return self._dst_offset-self._std_offset - else: - return ZERO - - def tzname(self, dt): - return time.tzname[self._isdst(dt)] - - def _isdst(self, dt): - # We can't use mktime here. It is unstable when deciding if - # the hour near to a change is DST or not. - # - # timestamp = time.mktime((dt.year, dt.month, dt.day, dt.hour, - # dt.minute, dt.second, dt.weekday(), 0, -1)) - # return time.localtime(timestamp).tm_isdst - # - # The code above yields the following result: - # - #>>> import tz, datetime - #>>> t = tz.tzlocal() - #>>> datetime.datetime(2003,2,15,23,tzinfo=t).tzname() - #'BRDT' - #>>> datetime.datetime(2003,2,16,0,tzinfo=t).tzname() - #'BRST' - #>>> datetime.datetime(2003,2,15,23,tzinfo=t).tzname() - #'BRST' - #>>> datetime.datetime(2003,2,15,22,tzinfo=t).tzname() - #'BRDT' - #>>> datetime.datetime(2003,2,15,23,tzinfo=t).tzname() - #'BRDT' - # - # Here is a more stable implementation: - # - timestamp = ((dt.toordinal() - EPOCHORDINAL) * 86400 - + dt.hour * 3600 - + dt.minute * 60 - + dt.second) - return time.localtime(timestamp+time.timezone).tm_isdst - - def __eq__(self, other): - if not isinstance(other, tzlocal): - return False - return (self._std_offset == other._std_offset and - self._dst_offset == other._dst_offset) - return True - - def __ne__(self, other): - return not self.__eq__(other) - - def __repr__(self): - return "%s()" % self.__class__.__name__ - - __reduce__ = object.__reduce__ - -class _ttinfo(object): - __slots__ = ["offset", "delta", "isdst", "abbr", "isstd", "isgmt"] - - def __init__(self): - for attr in self.__slots__: - setattr(self, attr, None) - - def __repr__(self): - l = [] - for attr in self.__slots__: - value = getattr(self, attr) - if value is not None: - l.append("%s=%s" % (attr, `value`)) - return "%s(%s)" % (self.__class__.__name__, ", ".join(l)) - - def __eq__(self, other): - if not isinstance(other, _ttinfo): - return False - return (self.offset == other.offset and - self.delta == other.delta and - self.isdst == other.isdst and - self.abbr == other.abbr and - self.isstd == other.isstd and - self.isgmt == other.isgmt) - - def __ne__(self, other): - return not self.__eq__(other) - - def __getstate__(self): - state = {} - for name in self.__slots__: - state[name] = getattr(self, name, None) - return state - - def __setstate__(self, state): - for name in self.__slots__: - if name in state: - setattr(self, name, state[name]) - -class tzfile(datetime.tzinfo): - - # http://www.twinsun.com/tz/tz-link.htm - # ftp://elsie.nci.nih.gov/pub/tz*.tar.gz - - def __init__(self, fileobj): - if isinstance(fileobj, basestring): - self._filename = fileobj - fileobj = open(fileobj) - elif hasattr(fileobj, "name"): - self._filename = fileobj.name - else: - self._filename = `fileobj` - - # From tzfile(5): - # - # The time zone information files used by tzset(3) - # begin with the magic characters "TZif" to identify - # them as time zone information files, followed by - # sixteen bytes reserved for future use, followed by - # six four-byte values of type long, written in a - # ``standard'' byte order (the high-order byte - # of the value is written first). - - if fileobj.read(4) != "TZif": - raise ValueError, "magic not found" - - fileobj.read(16) - - ( - # The number of UTC/local indicators stored in the file. - ttisgmtcnt, - - # The number of standard/wall indicators stored in the file. - ttisstdcnt, - - # The number of leap seconds for which data is - # stored in the file. - leapcnt, - - # The number of "transition times" for which data - # is stored in the file. - timecnt, - - # The number of "local time types" for which data - # is stored in the file (must not be zero). - typecnt, - - # The number of characters of "time zone - # abbreviation strings" stored in the file. - charcnt, - - ) = struct.unpack(">6l", fileobj.read(24)) - - # The above header is followed by tzh_timecnt four-byte - # values of type long, sorted in ascending order. - # These values are written in ``standard'' byte order. - # Each is used as a transition time (as returned by - # time(2)) at which the rules for computing local time - # change. - - if timecnt: - self._trans_list = struct.unpack(">%dl" % timecnt, - fileobj.read(timecnt*4)) - else: - self._trans_list = [] - - # Next come tzh_timecnt one-byte values of type unsigned - # char; each one tells which of the different types of - # ``local time'' types described in the file is associated - # with the same-indexed transition time. These values - # serve as indices into an array of ttinfo structures that - # appears next in the file. - - if timecnt: - self._trans_idx = struct.unpack(">%dB" % timecnt, - fileobj.read(timecnt)) - else: - self._trans_idx = [] - - # Each ttinfo structure is written as a four-byte value - # for tt_gmtoff of type long, in a standard byte - # order, followed by a one-byte value for tt_isdst - # and a one-byte value for tt_abbrind. In each - # structure, tt_gmtoff gives the number of - # seconds to be added to UTC, tt_isdst tells whether - # tm_isdst should be set by localtime(3), and - # tt_abbrind serves as an index into the array of - # time zone abbreviation characters that follow the - # ttinfo structure(s) in the file. - - ttinfo = [] - - for i in range(typecnt): - ttinfo.append(struct.unpack(">lbb", fileobj.read(6))) - - abbr = fileobj.read(charcnt) - - # Then there are tzh_leapcnt pairs of four-byte - # values, written in standard byte order; the - # first value of each pair gives the time (as - # returned by time(2)) at which a leap second - # occurs; the second gives the total number of - # leap seconds to be applied after the given time. - # The pairs of values are sorted in ascending order - # by time. - - # Not used, for now - if leapcnt: - leap = struct.unpack(">%dl" % (leapcnt*2), - fileobj.read(leapcnt*8)) - - # Then there are tzh_ttisstdcnt standard/wall - # indicators, each stored as a one-byte value; - # they tell whether the transition times associated - # with local time types were specified as standard - # time or wall clock time, and are used when - # a time zone file is used in handling POSIX-style - # time zone environment variables. - - if ttisstdcnt: - isstd = struct.unpack(">%db" % ttisstdcnt, - fileobj.read(ttisstdcnt)) - - # Finally, there are tzh_ttisgmtcnt UTC/local - # indicators, each stored as a one-byte value; - # they tell whether the transition times associated - # with local time types were specified as UTC or - # local time, and are used when a time zone file - # is used in handling POSIX-style time zone envi- - # ronment variables. - - if ttisgmtcnt: - isgmt = struct.unpack(">%db" % ttisgmtcnt, - fileobj.read(ttisgmtcnt)) - - # ** Everything has been read ** - - # Build ttinfo list - self._ttinfo_list = [] - for i in range(typecnt): - gmtoff, isdst, abbrind = ttinfo[i] - # Round to full-minutes if that's not the case. Python's - # datetime doesn't accept sub-minute timezones. Check - # http://python.org/sf/1447945 for some information. - gmtoff = (gmtoff+30)//60*60 - tti = _ttinfo() - tti.offset = gmtoff - tti.delta = datetime.timedelta(seconds=gmtoff) - tti.isdst = isdst - tti.abbr = abbr[abbrind:abbr.find('\x00', abbrind)] - tti.isstd = (ttisstdcnt > i and isstd[i] != 0) - tti.isgmt = (ttisgmtcnt > i and isgmt[i] != 0) - self._ttinfo_list.append(tti) - - # Replace ttinfo indexes for ttinfo objects. - trans_idx = [] - for idx in self._trans_idx: - trans_idx.append(self._ttinfo_list[idx]) - self._trans_idx = tuple(trans_idx) - - # Set standard, dst, and before ttinfos. before will be - # used when a given time is before any transitions, - # and will be set to the first non-dst ttinfo, or to - # the first dst, if all of them are dst. - self._ttinfo_std = None - self._ttinfo_dst = None - self._ttinfo_before = None - if self._ttinfo_list: - if not self._trans_list: - self._ttinfo_std = self._ttinfo_first = self._ttinfo_list[0] - else: - for i in range(timecnt-1,-1,-1): - tti = self._trans_idx[i] - if not self._ttinfo_std and not tti.isdst: - self._ttinfo_std = tti - elif not self._ttinfo_dst and tti.isdst: - self._ttinfo_dst = tti - if self._ttinfo_std and self._ttinfo_dst: - break - else: - if self._ttinfo_dst and not self._ttinfo_std: - self._ttinfo_std = self._ttinfo_dst - - for tti in self._ttinfo_list: - if not tti.isdst: - self._ttinfo_before = tti - break - else: - self._ttinfo_before = self._ttinfo_list[0] - - # Now fix transition times to become relative to wall time. - # - # I'm not sure about this. In my tests, the tz source file - # is setup to wall time, and in the binary file isstd and - # isgmt are off, so it should be in wall time. OTOH, it's - # always in gmt time. Let me know if you have comments - # about this. - laststdoffset = 0 - self._trans_list = list(self._trans_list) - for i in range(len(self._trans_list)): - tti = self._trans_idx[i] - if not tti.isdst: - # This is std time. - self._trans_list[i] += tti.offset - laststdoffset = tti.offset - else: - # This is dst time. Convert to std. - self._trans_list[i] += laststdoffset - self._trans_list = tuple(self._trans_list) - - def _find_ttinfo(self, dt, laststd=0): - timestamp = ((dt.toordinal() - EPOCHORDINAL) * 86400 - + dt.hour * 3600 - + dt.minute * 60 - + dt.second) - idx = 0 - for trans in self._trans_list: - if timestamp < trans: - break - idx += 1 - else: - return self._ttinfo_std - if idx == 0: - return self._ttinfo_before - if laststd: - while idx > 0: - tti = self._trans_idx[idx-1] - if not tti.isdst: - return tti - idx -= 1 - else: - return self._ttinfo_std - else: - return self._trans_idx[idx-1] - - def utcoffset(self, dt): - if not self._ttinfo_std: - return ZERO - return self._find_ttinfo(dt).delta - - def dst(self, dt): - if not self._ttinfo_dst: - return ZERO - tti = self._find_ttinfo(dt) - if not tti.isdst: - return ZERO - - # The documentation says that utcoffset()-dst() must - # be constant for every dt. - return tti.delta-self._find_ttinfo(dt, laststd=1).delta - - # An alternative for that would be: - # - # return self._ttinfo_dst.offset-self._ttinfo_std.offset - # - # However, this class stores historical changes in the - # dst offset, so I belive that this wouldn't be the right - # way to implement this. - - def tzname(self, dt): - if not self._ttinfo_std: - return None - return self._find_ttinfo(dt).abbr - - def __eq__(self, other): - if not isinstance(other, tzfile): - return False - return (self._trans_list == other._trans_list and - self._trans_idx == other._trans_idx and - self._ttinfo_list == other._ttinfo_list) - - def __ne__(self, other): - return not self.__eq__(other) - - - def __repr__(self): - return "%s(%s)" % (self.__class__.__name__, `self._filename`) - - def __reduce__(self): - if not os.path.isfile(self._filename): - raise ValueError, "Unpickable %s class" % self.__class__.__name__ - return (self.__class__, (self._filename,)) - -class tzrange(datetime.tzinfo): - - def __init__(self, stdabbr, stdoffset=None, - dstabbr=None, dstoffset=None, - start=None, end=None): - global relativedelta - if not relativedelta: - from dateutil import relativedelta - self._std_abbr = stdabbr - self._dst_abbr = dstabbr - if stdoffset is not None: - self._std_offset = datetime.timedelta(seconds=stdoffset) - else: - self._std_offset = ZERO - if dstoffset is not None: - self._dst_offset = datetime.timedelta(seconds=dstoffset) - elif dstabbr and stdoffset is not None: - self._dst_offset = self._std_offset+datetime.timedelta(hours=+1) - else: - self._dst_offset = ZERO - if dstabbr and start is None: - self._start_delta = relativedelta.relativedelta( - hours=+2, month=4, day=1, weekday=relativedelta.SU(+1)) - else: - self._start_delta = start - if dstabbr and end is None: - self._end_delta = relativedelta.relativedelta( - hours=+1, month=10, day=31, weekday=relativedelta.SU(-1)) - else: - self._end_delta = end - - def utcoffset(self, dt): - if self._isdst(dt): - return self._dst_offset - else: - return self._std_offset - - def dst(self, dt): - if self._isdst(dt): - return self._dst_offset-self._std_offset - else: - return ZERO - - def tzname(self, dt): - if self._isdst(dt): - return self._dst_abbr - else: - return self._std_abbr - - def _isdst(self, dt): - if not self._start_delta: - return False - year = datetime.datetime(dt.year,1,1) - start = year+self._start_delta - end = year+self._end_delta - dt = dt.replace(tzinfo=None) - if start < end: - return dt >= start and dt < end - else: - return dt >= start or dt < end - - def __eq__(self, other): - if not isinstance(other, tzrange): - return False - return (self._std_abbr == other._std_abbr and - self._dst_abbr == other._dst_abbr and - self._std_offset == other._std_offset and - self._dst_offset == other._dst_offset and - self._start_delta == other._start_delta and - self._end_delta == other._end_delta) - - def __ne__(self, other): - return not self.__eq__(other) - - def __repr__(self): - return "%s(...)" % self.__class__.__name__ - - __reduce__ = object.__reduce__ - -class tzstr(tzrange): - - def __init__(self, s): - global parser - if not parser: - from dateutil import parser - self._s = s - - res = parser._parsetz(s) - if res is None: - raise ValueError, "unknown string format" - - # Here we break the compatibility with the TZ variable handling. - # GMT-3 actually *means* the timezone -3. - if res.stdabbr in ("GMT", "UTC"): - res.stdoffset *= -1 - - # We must initialize it first, since _delta() needs - # _std_offset and _dst_offset set. Use False in start/end - # to avoid building it two times. - tzrange.__init__(self, res.stdabbr, res.stdoffset, - res.dstabbr, res.dstoffset, - start=False, end=False) - - if not res.dstabbr: - self._start_delta = None - self._end_delta = None - else: - self._start_delta = self._delta(res.start) - if self._start_delta: - self._end_delta = self._delta(res.end, isend=1) - - def _delta(self, x, isend=0): - kwargs = {} - if x.month is not None: - kwargs["month"] = x.month - if x.weekday is not None: - kwargs["weekday"] = relativedelta.weekday(x.weekday, x.week) - if x.week > 0: - kwargs["day"] = 1 - else: - kwargs["day"] = 31 - elif x.day: - kwargs["day"] = x.day - elif x.yday is not None: - kwargs["yearday"] = x.yday - elif x.jyday is not None: - kwargs["nlyearday"] = x.jyday - if not kwargs: - # Default is to start on first sunday of april, and end - # on last sunday of october. - if not isend: - kwargs["month"] = 4 - kwargs["day"] = 1 - kwargs["weekday"] = relativedelta.SU(+1) - else: - kwargs["month"] = 10 - kwargs["day"] = 31 - kwargs["weekday"] = relativedelta.SU(-1) - if x.time is not None: - kwargs["seconds"] = x.time - else: - # Default is 2AM. - kwargs["seconds"] = 7200 - if isend: - # Convert to standard time, to follow the documented way - # of working with the extra hour. See the documentation - # of the tzinfo class. - delta = self._dst_offset-self._std_offset - kwargs["seconds"] -= delta.seconds+delta.days*86400 - return relativedelta.relativedelta(**kwargs) - - def __repr__(self): - return "%s(%s)" % (self.__class__.__name__, `self._s`) - -class _tzicalvtzcomp: - def __init__(self, tzoffsetfrom, tzoffsetto, isdst, - tzname=None, rrule=None): - self.tzoffsetfrom = datetime.timedelta(seconds=tzoffsetfrom) - self.tzoffsetto = datetime.timedelta(seconds=tzoffsetto) - self.tzoffsetdiff = self.tzoffsetto-self.tzoffsetfrom - self.isdst = isdst - self.tzname = tzname - self.rrule = rrule - -class _tzicalvtz(datetime.tzinfo): - def __init__(self, tzid, comps=[]): - self._tzid = tzid - self._comps = comps - self._cachedate = [] - self._cachecomp = [] - - def _find_comp(self, dt): - if len(self._comps) == 1: - return self._comps[0] - dt = dt.replace(tzinfo=None) - try: - return self._cachecomp[self._cachedate.index(dt)] - except ValueError: - pass - lastcomp = None - lastcompdt = None - for comp in self._comps: - if not comp.isdst: - # Handle the extra hour in DST -> STD - compdt = comp.rrule.before(dt-comp.tzoffsetdiff, inc=True) - else: - compdt = comp.rrule.before(dt, inc=True) - if compdt and (not lastcompdt or lastcompdt < compdt): - lastcompdt = compdt - lastcomp = comp - if not lastcomp: - # RFC says nothing about what to do when a given - # time is before the first onset date. We'll look for the - # first standard component, or the first component, if - # none is found. - for comp in self._comps: - if not comp.isdst: - lastcomp = comp - break - else: - lastcomp = comp[0] - self._cachedate.insert(0, dt) - self._cachecomp.insert(0, lastcomp) - if len(self._cachedate) > 10: - self._cachedate.pop() - self._cachecomp.pop() - return lastcomp - - def utcoffset(self, dt): - return self._find_comp(dt).tzoffsetto - - def dst(self, dt): - comp = self._find_comp(dt) - if comp.isdst: - return comp.tzoffsetdiff - else: - return ZERO - - def tzname(self, dt): - return self._find_comp(dt).tzname - - def __repr__(self): - return "" % `self._tzid` - - __reduce__ = object.__reduce__ - -class tzical: - def __init__(self, fileobj): - global rrule - if not rrule: - from dateutil import rrule - - if isinstance(fileobj, basestring): - self._s = fileobj - fileobj = open(fileobj) - elif hasattr(fileobj, "name"): - self._s = fileobj.name - else: - self._s = `fileobj` - - self._vtz = {} - - self._parse_rfc(fileobj.read()) - - def keys(self): - return self._vtz.keys() - - def get(self, tzid=None): - if tzid is None: - keys = self._vtz.keys() - if len(keys) == 0: - raise ValueError, "no timezones defined" - elif len(keys) > 1: - raise ValueError, "more than one timezone available" - tzid = keys[0] - return self._vtz.get(tzid) - - def _parse_offset(self, s): - s = s.strip() - if not s: - raise ValueError, "empty offset" - if s[0] in ('+', '-'): - signal = (-1,+1)[s[0]=='+'] - s = s[1:] - else: - signal = +1 - if len(s) == 4: - return (int(s[:2])*3600+int(s[2:])*60)*signal - elif len(s) == 6: - return (int(s[:2])*3600+int(s[2:4])*60+int(s[4:]))*signal - else: - raise ValueError, "invalid offset: "+s - - def _parse_rfc(self, s): - lines = s.splitlines() - if not lines: - raise ValueError, "empty string" - - # Unfold - i = 0 - while i < len(lines): - line = lines[i].rstrip() - if not line: - del lines[i] - elif i > 0 and line[0] == " ": - lines[i-1] += line[1:] - del lines[i] - else: - i += 1 - - tzid = None - comps = [] - invtz = False - comptype = None - for line in lines: - if not line: - continue - name, value = line.split(':', 1) - parms = name.split(';') - if not parms: - raise ValueError, "empty property name" - name = parms[0].upper() - parms = parms[1:] - if invtz: - if name == "BEGIN": - if value in ("STANDARD", "DAYLIGHT"): - # Process component - pass - else: - raise ValueError, "unknown component: "+value - comptype = value - founddtstart = False - tzoffsetfrom = None - tzoffsetto = None - rrulelines = [] - tzname = None - elif name == "END": - if value == "VTIMEZONE": - if comptype: - raise ValueError, \ - "component not closed: "+comptype - if not tzid: - raise ValueError, \ - "mandatory TZID not found" - if not comps: - raise ValueError, \ - "at least one component is needed" - # Process vtimezone - self._vtz[tzid] = _tzicalvtz(tzid, comps) - invtz = False - elif value == comptype: - if not founddtstart: - raise ValueError, \ - "mandatory DTSTART not found" - if tzoffsetfrom is None: - raise ValueError, \ - "mandatory TZOFFSETFROM not found" - if tzoffsetto is None: - raise ValueError, \ - "mandatory TZOFFSETFROM not found" - # Process component - rr = None - if rrulelines: - rr = rrule.rrulestr("\n".join(rrulelines), - compatible=True, - ignoretz=True, - cache=True) - comp = _tzicalvtzcomp(tzoffsetfrom, tzoffsetto, - (comptype == "DAYLIGHT"), - tzname, rr) - comps.append(comp) - comptype = None - else: - raise ValueError, \ - "invalid component end: "+value - elif comptype: - if name == "DTSTART": - rrulelines.append(line) - founddtstart = True - elif name in ("RRULE", "RDATE", "EXRULE", "EXDATE"): - rrulelines.append(line) - elif name == "TZOFFSETFROM": - if parms: - raise ValueError, \ - "unsupported %s parm: %s "%(name, parms[0]) - tzoffsetfrom = self._parse_offset(value) - elif name == "TZOFFSETTO": - if parms: - raise ValueError, \ - "unsupported TZOFFSETTO parm: "+parms[0] - tzoffsetto = self._parse_offset(value) - elif name == "TZNAME": - if parms: - raise ValueError, \ - "unsupported TZNAME parm: "+parms[0] - tzname = value - elif name == "COMMENT": - pass - else: - raise ValueError, "unsupported property: "+name - else: - if name == "TZID": - if parms: - raise ValueError, \ - "unsupported TZID parm: "+parms[0] - tzid = value - elif name in ("TZURL", "LAST-MODIFIED", "COMMENT"): - pass - else: - raise ValueError, "unsupported property: "+name - elif name == "BEGIN" and value == "VTIMEZONE": - tzid = None - comps = [] - invtz = True - - def __repr__(self): - return "%s(%s)" % (self.__class__.__name__, `self._s`) - -if sys.platform != "win32": - TZFILES = ["/etc/localtime", "localtime"] - TZPATHS = ["/usr/share/zoneinfo", "/usr/lib/zoneinfo", "/etc/zoneinfo"] -else: - TZFILES = [] - TZPATHS = [] - -def gettz(name=None): - tz = None - if not name: - try: - name = os.environ["TZ"] - except KeyError: - pass - if name is None or name == ":": - for filepath in TZFILES: - if not os.path.isabs(filepath): - filename = filepath - for path in TZPATHS: - filepath = os.path.join(path, filename) - if os.path.isfile(filepath): - break - else: - continue - if os.path.isfile(filepath): - try: - tz = tzfile(filepath) - break - except (IOError, OSError, ValueError): - pass - else: - tz = tzlocal() - else: - if name.startswith(":"): - name = name[:-1] - if os.path.isabs(name): - if os.path.isfile(name): - tz = tzfile(name) - else: - tz = None - else: - for path in TZPATHS: - filepath = os.path.join(path, name) - if not os.path.isfile(filepath): - filepath = filepath.replace(' ','_') - if not os.path.isfile(filepath): - continue - try: - tz = tzfile(filepath) - break - except (IOError, OSError, ValueError): - pass - else: - tz = None - if tzwin: - try: - tz = tzwin(name) - except OSError: - pass - if not tz: - from dateutil.zoneinfo import gettz - tz = gettz(name) - if not tz: - for c in name: - # name must have at least one offset to be a tzstr - if c in "0123456789": - try: - tz = tzstr(name) - except ValueError: - pass - break - else: - if name in ("GMT", "UTC"): - tz = tzutc() - elif name in time.tzname: - tz = tzlocal() - return tz - -# vim:ts=4:sw=4:et diff --git a/lib/python2.7/site-packages/dateutil/tzwin.py b/lib/python2.7/site-packages/dateutil/tzwin.py deleted file mode 100644 index 073e0ff68..000000000 --- a/lib/python2.7/site-packages/dateutil/tzwin.py +++ /dev/null @@ -1,180 +0,0 @@ -# This code was originally contributed by Jeffrey Harris. -import datetime -import struct -import _winreg - -__author__ = "Jeffrey Harris & Gustavo Niemeyer " - -__all__ = ["tzwin", "tzwinlocal"] - -ONEWEEK = datetime.timedelta(7) - -TZKEYNAMENT = r"SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones" -TZKEYNAME9X = r"SOFTWARE\Microsoft\Windows\CurrentVersion\Time Zones" -TZLOCALKEYNAME = r"SYSTEM\CurrentControlSet\Control\TimeZoneInformation" - -def _settzkeyname(): - global TZKEYNAME - handle = _winreg.ConnectRegistry(None, _winreg.HKEY_LOCAL_MACHINE) - try: - _winreg.OpenKey(handle, TZKEYNAMENT).Close() - TZKEYNAME = TZKEYNAMENT - except WindowsError: - TZKEYNAME = TZKEYNAME9X - handle.Close() - -_settzkeyname() - -class tzwinbase(datetime.tzinfo): - """tzinfo class based on win32's timezones available in the registry.""" - - def utcoffset(self, dt): - if self._isdst(dt): - return datetime.timedelta(minutes=self._dstoffset) - else: - return datetime.timedelta(minutes=self._stdoffset) - - def dst(self, dt): - if self._isdst(dt): - minutes = self._dstoffset - self._stdoffset - return datetime.timedelta(minutes=minutes) - else: - return datetime.timedelta(0) - - def tzname(self, dt): - if self._isdst(dt): - return self._dstname - else: - return self._stdname - - def list(): - """Return a list of all time zones known to the system.""" - handle = _winreg.ConnectRegistry(None, _winreg.HKEY_LOCAL_MACHINE) - tzkey = _winreg.OpenKey(handle, TZKEYNAME) - result = [_winreg.EnumKey(tzkey, i) - for i in range(_winreg.QueryInfoKey(tzkey)[0])] - tzkey.Close() - handle.Close() - return result - list = staticmethod(list) - - def display(self): - return self._display - - def _isdst(self, dt): - dston = picknthweekday(dt.year, self._dstmonth, self._dstdayofweek, - self._dsthour, self._dstminute, - self._dstweeknumber) - dstoff = picknthweekday(dt.year, self._stdmonth, self._stddayofweek, - self._stdhour, self._stdminute, - self._stdweeknumber) - if dston < dstoff: - return dston <= dt.replace(tzinfo=None) < dstoff - else: - return not dstoff <= dt.replace(tzinfo=None) < dston - - -class tzwin(tzwinbase): - - def __init__(self, name): - self._name = name - - handle = _winreg.ConnectRegistry(None, _winreg.HKEY_LOCAL_MACHINE) - tzkey = _winreg.OpenKey(handle, "%s\%s" % (TZKEYNAME, name)) - keydict = valuestodict(tzkey) - tzkey.Close() - handle.Close() - - self._stdname = keydict["Std"].encode("iso-8859-1") - self._dstname = keydict["Dlt"].encode("iso-8859-1") - - self._display = keydict["Display"] - - # See http://ww_winreg.jsiinc.com/SUBA/tip0300/rh0398.htm - tup = struct.unpack("=3l16h", keydict["TZI"]) - self._stdoffset = -tup[0]-tup[1] # Bias + StandardBias * -1 - self._dstoffset = self._stdoffset-tup[2] # + DaylightBias * -1 - - (self._stdmonth, - self._stddayofweek, # Sunday = 0 - self._stdweeknumber, # Last = 5 - self._stdhour, - self._stdminute) = tup[4:9] - - (self._dstmonth, - self._dstdayofweek, # Sunday = 0 - self._dstweeknumber, # Last = 5 - self._dsthour, - self._dstminute) = tup[12:17] - - def __repr__(self): - return "tzwin(%s)" % repr(self._name) - - def __reduce__(self): - return (self.__class__, (self._name,)) - - -class tzwinlocal(tzwinbase): - - def __init__(self): - - handle = _winreg.ConnectRegistry(None, _winreg.HKEY_LOCAL_MACHINE) - - tzlocalkey = _winreg.OpenKey(handle, TZLOCALKEYNAME) - keydict = valuestodict(tzlocalkey) - tzlocalkey.Close() - - self._stdname = keydict["StandardName"].encode("iso-8859-1") - self._dstname = keydict["DaylightName"].encode("iso-8859-1") - - try: - tzkey = _winreg.OpenKey(handle, "%s\%s"%(TZKEYNAME, self._stdname)) - _keydict = valuestodict(tzkey) - self._display = _keydict["Display"] - tzkey.Close() - except OSError: - self._display = None - - handle.Close() - - self._stdoffset = -keydict["Bias"]-keydict["StandardBias"] - self._dstoffset = self._stdoffset-keydict["DaylightBias"] - - - # See http://ww_winreg.jsiinc.com/SUBA/tip0300/rh0398.htm - tup = struct.unpack("=8h", keydict["StandardStart"]) - - (self._stdmonth, - self._stddayofweek, # Sunday = 0 - self._stdweeknumber, # Last = 5 - self._stdhour, - self._stdminute) = tup[1:6] - - tup = struct.unpack("=8h", keydict["DaylightStart"]) - - (self._dstmonth, - self._dstdayofweek, # Sunday = 0 - self._dstweeknumber, # Last = 5 - self._dsthour, - self._dstminute) = tup[1:6] - - def __reduce__(self): - return (self.__class__, ()) - -def picknthweekday(year, month, dayofweek, hour, minute, whichweek): - """dayofweek == 0 means Sunday, whichweek 5 means last instance""" - first = datetime.datetime(year, month, 1, hour, minute) - weekdayone = first.replace(day=((dayofweek-first.isoweekday())%7+1)) - for n in xrange(whichweek): - dt = weekdayone+(whichweek-n)*ONEWEEK - if dt.month == month: - return dt - -def valuestodict(key): - """Convert a registry key's values to a dictionary.""" - dict = {} - size = _winreg.QueryInfoKey(key)[1] - for i in range(size): - data = _winreg.EnumValue(key, i) - dict[data[0]] = data[1] - return dict diff --git a/lib/python2.7/site-packages/dateutil/zoneinfo/__init__.py b/lib/python2.7/site-packages/dateutil/zoneinfo/__init__.py deleted file mode 100644 index 9bed6264c..000000000 --- a/lib/python2.7/site-packages/dateutil/zoneinfo/__init__.py +++ /dev/null @@ -1,87 +0,0 @@ -""" -Copyright (c) 2003-2005 Gustavo Niemeyer - -This module offers extensions to the standard python 2.3+ -datetime module. -""" -from dateutil.tz import tzfile -from tarfile import TarFile -import os - -__author__ = "Gustavo Niemeyer " -__license__ = "PSF License" - -__all__ = ["setcachesize", "gettz", "rebuild"] - -CACHE = [] -CACHESIZE = 10 - -class tzfile(tzfile): - def __reduce__(self): - return (gettz, (self._filename,)) - -def getzoneinfofile(): - filenames = os.listdir(os.path.join(os.path.dirname(__file__))) - filenames.sort() - filenames.reverse() - for entry in filenames: - if entry.startswith("zoneinfo") and ".tar." in entry: - return os.path.join(os.path.dirname(__file__), entry) - return None - -ZONEINFOFILE = getzoneinfofile() - -del getzoneinfofile - -def setcachesize(size): - global CACHESIZE, CACHE - CACHESIZE = size - del CACHE[size:] - -def gettz(name): - tzinfo = None - if ZONEINFOFILE: - for cachedname, tzinfo in CACHE: - if cachedname == name: - break - else: - tf = TarFile.open(ZONEINFOFILE) - try: - zonefile = tf.extractfile(name) - except KeyError: - tzinfo = None - else: - tzinfo = tzfile(zonefile) - tf.close() - CACHE.insert(0, (name, tzinfo)) - del CACHE[CACHESIZE:] - return tzinfo - -def rebuild(filename, tag=None, format="gz"): - import tempfile, shutil - tmpdir = tempfile.mkdtemp() - zonedir = os.path.join(tmpdir, "zoneinfo") - moduledir = os.path.dirname(__file__) - if tag: tag = "-"+tag - targetname = "zoneinfo%s.tar.%s" % (tag, format) - try: - tf = TarFile.open(filename) - for name in tf.getnames(): - if not (name.endswith(".sh") or - name.endswith(".tab") or - name == "leapseconds"): - tf.extract(name, tmpdir) - filepath = os.path.join(tmpdir, name) - os.system("zic -d %s %s" % (zonedir, filepath)) - tf.close() - target = os.path.join(moduledir, targetname) - for entry in os.listdir(moduledir): - if entry.startswith("zoneinfo") and ".tar." in entry: - os.unlink(os.path.join(moduledir, entry)) - tf = TarFile.open(target, "w:%s" % format) - for entry in os.listdir(zonedir): - entrypath = os.path.join(zonedir, entry) - tf.add(entrypath, entry) - tf.close() - finally: - shutil.rmtree(tmpdir) diff --git a/lib/python2.7/site-packages/dateutil/zoneinfo/zoneinfo-2010g.tar.gz b/lib/python2.7/site-packages/dateutil/zoneinfo/zoneinfo-2010g.tar.gz deleted file mode 100644 index 8bd4f9640..000000000 Binary files a/lib/python2.7/site-packages/dateutil/zoneinfo/zoneinfo-2010g.tar.gz and /dev/null differ diff --git a/lib/python2.7/site-packages/django/__init__.py b/lib/python2.7/site-packages/django/__init__.py deleted file mode 100644 index d3869d6fd..000000000 --- a/lib/python2.7/site-packages/django/__init__.py +++ /dev/null @@ -1,16 +0,0 @@ -VERSION = (1, 3, 5, 'final', 0) - -def get_version(): - version = '%s.%s' % (VERSION[0], VERSION[1]) - if VERSION[2]: - version = '%s.%s' % (version, VERSION[2]) - if VERSION[3:] == ('alpha', 0): - version = '%s pre-alpha' % version - else: - if VERSION[3] != 'final': - version = '%s %s %s' % (version, VERSION[3], VERSION[4]) - from django.utils.version import get_svn_revision - svn_rev = get_svn_revision() - if svn_rev != u'SVN-unknown': - version = "%s %s" % (version, svn_rev) - return version diff --git a/lib/python2.7/site-packages/django/bin/__init__.py b/lib/python2.7/site-packages/django/bin/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/bin/daily_cleanup.py b/lib/python2.7/site-packages/django/bin/daily_cleanup.py deleted file mode 100644 index c9f4cb905..000000000 --- a/lib/python2.7/site-packages/django/bin/daily_cleanup.py +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env python - -""" -Daily cleanup job. - -Can be run as a cronjob to clean out old data from the database (only expired -sessions at the moment). -""" - -from django.core import management - -if __name__ == "__main__": - management.call_command('cleanup') diff --git a/lib/python2.7/site-packages/django/bin/django-admin.py b/lib/python2.7/site-packages/django/bin/django-admin.py deleted file mode 100644 index f518cdc46..000000000 --- a/lib/python2.7/site-packages/django/bin/django-admin.py +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/env python -from django.core import management - -if __name__ == "__main__": - management.execute_from_command_line() diff --git a/lib/python2.7/site-packages/django/bin/profiling/__init__.py b/lib/python2.7/site-packages/django/bin/profiling/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/bin/profiling/gather_profile_stats.py b/lib/python2.7/site-packages/django/bin/profiling/gather_profile_stats.py deleted file mode 100644 index 0fd2b7fca..000000000 --- a/lib/python2.7/site-packages/django/bin/profiling/gather_profile_stats.py +++ /dev/null @@ -1,36 +0,0 @@ -#!/usr/bin/env python - -""" -gather_profile_stats.py /path/to/dir/of/profiles - -Note that the aggregated profiles must be read with pstats.Stats, not -hotshot.stats (the formats are incompatible) -""" - -from hotshot import stats -import pstats -import sys, os - -def gather_stats(p): - profiles = {} - for f in os.listdir(p): - if f.endswith('.agg.prof'): - path = f[:-9] - prof = pstats.Stats(os.path.join(p, f)) - elif f.endswith('.prof'): - bits = f.split('.') - path = ".".join(bits[:-3]) - prof = stats.load(os.path.join(p, f)) - else: - continue - print "Processing %s" % f - if path in profiles: - profiles[path].add(prof) - else: - profiles[path] = prof - os.unlink(os.path.join(p, f)) - for (path, prof) in profiles.items(): - prof.dump_stats(os.path.join(p, "%s.agg.prof" % path)) - -if __name__ == '__main__': - gather_stats(sys.argv[1]) diff --git a/lib/python2.7/site-packages/django/bin/unique-messages.py b/lib/python2.7/site-packages/django/bin/unique-messages.py deleted file mode 100644 index c601a9eee..000000000 --- a/lib/python2.7/site-packages/django/bin/unique-messages.py +++ /dev/null @@ -1,28 +0,0 @@ -#!/usr/bin/env python - -import os -import sys - -def unique_messages(): - basedir = None - - if os.path.isdir(os.path.join('conf', 'locale')): - basedir = os.path.abspath(os.path.join('conf', 'locale')) - elif os.path.isdir('locale'): - basedir = os.path.abspath('locale') - else: - print "this script should be run from the django svn tree or your project or app tree" - sys.exit(1) - - for (dirpath, dirnames, filenames) in os.walk(basedir): - for f in filenames: - if f.endswith('.po'): - sys.stderr.write('processing file %s in %s\n' % (f, dirpath)) - pf = os.path.splitext(os.path.join(dirpath, f))[0] - cmd = 'msguniq "%s.po"' % pf - stdout = os.popen(cmd) - msg = stdout.read() - open('%s.po' % pf, 'w').write(msg) - -if __name__ == "__main__": - unique_messages() diff --git a/lib/python2.7/site-packages/django/conf/__init__.py b/lib/python2.7/site-packages/django/conf/__init__.py deleted file mode 100644 index 3f707b089..000000000 --- a/lib/python2.7/site-packages/django/conf/__init__.py +++ /dev/null @@ -1,170 +0,0 @@ -""" -Settings and configuration for Django. - -Values will be read from the module specified by the DJANGO_SETTINGS_MODULE environment -variable, and then from django.conf.global_settings; see the global settings file for -a list of all possible variables. -""" - -import os -import re -import time # Needed for Windows -import warnings - -from django.conf import global_settings -from django.utils.functional import LazyObject -from django.utils import importlib - -ENVIRONMENT_VARIABLE = "DJANGO_SETTINGS_MODULE" - - -class LazySettings(LazyObject): - """ - A lazy proxy for either global Django settings or a custom settings object. - The user can manually configure settings prior to using them. Otherwise, - Django uses the settings module pointed to by DJANGO_SETTINGS_MODULE. - """ - def _setup(self): - """ - Load the settings module pointed to by the environment variable. This - is used the first time we need any settings at all, if the user has not - previously configured the settings manually. - """ - try: - settings_module = os.environ[ENVIRONMENT_VARIABLE] - if not settings_module: # If it's set but is an empty string. - raise KeyError - except KeyError: - # NOTE: This is arguably an EnvironmentError, but that causes - # problems with Python's interactive help. - raise ImportError("Settings cannot be imported, because environment variable %s is undefined." % ENVIRONMENT_VARIABLE) - - self._wrapped = Settings(settings_module) - - def configure(self, default_settings=global_settings, **options): - """ - Called to manually configure the settings. The 'default_settings' - parameter sets where to retrieve any unspecified values from (its - argument must support attribute access (__getattr__)). - """ - if self._wrapped != None: - raise RuntimeError('Settings already configured.') - holder = UserSettingsHolder(default_settings) - for name, value in options.items(): - setattr(holder, name, value) - self._wrapped = holder - - def configured(self): - """ - Returns True if the settings have already been configured. - """ - return bool(self._wrapped) - configured = property(configured) - - -class BaseSettings(object): - """ - Common logic for settings whether set by a module or by the user. - """ - def __setattr__(self, name, value): - if name in ("MEDIA_URL", "STATIC_URL") and value and not value.endswith('/'): - warnings.warn('If set, %s must end with a slash' % name, - PendingDeprecationWarning) - elif name == "ALLOWED_INCLUDE_ROOTS" and isinstance(value, basestring): - raise ValueError("The ALLOWED_INCLUDE_ROOTS setting must be set " - "to a tuple, not a string.") - object.__setattr__(self, name, value) - - -class Settings(BaseSettings): - def __init__(self, settings_module): - # update this dict from global settings (but only for ALL_CAPS settings) - for setting in dir(global_settings): - if setting == setting.upper(): - setattr(self, setting, getattr(global_settings, setting)) - - # store the settings module in case someone later cares - self.SETTINGS_MODULE = settings_module - - try: - mod = importlib.import_module(self.SETTINGS_MODULE) - except ImportError, e: - raise ImportError("Could not import settings '%s' (Is it on sys.path?): %s" % (self.SETTINGS_MODULE, e)) - - # Settings that should be converted into tuples if they're mistakenly entered - # as strings. - tuple_settings = ("INSTALLED_APPS", "TEMPLATE_DIRS") - - for setting in dir(mod): - if setting == setting.upper(): - setting_value = getattr(mod, setting) - if setting in tuple_settings and type(setting_value) == str: - setting_value = (setting_value,) # In case the user forgot the comma. - setattr(self, setting, setting_value) - - # Expand entries in INSTALLED_APPS like "django.contrib.*" to a list - # of all those apps. - new_installed_apps = [] - for app in self.INSTALLED_APPS: - if app.endswith('.*'): - app_mod = importlib.import_module(app[:-2]) - appdir = os.path.dirname(app_mod.__file__) - app_subdirs = os.listdir(appdir) - app_subdirs.sort() - name_pattern = re.compile(r'[a-zA-Z]\w*') - for d in app_subdirs: - if name_pattern.match(d) and os.path.isdir(os.path.join(appdir, d)): - new_installed_apps.append('%s.%s' % (app[:-2], d)) - else: - new_installed_apps.append(app) - self.INSTALLED_APPS = new_installed_apps - - if hasattr(time, 'tzset') and self.TIME_ZONE: - # When we can, attempt to validate the timezone. If we can't find - # this file, no check happens and it's harmless. - zoneinfo_root = '/usr/share/zoneinfo' - if (os.path.exists(zoneinfo_root) and not - os.path.exists(os.path.join(zoneinfo_root, *(self.TIME_ZONE.split('/'))))): - raise ValueError("Incorrect timezone setting: %s" % self.TIME_ZONE) - # Move the time zone info into os.environ. See ticket #2315 for why - # we don't do this unconditionally (breaks Windows). - os.environ['TZ'] = self.TIME_ZONE - time.tzset() - - # Settings are configured, so we can set up the logger if required - if self.LOGGING_CONFIG: - # First find the logging configuration function ... - logging_config_path, logging_config_func_name = self.LOGGING_CONFIG.rsplit('.', 1) - logging_config_module = importlib.import_module(logging_config_path) - logging_config_func = getattr(logging_config_module, logging_config_func_name) - - # ... then invoke it with the logging settings - logging_config_func(self.LOGGING) - - -class UserSettingsHolder(BaseSettings): - """ - Holder for user configured settings. - """ - # SETTINGS_MODULE doesn't make much sense in the manually configured - # (standalone) case. - SETTINGS_MODULE = None - - def __init__(self, default_settings): - """ - Requests for configuration variables not in this class are satisfied - from the module specified in default_settings (if possible). - """ - self.default_settings = default_settings - - def __getattr__(self, name): - return getattr(self.default_settings, name) - - def __dir__(self): - return self.__dict__.keys() + dir(self.default_settings) - - # For Python < 2.6: - __members__ = property(lambda self: self.__dir__()) - -settings = LazySettings() - diff --git a/lib/python2.7/site-packages/django/conf/app_template/__init__.py b/lib/python2.7/site-packages/django/conf/app_template/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/app_template/models.py b/lib/python2.7/site-packages/django/conf/app_template/models.py deleted file mode 100644 index 71a836239..000000000 --- a/lib/python2.7/site-packages/django/conf/app_template/models.py +++ /dev/null @@ -1,3 +0,0 @@ -from django.db import models - -# Create your models here. diff --git a/lib/python2.7/site-packages/django/conf/app_template/tests.py b/lib/python2.7/site-packages/django/conf/app_template/tests.py deleted file mode 100644 index 501deb776..000000000 --- a/lib/python2.7/site-packages/django/conf/app_template/tests.py +++ /dev/null @@ -1,16 +0,0 @@ -""" -This file demonstrates writing tests using the unittest module. These will pass -when you run "manage.py test". - -Replace this with more appropriate tests for your application. -""" - -from django.test import TestCase - - -class SimpleTest(TestCase): - def test_basic_addition(self): - """ - Tests that 1 + 1 always equals 2. - """ - self.assertEqual(1 + 1, 2) diff --git a/lib/python2.7/site-packages/django/conf/app_template/views.py b/lib/python2.7/site-packages/django/conf/app_template/views.py deleted file mode 100644 index 60f00ef0e..000000000 --- a/lib/python2.7/site-packages/django/conf/app_template/views.py +++ /dev/null @@ -1 +0,0 @@ -# Create your views here. diff --git a/lib/python2.7/site-packages/django/conf/global_settings.py b/lib/python2.7/site-packages/django/conf/global_settings.py deleted file mode 100644 index 5ef6886ac..000000000 --- a/lib/python2.7/site-packages/django/conf/global_settings.py +++ /dev/null @@ -1,590 +0,0 @@ -# Default Django settings. Override these with settings in the module -# pointed-to by the DJANGO_SETTINGS_MODULE environment variable. - -# This is defined here as a do-nothing function because we can't import -# django.utils.translation -- that module depends on the settings. -gettext_noop = lambda s: s - -#################### -# CORE # -#################### - -DEBUG = False -TEMPLATE_DEBUG = False - -# Whether the framework should propagate raw exceptions rather than catching -# them. This is useful under some testing siutations and should never be used -# on a live site. -DEBUG_PROPAGATE_EXCEPTIONS = False - -# Whether to use the "Etag" header. This saves bandwidth but slows down performance. -USE_ETAGS = False - -# People who get code error notifications. -# In the format (('Full Name', 'email@example.com'), ('Full Name', 'anotheremail@example.com')) -ADMINS = () - -# Tuple of IP addresses, as strings, that: -# * See debug comments, when DEBUG is true -# * Receive x-headers -INTERNAL_IPS = () - -# Local time zone for this installation. All choices can be found here: -# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name (although not all -# systems may support all possibilities). -TIME_ZONE = 'America/Chicago' - -# Language code for this installation. All choices can be found here: -# http://www.i18nguy.com/unicode/language-identifiers.html -LANGUAGE_CODE = 'en-us' - -# Languages we provide translations for, out of the box. The language name -# should be the utf-8 encoded local name for the language. -LANGUAGES = ( - ('ar', gettext_noop('Arabic')), - ('az', gettext_noop('Azerbaijani')), - ('bg', gettext_noop('Bulgarian')), - ('bn', gettext_noop('Bengali')), - ('bs', gettext_noop('Bosnian')), - ('ca', gettext_noop('Catalan')), - ('cs', gettext_noop('Czech')), - ('cy', gettext_noop('Welsh')), - ('da', gettext_noop('Danish')), - ('de', gettext_noop('German')), - ('el', gettext_noop('Greek')), - ('en', gettext_noop('English')), - ('en-gb', gettext_noop('British English')), - ('es', gettext_noop('Spanish')), - ('es-ar', gettext_noop('Argentinian Spanish')), - ('es-mx', gettext_noop('Mexican Spanish')), - ('es-ni', gettext_noop('Nicaraguan Spanish')), - ('et', gettext_noop('Estonian')), - ('eu', gettext_noop('Basque')), - ('fa', gettext_noop('Persian')), - ('fi', gettext_noop('Finnish')), - ('fr', gettext_noop('French')), - ('fy-nl', gettext_noop('Frisian')), - ('ga', gettext_noop('Irish')), - ('gl', gettext_noop('Galician')), - ('he', gettext_noop('Hebrew')), - ('hi', gettext_noop('Hindi')), - ('hr', gettext_noop('Croatian')), - ('hu', gettext_noop('Hungarian')), - ('id', gettext_noop('Indonesian')), - ('is', gettext_noop('Icelandic')), - ('it', gettext_noop('Italian')), - ('ja', gettext_noop('Japanese')), - ('ka', gettext_noop('Georgian')), - ('km', gettext_noop('Khmer')), - ('kn', gettext_noop('Kannada')), - ('ko', gettext_noop('Korean')), - ('lt', gettext_noop('Lithuanian')), - ('lv', gettext_noop('Latvian')), - ('mk', gettext_noop('Macedonian')), - ('ml', gettext_noop('Malayalam')), - ('mn', gettext_noop('Mongolian')), - ('nl', gettext_noop('Dutch')), - ('no', gettext_noop('Norwegian')), - ('nb', gettext_noop('Norwegian Bokmal')), - ('nn', gettext_noop('Norwegian Nynorsk')), - ('pa', gettext_noop('Punjabi')), - ('pl', gettext_noop('Polish')), - ('pt', gettext_noop('Portuguese')), - ('pt-br', gettext_noop('Brazilian Portuguese')), - ('ro', gettext_noop('Romanian')), - ('ru', gettext_noop('Russian')), - ('sk', gettext_noop('Slovak')), - ('sl', gettext_noop('Slovenian')), - ('sq', gettext_noop('Albanian')), - ('sr', gettext_noop('Serbian')), - ('sr-latn', gettext_noop('Serbian Latin')), - ('sv', gettext_noop('Swedish')), - ('ta', gettext_noop('Tamil')), - ('te', gettext_noop('Telugu')), - ('th', gettext_noop('Thai')), - ('tr', gettext_noop('Turkish')), - ('uk', gettext_noop('Ukrainian')), - ('ur', gettext_noop('Urdu')), - ('vi', gettext_noop('Vietnamese')), - ('zh-cn', gettext_noop('Simplified Chinese')), - ('zh-tw', gettext_noop('Traditional Chinese')), -) - -# Languages using BiDi (right-to-left) layout -LANGUAGES_BIDI = ("he", "ar", "fa") - -# If you set this to False, Django will make some optimizations so as not -# to load the internationalization machinery. -USE_I18N = True -LOCALE_PATHS = () -LANGUAGE_COOKIE_NAME = 'django_language' - -# If you set this to True, Django will format dates, numbers and calendars -# according to user current locale -USE_L10N = False - -# Not-necessarily-technical managers of the site. They get broken link -# notifications and other various e-mails. -MANAGERS = ADMINS - -# Default content type and charset to use for all HttpResponse objects, if a -# MIME type isn't manually specified. These are used to construct the -# Content-Type header. -DEFAULT_CONTENT_TYPE = 'text/html' -DEFAULT_CHARSET = 'utf-8' - -# Encoding of files read from disk (template and initial SQL files). -FILE_CHARSET = 'utf-8' - -# E-mail address that error messages come from. -SERVER_EMAIL = 'root@localhost' - -# Whether to send broken-link e-mails. -SEND_BROKEN_LINK_EMAILS = False - -# Database connection info. -# Legacy format -DATABASE_ENGINE = '' # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. -DATABASE_NAME = '' # Or path to database file if using sqlite3. -DATABASE_USER = '' # Not used with sqlite3. -DATABASE_PASSWORD = '' # Not used with sqlite3. -DATABASE_HOST = '' # Set to empty string for localhost. Not used with sqlite3. -DATABASE_PORT = '' # Set to empty string for default. Not used with sqlite3. -DATABASE_OPTIONS = {} # Set to empty dictionary for default. - -# New format -DATABASES = { -} - -# Classes used to implement db routing behaviour -DATABASE_ROUTERS = [] - -# The email backend to use. For possible shortcuts see django.core.mail. -# The default is to use the SMTP backend. -# Third-party backends can be specified by providing a Python path -# to a module that defines an EmailBackend class. -EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend' - -# Host for sending e-mail. -EMAIL_HOST = 'localhost' - -# Port for sending e-mail. -EMAIL_PORT = 25 - -# Optional SMTP authentication information for EMAIL_HOST. -EMAIL_HOST_USER = '' -EMAIL_HOST_PASSWORD = '' -EMAIL_USE_TLS = False - -# List of strings representing installed apps. -INSTALLED_APPS = () - -# List of locations of the template source files, in search order. -TEMPLATE_DIRS = () - -# List of callables that know how to import templates from various sources. -# See the comments in django/core/template/loader.py for interface -# documentation. -TEMPLATE_LOADERS = ( - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', -# 'django.template.loaders.eggs.Loader', -) - -# List of processors used by RequestContext to populate the context. -# Each one should be a callable that takes the request object as its -# only parameter and returns a dictionary to add to the context. -TEMPLATE_CONTEXT_PROCESSORS = ( - 'django.contrib.auth.context_processors.auth', - 'django.core.context_processors.debug', - 'django.core.context_processors.i18n', - 'django.core.context_processors.media', - 'django.core.context_processors.static', -# 'django.core.context_processors.request', - 'django.contrib.messages.context_processors.messages', -) - -# Output to use in template system for invalid (e.g. misspelled) variables. -TEMPLATE_STRING_IF_INVALID = '' - -# Default e-mail address to use for various automated correspondence from -# the site managers. -DEFAULT_FROM_EMAIL = 'webmaster@localhost' - -# Subject-line prefix for email messages send with django.core.mail.mail_admins -# or ...mail_managers. Make sure to include the trailing space. -EMAIL_SUBJECT_PREFIX = '[Django] ' - -# Whether to append trailing slashes to URLs. -APPEND_SLASH = True - -# Whether to prepend the "www." subdomain to URLs that don't have it. -PREPEND_WWW = False - -# Override the server-derived value of SCRIPT_NAME -FORCE_SCRIPT_NAME = None - -# List of compiled regular expression objects representing User-Agent strings -# that are not allowed to visit any page, systemwide. Use this for bad -# robots/crawlers. Here are a few examples: -# import re -# DISALLOWED_USER_AGENTS = ( -# re.compile(r'^NaverBot.*'), -# re.compile(r'^EmailSiphon.*'), -# re.compile(r'^SiteSucker.*'), -# re.compile(r'^sohu-search') -# ) -DISALLOWED_USER_AGENTS = () - -ABSOLUTE_URL_OVERRIDES = {} - -# Tuple of strings representing allowed prefixes for the {% ssi %} tag. -# Example: ('/home/html', '/var/www') -ALLOWED_INCLUDE_ROOTS = () - -# If this is a admin settings module, this should be a list of -# settings modules (in the format 'foo.bar.baz') for which this admin -# is an admin. -ADMIN_FOR = () - -# 404s that may be ignored. -IGNORABLE_404_STARTS = ('/cgi-bin/', '/_vti_bin', '/_vti_inf') -IGNORABLE_404_ENDS = ('mail.pl', 'mailform.pl', 'mail.cgi', 'mailform.cgi', 'favicon.ico', '.php') - -# A secret key for this particular Django installation. Used in secret-key -# hashing algorithms. Set this in your settings, or Django will complain -# loudly. -SECRET_KEY = '' - -# Default file storage mechanism that holds media. -DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage' - -# Absolute filesystem path to the directory that will hold user-uploaded files. -# Example: "/home/media/media.lawrence.com/media/" -MEDIA_ROOT = '' - -# URL that handles the media served from MEDIA_ROOT. -# Example: "http://media.lawrence.com/media/" -MEDIA_URL = '' - -# Absolute path to the directory that holds static files. -# Example: "/home/media/media.lawrence.com/static/" -STATIC_ROOT = '' - -# URL that handles the static files served from STATIC_ROOT. -# Example: "http://media.lawrence.com/static/" -STATIC_URL = None - -# List of upload handler classes to be applied in order. -FILE_UPLOAD_HANDLERS = ( - 'django.core.files.uploadhandler.MemoryFileUploadHandler', - 'django.core.files.uploadhandler.TemporaryFileUploadHandler', -) - -# Maximum size, in bytes, of a request before it will be streamed to the -# file system instead of into memory. -FILE_UPLOAD_MAX_MEMORY_SIZE = 2621440 # i.e. 2.5 MB - -# Directory in which upload streamed files will be temporarily saved. A value of -# `None` will make Django use the operating system's default temporary directory -# (i.e. "/tmp" on *nix systems). -FILE_UPLOAD_TEMP_DIR = None - -# The numeric mode to set newly-uploaded files to. The value should be a mode -# you'd pass directly to os.chmod; see http://docs.python.org/lib/os-file-dir.html. -FILE_UPLOAD_PERMISSIONS = None - -# Python module path where user will place custom format definition. -# The directory where this setting is pointing should contain subdirectories -# named as the locales, containing a formats.py file -# (i.e. "myproject.locale" for myproject/locale/en/formats.py etc. use) -FORMAT_MODULE_PATH = None - -# Default formatting for date objects. See all available format strings here: -# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'N j, Y' - -# Default formatting for datetime objects. See all available format strings here: -# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATETIME_FORMAT = 'N j, Y, P' - -# Default formatting for time objects. See all available format strings here: -# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -TIME_FORMAT = 'P' - -# Default formatting for date objects when only the year and month are relevant. -# See all available format strings here: -# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -YEAR_MONTH_FORMAT = 'F Y' - -# Default formatting for date objects when only the month and day are relevant. -# See all available format strings here: -# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -MONTH_DAY_FORMAT = 'F j' - -# Default short formatting for date objects. See all available format strings here: -# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -SHORT_DATE_FORMAT = 'm/d/Y' - -# Default short formatting for datetime objects. -# See all available format strings here: -# http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -SHORT_DATETIME_FORMAT = 'm/d/Y P' - -# Default formats to be used when parsing dates from input boxes, in order -# See all available format string here: -# http://docs.python.org/library/datetime.html#strftime-behavior -# * Note that these format strings are different from the ones to display dates -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' - '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006' - '%d %b %Y', '%d %b, %Y', # '25 Oct 2006', '25 Oct, 2006' - '%B %d %Y', '%B %d, %Y', # 'October 25 2006', 'October 25, 2006' - '%d %B %Y', '%d %B, %Y', # '25 October 2006', '25 October, 2006' -) - -# Default formats to be used when parsing times from input boxes, in order -# See all available format string here: -# http://docs.python.org/library/datetime.html#strftime-behavior -# * Note that these format strings are different from the ones to display dates -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) - -# Default formats to be used when parsing dates and times from input boxes, -# in order -# See all available format string here: -# http://docs.python.org/library/datetime.html#strftime-behavior -# * Note that these format strings are different from the ones to display dates -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%m/%d/%Y %H:%M:%S', # '10/25/2006 14:30:59' - '%m/%d/%Y %H:%M', # '10/25/2006 14:30' - '%m/%d/%Y', # '10/25/2006' - '%m/%d/%y %H:%M:%S', # '10/25/06 14:30:59' - '%m/%d/%y %H:%M', # '10/25/06 14:30' - '%m/%d/%y', # '10/25/06' -) - -# First day of week, to be used on calendars -# 0 means Sunday, 1 means Monday... -FIRST_DAY_OF_WEEK = 0 - -# Decimal separator symbol -DECIMAL_SEPARATOR = '.' - -# Boolean that sets whether to add thousand separator when formatting numbers -USE_THOUSAND_SEPARATOR = False - -# Number of digits that will be together, when spliting them by -# THOUSAND_SEPARATOR. 0 means no grouping, 3 means splitting by thousands... -NUMBER_GROUPING = 0 - -# Thousand separator symbol -THOUSAND_SEPARATOR = ',' - -# Do you want to manage transactions manually? -# Hint: you really don't! -TRANSACTIONS_MANAGED = False - -# The User-Agent string to use when checking for URL validity through the -# isExistingURL validator. -from django import get_version -URL_VALIDATOR_USER_AGENT = "Django/%s (http://www.djangoproject.com)" % get_version() - -# The tablespaces to use for each model when not specified otherwise. -DEFAULT_TABLESPACE = '' -DEFAULT_INDEX_TABLESPACE = '' - -USE_X_FORWARDED_HOST = False - -############## -# MIDDLEWARE # -############## - -# List of middleware classes to use. Order is important; in the request phase, -# this middleware classes will be applied in the order given, and in the -# response phase the middleware will be applied in reverse order. -MIDDLEWARE_CLASSES = ( - 'django.middleware.common.CommonMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', -# 'django.middleware.http.ConditionalGetMiddleware', -# 'django.middleware.gzip.GZipMiddleware', -) - -############ -# SESSIONS # -############ - -SESSION_COOKIE_NAME = 'sessionid' # Cookie name. This can be whatever you want. -SESSION_COOKIE_AGE = 60 * 60 * 24 * 7 * 2 # Age of cookie, in seconds (default: 2 weeks). -SESSION_COOKIE_DOMAIN = None # A string like ".lawrence.com", or None for standard domain cookie. -SESSION_COOKIE_SECURE = False # Whether the session cookie should be secure (https:// only). -SESSION_COOKIE_PATH = '/' # The path of the session cookie. -SESSION_COOKIE_HTTPONLY = False # Whether to use the non-RFC standard httpOnly flag (IE, FF3+, others) -SESSION_SAVE_EVERY_REQUEST = False # Whether to save the session data on every request. -SESSION_EXPIRE_AT_BROWSER_CLOSE = False # Whether a user's session cookie expires when the Web browser is closed. -SESSION_ENGINE = 'django.contrib.sessions.backends.db' # The module to store session data -SESSION_FILE_PATH = None # Directory to store session files if using the file session module. If None, the backend will use a sensible default. - -######### -# CACHE # -######### - -# New format -CACHES = { -} -# The cache backend to use. See the docstring in django.core.cache for the -# possible values. -CACHE_MIDDLEWARE_KEY_PREFIX = '' -CACHE_MIDDLEWARE_SECONDS = 600 -CACHE_MIDDLEWARE_ALIAS = 'default' - -#################### -# COMMENTS # -#################### - -COMMENTS_ALLOW_PROFANITIES = False - -# The profanities that will trigger a validation error in the -# 'hasNoProfanities' validator. All of these should be in lowercase. -PROFANITIES_LIST = () - -# The group ID that designates which users are banned. -# Set to None if you're not using it. -COMMENTS_BANNED_USERS_GROUP = None - -# The group ID that designates which users can moderate comments. -# Set to None if you're not using it. -COMMENTS_MODERATORS_GROUP = None - -# The group ID that designates the users whose comments should be e-mailed to MANAGERS. -# Set to None if you're not using it. -COMMENTS_SKETCHY_USERS_GROUP = None - -# The system will e-mail MANAGERS the first COMMENTS_FIRST_FEW comments by each -# user. Set this to 0 if you want to disable it. -COMMENTS_FIRST_FEW = 0 - -# A tuple of IP addresses that have been banned from participating in various -# Django-powered features. -BANNED_IPS = () - -################## -# AUTHENTICATION # -################## - -AUTHENTICATION_BACKENDS = ('django.contrib.auth.backends.ModelBackend',) - -LOGIN_URL = '/accounts/login/' - -LOGOUT_URL = '/accounts/logout/' - -LOGIN_REDIRECT_URL = '/accounts/profile/' - -# The number of days a password reset link is valid for -PASSWORD_RESET_TIMEOUT_DAYS = 3 - -######## -# CSRF # -######## - -# Dotted path to callable to be used as view when a request is -# rejected by the CSRF middleware. -CSRF_FAILURE_VIEW = 'django.views.csrf.csrf_failure' - -# Name and domain for CSRF cookie. -CSRF_COOKIE_NAME = 'csrftoken' -CSRF_COOKIE_DOMAIN = None - -############ -# MESSAGES # -############ - -# Class to use as messges backend -MESSAGE_STORAGE = 'django.contrib.messages.storage.user_messages.LegacyFallbackStorage' - -# Default values of MESSAGE_LEVEL and MESSAGE_TAGS are defined within -# django.contrib.messages to avoid imports in this settings file. - -########### -# LOGGING # -########### - -# The callable to use to configure logging -LOGGING_CONFIG = 'django.utils.log.dictConfig' - -# The default logging configuration. This sends an email to -# the site admins on every HTTP 500 error. All other log -# records are sent to the bit bucket. -LOGGING = { - 'version': 1, - 'disable_existing_loggers': False, - 'handlers': { - 'mail_admins': { - 'level': 'ERROR', - 'class': 'django.utils.log.AdminEmailHandler' - } - }, - 'loggers': { - 'django.request': { - 'handlers': ['mail_admins'], - 'level': 'ERROR', - 'propagate': True, - }, - } -} - -########### -# TESTING # -########### - -# The name of the class to use to run the test suite -TEST_RUNNER = 'django.test.simple.DjangoTestSuiteRunner' - -# The name of the database to use for testing purposes. -# If None, a name of 'test_' + DATABASE_NAME will be assumed -TEST_DATABASE_NAME = None - -# Strings used to set the character set and collation order for the test -# database. These values are passed literally to the server, so they are -# backend-dependent. If None, no special settings are sent (system defaults are -# used). -TEST_DATABASE_CHARSET = None -TEST_DATABASE_COLLATION = None - -############ -# FIXTURES # -############ - -# The list of directories to search for fixtures -FIXTURE_DIRS = () - -############### -# STATICFILES # -############### - -# A list of locations of additional static files -STATICFILES_DIRS = () - -# The default file storage backend used during the build process -STATICFILES_STORAGE = 'django.contrib.staticfiles.storage.StaticFilesStorage' - -# List of finder classes that know how to find static files in -# various locations. -STATICFILES_FINDERS = ( - 'django.contrib.staticfiles.finders.FileSystemFinder', - 'django.contrib.staticfiles.finders.AppDirectoriesFinder', -# 'django.contrib.staticfiles.finders.DefaultStorageFinder', -) - -# URL prefix for admin media -- CSS, JavaScript and images. -# Make sure to use a trailing slash. -# Examples: "http://foo.com/static/admin/", "/static/admin/". -ADMIN_MEDIA_PREFIX = '/static/admin/' diff --git a/lib/python2.7/site-packages/django/conf/locale/__init__.py b/lib/python2.7/site-packages/django/conf/locale/__init__.py deleted file mode 100644 index 9b41c8fcb..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/__init__.py +++ /dev/null @@ -1,404 +0,0 @@ -LANG_INFO = { - 'ar': { - 'bidi': True, - 'code': 'ar', - 'name': 'Arabic', - 'name_local': u'\u0627\u0644\u0639\u0631\u0628\u064a\u0651\u0629', - }, - 'az': { - 'bidi': True, - 'code': 'az', - 'name': 'Azerbaijani', - 'name_local': u'az\u0259rbaycan dili', - }, - 'bg': { - 'bidi': False, - 'code': 'bg', - 'name': 'Bulgarian', - 'name_local': u'\u0431\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438', - }, - 'bn': { - 'bidi': False, - 'code': 'bn', - 'name': 'Bengali', - 'name_local': u'\u09ac\u09be\u0982\u09b2\u09be', - }, - 'bs': { - 'bidi': False, - 'code': 'bs', - 'name': 'Bosnian', - 'name_local': u'bosanski', - }, - 'ca': { - 'bidi': False, - 'code': 'ca', - 'name': 'Catalan', - 'name_local': u'catal\xe0', - }, - 'cs': { - 'bidi': False, - 'code': 'cs', - 'name': 'Czech', - 'name_local': u'\u010desky', - }, - 'cy': { - 'bidi': False, - 'code': 'cy', - 'name': 'Welsh', - 'name_local': u'Cymraeg', - }, - 'da': { - 'bidi': False, - 'code': 'da', - 'name': 'Danish', - 'name_local': u'Dansk', - }, - 'de': { - 'bidi': False, - 'code': 'de', - 'name': 'German', - 'name_local': u'Deutsch', - }, - 'el': { - 'bidi': False, - 'code': 'el', - 'name': 'Greek', - 'name_local': u'\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac', - }, - 'en': { - 'bidi': False, - 'code': 'en', - 'name': 'English', - 'name_local': u'English', - }, - 'en-gb': { - 'bidi': False, - 'code': 'en-gb', - 'name': 'British English', - 'name_local': u'British English', - }, - 'es': { - 'bidi': False, - 'code': 'es', - 'name': 'Spanish', - 'name_local': u'espa\xf1ol', - }, - 'es-ar': { - 'bidi': False, - 'code': 'es-ar', - 'name': 'Argentinian Spanish', - 'name_local': u'espa\xf1ol de Argentina', - }, - 'es-mx': { - 'bidi': False, - 'code': 'es-mx', - 'name': 'Mexican Spanish', - 'name_local': u'espa\xf1ol de Mexico', - }, - 'es-ni': { - 'bidi': False, - 'code': 'es-ni', - 'name': 'Nicaraguan Spanish', - 'name_local': u'espa\xf1ol de Nicaragua', - }, - 'et': { - 'bidi': False, - 'code': 'et', - 'name': 'Estonian', - 'name_local': u'eesti', - }, - 'eu': { - 'bidi': False, - 'code': 'eu', - 'name': 'Basque', - 'name_local': u'Basque', - }, - 'fa': { - 'bidi': True, - 'code': 'fa', - 'name': 'Persian', - 'name_local': u'\u0641\u0627\u0631\u0633\u06cc', - }, - 'fi': { - 'bidi': False, - 'code': 'fi', - 'name': 'Finnish', - 'name_local': u'suomi', - }, - 'fr': { - 'bidi': False, - 'code': 'fr', - 'name': 'French', - 'name_local': u'Fran\xe7ais', - }, - 'fy-nl': { - 'bidi': False, - 'code': 'fy-nl', - 'name': 'Frisian', - 'name_local': u'Frisian', - }, - 'ga': { - 'bidi': False, - 'code': 'ga', - 'name': 'Irish', - 'name_local': u'Gaeilge', - }, - 'gl': { - 'bidi': False, - 'code': 'gl', - 'name': 'Galician', - 'name_local': u'galego', - }, - 'he': { - 'bidi': True, - 'code': 'he', - 'name': 'Hebrew', - 'name_local': u'\u05e2\u05d1\u05e8\u05d9\u05ea', - }, - 'hi': { - 'bidi': False, - 'code': 'hi', - 'name': 'Hindi', - 'name_local': u'Hindi', - }, - 'hr': { - 'bidi': False, - 'code': 'hr', - 'name': 'Croatian', - 'name_local': u'Hrvatski', - }, - 'hu': { - 'bidi': False, - 'code': 'hu', - 'name': 'Hungarian', - 'name_local': u'Magyar', - }, - 'id': { - 'bidi': False, - 'code': 'id', - 'name': 'Indonesian', - 'name_local': u'Bahasa Indonesia', - }, - 'is': { - 'bidi': False, - 'code': 'is', - 'name': 'Icelandic', - 'name_local': u'\xcdslenska', - }, - 'it': { - 'bidi': False, - 'code': 'it', - 'name': 'Italian', - 'name_local': u'italiano', - }, - 'ja': { - 'bidi': False, - 'code': 'ja', - 'name': 'Japanese', - 'name_local': u'\u65e5\u672c\u8a9e', - }, - 'ka': { - 'bidi': False, - 'code': 'ka', - 'name': 'Georgian', - 'name_local': u'\u10e5\u10d0\u10e0\u10d7\u10e3\u10da\u10d8', - }, - 'km': { - 'bidi': False, - 'code': 'km', - 'name': 'Khmer', - 'name_local': u'Khmer', - }, - 'kn': { - 'bidi': False, - 'code': 'kn', - 'name': 'Kannada', - 'name_local': u'Kannada', - }, - 'ko': { - 'bidi': False, - 'code': 'ko', - 'name': 'Korean', - 'name_local': u'\ud55c\uad6d\uc5b4', - }, - 'lt': { - 'bidi': False, - 'code': 'lt', - 'name': 'Lithuanian', - 'name_local': u'Lithuanian', - }, - 'lv': { - 'bidi': False, - 'code': 'lv', - 'name': 'Latvian', - 'name_local': u'latvie\u0161u', - }, - 'mk': { - 'bidi': False, - 'code': 'mk', - 'name': 'Macedonian', - 'name_local': u'\u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438', - }, - 'ml': { - 'bidi': False, - 'code': 'ml', - 'name': 'Malayalam', - 'name_local': u'Malayalam', - }, - 'mn': { - 'bidi': False, - 'code': 'mn', - 'name': 'Mongolian', - 'name_local': u'Mongolian', - }, - 'nb': { - 'bidi': False, - 'code': 'nb', - 'name': 'Norwegian Bokmal', - 'name_local': u'Norsk (bokm\xe5l)', - }, - 'nl': { - 'bidi': False, - 'code': 'nl', - 'name': 'Dutch', - 'name_local': u'Nederlands', - }, - 'nn': { - 'bidi': False, - 'code': 'nn', - 'name': 'Norwegian Nynorsk', - 'name_local': u'Norsk (nynorsk)', - }, - 'no': { - 'bidi': False, - 'code': 'no', - 'name': 'Norwegian', - 'name_local': u'Norsk', - }, - 'pa': { - 'bidi': False, - 'code': 'pa', - 'name': 'Punjabi', - 'name_local': u'Punjabi', - }, - 'pl': { - 'bidi': False, - 'code': 'pl', - 'name': 'Polish', - 'name_local': u'polski', - }, - 'pt': { - 'bidi': False, - 'code': 'pt', - 'name': 'Portuguese', - 'name_local': u'Portugu\xeas', - }, - 'pt-br': { - 'bidi': False, - 'code': 'pt-br', - 'name': 'Brazilian Portuguese', - 'name_local': u'Portugu\xeas Brasileiro', - }, - 'ro': { - 'bidi': False, - 'code': 'ro', - 'name': 'Romanian', - 'name_local': u'Rom\xe2n\u0103', - }, - 'ru': { - 'bidi': False, - 'code': 'ru', - 'name': 'Russian', - 'name_local': u'\u0420\u0443\u0441\u0441\u043a\u0438\u0439', - }, - 'sk': { - 'bidi': False, - 'code': 'sk', - 'name': 'Slovak', - 'name_local': u'slovensk\xfd', - }, - 'sl': { - 'bidi': False, - 'code': 'sl', - 'name': 'Slovenian', - 'name_local': u'Sloven\u0161\u010dina', - }, - 'sq': { - 'bidi': False, - 'code': 'sq', - 'name': 'Albanian', - 'name_local': u'Albanian', - }, - 'sr': { - 'bidi': False, - 'code': 'sr', - 'name': 'Serbian', - 'name_local': u'\u0441\u0440\u043f\u0441\u043a\u0438', - }, - 'sr-latn': { - 'bidi': False, - 'code': 'sr-latn', - 'name': 'Serbian Latin', - 'name_local': u'srpski (latinica)', - }, - 'sv': { - 'bidi': False, - 'code': 'sv', - 'name': 'Swedish', - 'name_local': u'Svenska', - }, - 'ta': { - 'bidi': False, - 'code': 'ta', - 'name': 'Tamil', - 'name_local': u'\u0ba4\u0bae\u0bbf\u0bb4\u0bcd', - }, - 'te': { - 'bidi': False, - 'code': 'te', - 'name': 'Telugu', - 'name_local': u'\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41', - }, - 'th': { - 'bidi': False, - 'code': 'th', - 'name': 'Thai', - 'name_local': u'Thai', - }, - 'tr': { - 'bidi': False, - 'code': 'tr', - 'name': 'Turkish', - 'name_local': u'T\xfcrk\xe7e', - }, - 'uk': { - 'bidi': False, - 'code': 'uk', - 'name': 'Ukrainian', - 'name_local': u'\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430', - }, - 'ur': { - 'bidi': False, - 'code': 'ur', - 'name': 'Urdu', - 'name_local': u'\u0627\u0631\u062f\u0648', - }, - 'vi': { - 'bidi': False, - 'code': 'vi', - 'name': 'Vietnamese', - 'name_local': u'Vietnamese', - }, - 'zh-cn': { - 'bidi': False, - 'code': 'zh-cn', - 'name': 'Simplified Chinese', - 'name_local': u'\u7b80\u4f53\u4e2d\u6587', - }, - 'zh-tw': { - 'bidi': False, - 'code': 'zh-tw', - 'name': 'Traditional Chinese', - 'name_local': u'\u7e41\u9ad4\u4e2d\u6587', - } -} diff --git a/lib/python2.7/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo deleted file mode 100644 index ea62125e6..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ar/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po deleted file mode 100644 index bfca8fd8d..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ar/LC_MESSAGES/django.po +++ /dev/null @@ -1,1168 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:06-0400\n" -"PO-Revision-Date: 2011-03-05 18:42+0000\n" -"Last-Translator: okhayat \n" -"Language-Team: Arabic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "العربيّة" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "الأذربيجانية" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "البلغاريّة" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "البنغاليّة" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "البوسنيّة" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "الكتلانيّة" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "التشيكيّة" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "الويلز" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "الدنماركيّة" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "الألمانيّة" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "اليونانيّة" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "الإنجليزيّة" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "الإنجليزيّة البريطانيّة" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "الإسبانيّة" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "الأسبانية الأرجنتينية" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "الأسبانية المكسيكية" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "الإستونيّة" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "الباسك" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "الÙارسيّة" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "الÙنلنديّة" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "الÙرنسيّة" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "الÙريزيّة" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "الإيرلنديّة" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "الجليقيّة" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "العبريّة" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "الهندية" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "الكرواتيّة" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "الهنغاريّة" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "الإندونيسيّة" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "الآيسلنديّة" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "الإيطاليّة" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "اليابانيّة" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "الجورجيّة" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "الخمر" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "الهنديّة (كنّادا)" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "الكوريّة" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "اللتوانيّة" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "اللاتÙيّة" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "المقدونيّة" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "المايالام" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "المنغوليّة" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "الهولنديّة" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "النرويجيّة" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "البوكمال نرويجيّة" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "النينورسك نرويجيّة" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "البنجابيّة" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "البولنديّة" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "البرتغاليّة" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "البرتغاليّة البرازيليّة" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "الرومانيّة" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "الروسيّة" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "السلوÙاكيّة" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "السلوÙانيّة" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "الألبانيّة" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "الصربيّة" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "اللاتينيّة الصربيّة" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "السويديّة" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "التاميل" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "التيلوغو" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "التايلنديّة" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "التركيّة" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "الأكرانيّة" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "الأوردو" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "الÙيتناميّة" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "الصينيّة المبسطة" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "الصينيّة التقليدية" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "أدخل قيمة صحيحة." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "يبدو أن هذا الرابط غير متوÙر." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "أدخل رابطاً صحيحاً." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "أدخل عنوان بريد إلكتروني صحيح." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "أدخل اختصار 'slug' صحيح يتكوّن من أحرÙØŒ أرقام، شرطات سÙلية وعاديّة." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "أدخل عنوان IPv4 صحيح." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "أدخل أرقاما Ùقط Ù…Ùصول بينها بÙواصل." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "تحقق من أن هذه القيمة هي %(limit_value)s (إنها %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "تحقق من أن تكون هذه القيمة أقل من %(limit_value)s أو مساوية لها." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "تحقق من أن تكون هذه القيمة أكثر من %(limit_value)s أو مساوية لها." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"تحقق من أن هذه القيمة تحتوي %(limit_value)d أحر٠على الأقل (عدد أحرÙها %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"تحقق من أن هذه القيمة مكونة من %(limit_value)d أحر٠كحد أقصى (عدد أحرÙها " -"الآن %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s يجب أن يكون Ù…Ùميّزاً مع %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "النموذج %(model_name)s والحقل %(field_label)s موجود مسبقاً." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "Ùˆ" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "القيمة %r ليست خياراً صالحاً." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "لا يمكن تعيين null كقيمة لهذا الحقل." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "لا يمكن ترك هذا الحقل Ùارغاً." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "حقل نوع: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "عدد صحيح" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "هذه القيمة يجب أن تكون رقما صحيحا." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "هذه القيمة يجب أن تكون إما True أو False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "ثنائي (إما True أو False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "سلسلة نص (%(max_length)s كحد أقصى)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "أرقام صحيحة Ù…Ùصولة بÙواصل" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "التاريخ (دون الوقت)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "أدخل تاريخا صحيحا بالنسق YYYY-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "تاريخ غير صحيح: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "أدخل تاريخ/وقت صحيح بالنسق YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "التاريخ (مع الوقت)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "يجب أن تكون هذه القيمة رقماً عشرياً." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "رقم عشري" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "عنوان بريد إلكتروني" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "مسار الملÙ" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "هذه القيمة يجب أن تكون عدد Ùاصلة عائمة." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "رقم Ùاصلة عائمة" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "عدد صحيح كبير (8 بايت)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "عنوان IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "يجب أن تكون هذه القيمة NoneØŒ أو True أو False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "ثنائي (إما True أو False أو None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "نص" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "وقت" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "أدخل توقيتاً صحيحاً بالنسق HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "رابط" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "نص XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "النموذج %(model)s ذو الحقل الرئيسي %(pk)r غير موجود." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "الحقل المرتبط (تم تحديد النوع ÙˆÙقاً للحقل المرتبط)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "علاقة واحد إلى واحد" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "علاقة متعدد إلى متعدد" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"اضغط زر التحكم \"Control\", أو \"Command\" على أجهزة Mac لاختيار أكثر من " -"واحد." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "هذا الحقل مطلوب." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "أدخل رقما صحيحا." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "أدخل رقماً." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "تحقق من أن تدخل %s أرقام لا أكثر." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "تحقق من أن تدخل %s خانات عشرية لا أكثر." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "تحقق من أن تدخل %s أرقام قبل الÙاصل العشري لا أكثر." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "أدخل تاريخاً صحيحاً." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "أدخل وقتاً صحيحاً." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "أدخل تاريخاً/وقتاً صحيحاً." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "لم يتم ارسال ملÙØŒ الرجاء التأكد من نوع ترميز الاستمارة." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "لم يتم إرسال اي ملÙ." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "المل٠الذي قمت بإرساله Ùارغ." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"تحقق من أن اسم المل٠يتكون بحد أقصى من %(max)d أحر٠(يتكون حالياً من %(length)" -"d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "رجاءً أرسل مل٠أو صح علامة صح عند مربع اختيار \"Ùارغ\"ØŒ وليس كلاهما." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"قم برÙع صورة صحيحة، المل٠الذي قمت برÙعه إما أنه ليس ملÙا لصورة أو أنه مل٠" -"معطوب." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "انتق خياراً صحيحاً. %(value)s ليس أحد الخيارات المتاحة." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "أدخل قائمة من القيم." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "الترتيب" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "احذÙ" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "رجاء صحّح بيانات %(field)s المتكررة." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "رجاء صحّح بيانات %(field)s المتكررة والتي يجب أن تكون Ù…Ùميّزة." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"رجاء صحّح بيانات %(field_name)s المتكررة والتي يجب أن تكون Ù…Ùميّزة لـ%(lookup)s " -"ÙÙŠ %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "رجاءً صحّح القيم المÙكرّرة أدناه." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "حقل foreign key المحدد لا يطابق الحقل الرئيسي له." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "انتق خياراً صحيحاً. اختيارك ليس أحد الخيارات المتاحة." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "انتق خياراً صحيحاً. %s ليس أحد الخيارات المتاحة." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "القيمة \"%s\" هي صحيحة للحقل المرجعي." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "حالياً" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "عدّل" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "تÙريغ" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "مجهول" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "نعم" - -#: forms/widgets.py:548 -msgid "No" -msgstr "لا" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "نعم,لا,ربما" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d بايت" -msgstr[1] "بايت واحد" -msgstr[2] "بايتان" -msgstr[3] "%(size)d بايتان" -msgstr[4] "%(size)d بايت" -msgstr[5] "%(size)d بايت" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s Ùƒ.ب" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s Ù….ب" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s ج.ب" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s ت.ب" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s ب.ب" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "Ù…" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "ص" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "Ù…" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "ص" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "منتص٠الليل" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "ظهراً" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "الاثنين" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "الثلاثاء" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "الأربعاء" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "الخميس" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "الجمعة" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "السبت" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "الأحد" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "إثنين" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "ثلاثاء" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "أربعاء" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "خميس" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "جمعة" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "سبت" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "أحد" - -#: utils/dates.py:18 -msgid "January" -msgstr "يناير" - -#: utils/dates.py:18 -msgid "February" -msgstr "Ùبراير" - -#: utils/dates.py:18 -msgid "March" -msgstr "مارس" - -#: utils/dates.py:18 -msgid "April" -msgstr "إبريل" - -#: utils/dates.py:18 -msgid "May" -msgstr "مايو" - -#: utils/dates.py:18 -msgid "June" -msgstr "يونيو" - -#: utils/dates.py:19 -msgid "July" -msgstr "يوليو" - -#: utils/dates.py:19 -msgid "August" -msgstr "أغسطس" - -#: utils/dates.py:19 -msgid "September" -msgstr "سبتمبر" - -#: utils/dates.py:19 -msgid "October" -msgstr "أكتوبر" - -#: utils/dates.py:19 -msgid "November" -msgstr "نوÙمبر" - -#: utils/dates.py:20 -msgid "December" -msgstr "ديسمبر" - -#: utils/dates.py:23 -msgid "jan" -msgstr "يناير" - -#: utils/dates.py:23 -msgid "feb" -msgstr "Ùبراير" - -#: utils/dates.py:23 -msgid "mar" -msgstr "مارس" - -#: utils/dates.py:23 -msgid "apr" -msgstr "إبريل" - -#: utils/dates.py:23 -msgid "may" -msgstr "مايو" - -#: utils/dates.py:23 -msgid "jun" -msgstr "يونيو" - -#: utils/dates.py:24 -msgid "jul" -msgstr "يوليو" - -#: utils/dates.py:24 -msgid "aug" -msgstr "أغسطس" - -#: utils/dates.py:24 -msgid "sep" -msgstr "سبتمبر" - -#: utils/dates.py:24 -msgid "oct" -msgstr "أكتوبر" - -#: utils/dates.py:24 -msgid "nov" -msgstr "نوÙمبر" - -#: utils/dates.py:24 -msgid "dec" -msgstr "ديسمبر" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "يناير" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Ùبراير" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "مارس" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "إبريل" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "مايو" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "يونيو" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "يوليو" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "أغسطس" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "سبتمبر" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "أكتوبر" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "نوÙمبر" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "ديسمبر" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "يناير" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Ùبراير" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "مارس" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "أبريل" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "مايو" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "يونيو" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "يوليو" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "أغسطس" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "سبتمبر" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "أكتوبر" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "نوÙمبر" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "ديسمبر" - -#: utils/text.py:136 -msgid "or" -msgstr "أو" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "ØŒ " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "سنة" -msgstr[1] "سنة" -msgstr[2] "سنتان" -msgstr[3] "سنوات" -msgstr[4] "سنة" -msgstr[5] "سنة" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "شهر" -msgstr[1] "شهر" -msgstr[2] "شهران" -msgstr[3] "أشهر" -msgstr[4] "شهر" -msgstr[5] "شهر" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "أسبوع" -msgstr[1] "أسبوع" -msgstr[2] "أسبوعان" -msgstr[3] "أسابيع" -msgstr[4] "أسبوع" -msgstr[5] "أسبوع" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "يوم" -msgstr[1] "يوم" -msgstr[2] "يومان" -msgstr[3] "أيام" -msgstr[4] "يوم" -msgstr[5] "يوم" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "ساعة" -msgstr[1] "ساعة" -msgstr[2] "ساعتان" -msgstr[3] "ساعات" -msgstr[4] "ساعة" -msgstr[5] "ساعة" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "دقيقة" -msgstr[1] "دقيقة" -msgstr[2] "دقيقتان" -msgstr[3] "دقائق" -msgstr[4] "دقيقة" -msgstr[5] "دقيقة" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "دقائق" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr "ØŒ %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j F Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j F YØŒ G:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "G:i:s" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s تم إنشاءه بنجاح." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s تم تحديثه بنجاح." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s تم حذÙÙ‡." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "لم تحدد السنة" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "لم تحدد الشهر" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "لم تحدد اليوم" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "لم تحدد الأسبوع" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "لا يوجد %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"التاريخ بالمستقبل %(verbose_name_plural)s غير متوÙر لأن قيمة %(class_name)s." -"allow_future هي False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "نسق تاريخ غير صحيح '%(datestr)s' محدد بالشكل '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "لم يعثر على أي %(verbose_name)s مطابقة لهذا الإستعلام" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "الصÙحة ليست 'الأخيرة'ØŒ ولا يمكن تحويل القيمة إلى رقم صحيح." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "صÙحة غير صحيحة (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "قائمة Ùارغة Ùˆ '%(class_name)s.allow_empty' قيمته False." diff --git a/lib/python2.7/site-packages/django/conf/locale/ar/__init__.py b/lib/python2.7/site-packages/django/conf/locale/ar/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/ar/formats.py b/lib/python2.7/site-packages/django/conf/locale/ar/formats.py deleted file mode 100644 index 3b47429ec..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ar/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j FØŒ Y' -TIME_FORMAT = 'g:i:s A' -# DATETIME_FORMAT = -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'dâ€/mâ€/Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo deleted file mode 100644 index 44d1aed46..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/az/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/az/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/az/LC_MESSAGES/django.po deleted file mode 100644 index 4eda29a22..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/az/LC_MESSAGES/django.po +++ /dev/null @@ -1,1127 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:06-0400\n" -"PO-Revision-Date: 2011-03-14 08:20+0000\n" -"Last-Translator: qaralama \n" -"Language-Team: Azerbaijani \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: az\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ÆrÉ™bcÉ™" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bolqarca" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Benqalca" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosniyaca" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalanca" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ÇexcÉ™" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "UelscÉ™" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Danimarkaca" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Almanca" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Yunanca" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Ä°ngiliscÉ™" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Britaniya Ä°ngiliscÉ™si" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Ä°spanca" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentina Ä°spancası" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estonca" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskca" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Farsca" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "FincÉ™" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Fransızca" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "FriscÉ™" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Ä°rlandca" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Qallik dili" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Ä°branicÉ™" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "HindcÉ™" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Xorvatca" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Macarca" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Ä°ndonezcÉ™" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Ä°slandca" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Ä°talyanca" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Yaponca" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "GürcücÉ™" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "KxmercÉ™" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada dili" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreyca" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Litva dili" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Latviya dili" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Makedonca" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayamca" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Monqolca" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Flamandca" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "NorveçcÉ™" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Bokmal NorveçcÉ™si" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Nynorsk NorveçcÉ™si" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "PancabicÉ™" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polyakca" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portuqalca" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Braziliya Portuqalcası" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rumınca" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Rusca" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovakca" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "SlovencÉ™" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanca" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "SerbcÉ™" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "SerbcÉ™ Latın" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Ä°sveçcÉ™" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "TamilcÉ™" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Teluqu dili" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Tayca" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "TürkcÉ™" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukraynaca" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vyetnamca" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "SadÉ™ləşdirilmiÅŸ ÇincÉ™" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "ÆnÉ™nÉ™vi ÇincÉ™" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Düzgün qiymÉ™t daxil edin." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "URL iÅŸlÉ™mir." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Düzgün URL daxil edin." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Düzgün e-poçt ünvanı daxil edin." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"HÉ™rflÉ™rdÉ™n, rÉ™qÉ™mlÉ™rdÉ™n, alt-xÉ™tlÉ™rdÉ™n vÉ™ ya defislÉ™rdÉ™n ibarÉ™t düzgün slaq " -"daxil edin." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Düzgün IPv4 ünvanı daxil edin." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "VergüllÉ™ ayırmaqla yalnız rÉ™qÉ™mlÉ™r daxil edin." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Æmin edin ki, bu qiymÉ™t %(limit_value)s-dir (bu %(show_value)s-dir)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"Bu qiymÉ™tin %(limit_value)s-ya bÉ™rabÉ™r vÉ™ ya ondan kiçik olduÄŸunu yoxlayın." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"Bu qiymÉ™tin %(limit_value)s-ya bÉ™rabÉ™r vÉ™ ya ondan böyük olduÄŸunu yoxlayın." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Bu qiymÉ™tin É™n azı %(limit_value)d simvoldan ibarÉ™t olduÄŸunu yoxlayın (burda " -"%(show_value)d simvol var)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Bu qiymÉ™tin É™n çoxu %(limit_value)d simvoldan ibarÉ™t olduÄŸunu yoxlayın " -"(burda %(show_value)d simvol var)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s %(date_field)s %(lookup)s tarixinÉ™ görÉ™ özÉ™l olmalıdır." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s bu %(field_label)s sahÉ™ ilÉ™ artıq mövcuddur." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "vÉ™" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "%r qiymÉ™ti düzgün seçim deyil." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Bu sahÉ™ boÅŸ qala bilmÉ™z." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Bu sahÉ™ aÄŸ qala bilmÉ™z." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "SahÉ™nin tipi: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Tam É™dÉ™d" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Bu qiymÉ™t tam É™dÉ™d olmalıdır." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Bu qiymÉ™t ya DoÄŸru, ya da Yalan olmalıdır." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Bul (ya DoÄŸru, ya Yalan)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "SÉ™tir (%(max_length)s simvola kimi)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "VergüllÉ™ ayrılmış tam É™dÉ™dlÉ™r" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Tarix (saatsız)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Ä°Ä°Ä°Ä°-AA-GG formatında düzgün tarix daxil edin." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Düzgün tarix deyil: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Ä°Ä°Ä°Ä°-AA-GG SS-DD[:ss[.uuuuuu]] formatında düzgün tarix/vaxt daxil edin." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Tarix (vaxt ilÉ™)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Bu rasional É™dÉ™d olmalıdır." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Rasional É™dÉ™d" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-poçt ünvanı" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Faylın ünvanı" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "" - -#: forms/widgets.py:548 -msgid "No" -msgstr "" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "" - -#: utils/dates.py:18 -msgid "January" -msgstr "" - -#: utils/dates.py:18 -msgid "February" -msgstr "" - -#: utils/dates.py:18 -msgid "March" -msgstr "" - -#: utils/dates.py:18 -msgid "April" -msgstr "" - -#: utils/dates.py:18 -msgid "May" -msgstr "" - -#: utils/dates.py:18 -msgid "June" -msgstr "" - -#: utils/dates.py:19 -msgid "July" -msgstr "" - -#: utils/dates.py:19 -msgid "August" -msgstr "" - -#: utils/dates.py:19 -msgid "September" -msgstr "" - -#: utils/dates.py:19 -msgid "October" -msgstr "" - -#: utils/dates.py:19 -msgid "November" -msgstr "" - -#: utils/dates.py:20 -msgid "December" -msgstr "" - -#: utils/dates.py:23 -msgid "jan" -msgstr "" - -#: utils/dates.py:23 -msgid "feb" -msgstr "" - -#: utils/dates.py:23 -msgid "mar" -msgstr "" - -#: utils/dates.py:23 -msgid "apr" -msgstr "" - -#: utils/dates.py:23 -msgid "may" -msgstr "" - -#: utils/dates.py:23 -msgid "jun" -msgstr "" - -#: utils/dates.py:24 -msgid "jul" -msgstr "" - -#: utils/dates.py:24 -msgid "aug" -msgstr "" - -#: utils/dates.py:24 -msgid "sep" -msgstr "" - -#: utils/dates.py:24 -msgid "oct" -msgstr "" - -#: utils/dates.py:24 -msgid "nov" -msgstr "" - -#: utils/dates.py:24 -msgid "dec" -msgstr "" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "" - -#: utils/text.py:136 -msgid "or" -msgstr "" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr "" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo deleted file mode 100644 index 71e2a5ce9..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/bg/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/bg/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/bg/LC_MESSAGES/django.po deleted file mode 100644 index 5573e866a..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/bg/LC_MESSAGES/django.po +++ /dev/null @@ -1,1143 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:06-0400\n" -"PO-Revision-Date: 2011-03-12 06:14+0000\n" -"Last-Translator: tlubenov \n" -"Language-Team: Bulgarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "арабÑки" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "ÐзербайджанÑки" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "българÑки" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "бенгалÑки" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "боÑанÑки" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "каталонÑки" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "чешки" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "уелÑки" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "датÑки" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "немÑки" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "гръцки" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "английÑки" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "британÑки английÑки" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "иÑпанÑки" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "каÑтилÑки" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "МекÑиканÑки иÑпанÑки" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "ЕÑтонÑки" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "БаÑки" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "перÑийÑки" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "финландÑки" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "френÑки" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "ФризийÑки" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ирландÑки" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "галицейÑки" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "еврит" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "хинди" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "хърватÑки" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "унгарÑки" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "ИндонезийÑки" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "иÑландÑки" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "италианÑки" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ÑпонÑки" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "грузинÑки" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "КхмерÑки" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "каннада (индийÑки)" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "корейÑки" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "литовÑки" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "латвийÑки" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "македонÑки" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "МалаÑлам" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "МонголÑки" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "холандÑки" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "норвежки" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Ðорвежки букмол" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Ðорвежки Ñъвременен" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "ПенджабÑки" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "полÑки" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "португалÑки" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "БразилÑки португалÑки" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "румънÑки" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "руÑки" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Ñловашки" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "ÑловенÑки" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "албанÑки" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "ÑръбÑки" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "ÑръбÑки латинÑи" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "шведÑки" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "тамил (индийÑки)" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "телугу (индийÑки)" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "тай" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "турÑки" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "украинÑки" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Урду" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "виетнамÑки" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "китайÑки" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "традиционен китайÑки" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Въведете валидна ÑтойноÑÑ‚. " - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Този URL май е Ñчупен линк. " - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Въведете валиден URL. " - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Въведете валиден e-mail адреÑ. " - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Въведете валиден 'slug' Ñъдържащ букви, цифри, тирета или долни тирета." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Въведете валиден IPv4 адреÑ." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Въведете Ñамо цифри, разделени ÑÑŠÑ Ð·Ð°Ð¿ÐµÑ‚Ð°Ñ. " - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Уверете Ñе, че тази ÑтойноÑÑ‚ е %(limit_value)s (Ñ‚Ñ Ðµ %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Уверете Ñе, че тази ÑтойноÑÑ‚ е по-малка или равна на %(limit_value)s ." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"Уверете Ñе, че тази ÑтойноÑÑ‚ е по-голÑма или равна на %(limit_value)s ." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Уверете Ñе, че тази ÑтойноÑÑ‚ е най-малко %(limit_value)d знаци (има %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Уверете Ñе, че тази ÑтойноÑÑ‚ е най-много %(limit_value)d знаци (има %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s Ñ‚Ñ€Ñбва да Ñа уникални за %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s Ñ Ñ‚Ð¾Ð·Ð¸ %(field_label)s вече ÑъщеÑтвува." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "и" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "СтойноÑтта %r не е валиден избор." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Това поле не може да има празна ÑтойноÑÑ‚." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Това поле не може да е празно." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Поле от тип: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "ЦÑло чиÑло" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Тази ÑтойноÑÑ‚ Ñ‚Ñ€Ñбва да бъде цÑло чиÑло" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Тази ÑтойноÑÑ‚ Ñ‚Ñ€Ñбва да бъде True или False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (True или False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Символен низ (до %(max_length)s Ñимвола)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Цели чиÑла, разделени Ñ Ð·Ð°Ð¿ÐµÑ‚Ð°Ñ" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Дата (без чаÑ)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Въведете валидна дата в формат ГГГГ-ММ-ДД." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ðевалидна дата: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Въведете валидна дата/време във YYYY-MM-DD HH:MM[:ss[.uuuuuu]] формат." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Дата (и чаÑ)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Тази ÑтойноÑÑ‚ Ñ‚Ñ€Ñбва да бъде чиÑло Ñ Ð¿Ð»Ð°Ð²Ð°Ñ‰Ð° запетаÑ." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "ДеÑетична дроб" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mail адреÑ" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Път към файл" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Тази ÑтойноÑÑ‚ Ñ‚Ñ€Ñбва да е чиÑло Ñ Ð¿Ð»Ð°Ð²Ð°Ñ‰Ð° запетаÑ." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "ЧиÑло Ñ Ð¿Ð»Ð°Ð²Ð°Ñ‰Ð° запетаÑ" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Big (8 байта) цÑло чиÑло" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP адреÑ" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Тази ÑтойноÑÑ‚ Ñ‚Ñ€Ñбва да бъде None, True, или False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (Възможните ÑтойноÑти Ñа True, False или None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ТекÑÑ‚" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Време" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Въведете валидно време в HH:MM[:ss[uuuuuu]] формат." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML текÑÑ‚" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Моделът %(model)s Ñ pk %(pk)r не ÑъщеÑтвува." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Външен ключ (тип определен от Ñвързаното поле)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Едно-към-едно връзка" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "много-към-много връзка" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Задръжте натиÑнат клавиша \"Control\" (или \"Command\" на Mac-а) за да " -"направите повече от един избор. " - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Това поле е задължително." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Въведете цÑло чиÑло. " - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "ВъведечиÑло." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Уверете Ñи че не Ñте въвели повече от %s цифри." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Уверете Ñе, че нÑма повече от %s знака Ñлед запетаÑта." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Уверете Ñе, че нÑма повече от %s цифри преди деÑетичната запетаÑ." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Въведете валидна дата. " - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Въведете валиден чаÑ." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Въведете валидна дата / чаÑ. " - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Ðе е получен файл. Проверете типът кодиране на формата. " - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "ÐÑма изпратен фаил." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "КачениÑÑ‚ файл е празен. " - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Уверете Ñе, че файловото име е най-много %(max)d знаци (има %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "МолÑ, или пратете файл или маркирайте полето за изчиÑтване, не двете." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Качете валидна картинка. Файлът, който Ñте качили или не е картинка или е " -"развалена. " - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Ðаправете валиден избор. %(value)s не е един от възможните избори." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Въведете ÑпиÑък от ÑтойноÑти" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ред" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Изтрий" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "МолÑ, коригирайте дублираните данни за %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"МолÑ, коригирайте дублираните данни за %(field)s, които Ñ‚Ñ€Ñбва да Ñа " -"уникални." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"МолÑ, коригирайте дублиранитe данни за %(field_name)s които Ñ‚Ñ€Ñбва да Ñа " -"уникални за %(lookup)s в %(date_field)s ." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Моле коригирайте повтарÑщите Ñе ÑтойноÑти долу." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Инлайн външен ключ не Ñъвпада Ñ Ñ€Ð¾Ð´Ð¸Ñ‚ÐµÐ»Ñката инÑÑ‚Ð°Ð½Ñ†Ð¸Ñ Ð½Ð° първичен ключ." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Ðаправете валиден избор. Този не е един от възможните избори. " - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Ðаправете валиден избор. %s не е един от възможните избори. " - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" не е валидна ÑтойноÑÑ‚ за първичен ключ." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Сега" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Промени" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ИзчиÑти" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "ÐеизвеÑтно" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Да" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ðе" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "да,не,може-би" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d, байт" -msgstr[1] "%(size)d, байта" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s ТБ" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "преди обÑд" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "Ñлед обÑд" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "полунощ" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "обÑд" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "понеделник" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "вторник" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "ÑÑ€Ñда" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "четвъртък" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "петък" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Ñъбота" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "неделÑ" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Пон" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Вто" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "СрÑ" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Чет" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Пет" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Съб" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Ðед" - -#: utils/dates.py:18 -msgid "January" -msgstr "Януари" - -#: utils/dates.py:18 -msgid "February" -msgstr "Февруари" - -#: utils/dates.py:18 -msgid "March" -msgstr "Март" - -#: utils/dates.py:18 -msgid "April" -msgstr "Ðприл" - -#: utils/dates.py:18 -msgid "May" -msgstr "Май" - -#: utils/dates.py:18 -msgid "June" -msgstr "Юни" - -#: utils/dates.py:19 -msgid "July" -msgstr "Юли" - -#: utils/dates.py:19 -msgid "August" -msgstr "ÐвгуÑÑ‚" - -#: utils/dates.py:19 -msgid "September" -msgstr "Септември" - -#: utils/dates.py:19 -msgid "October" -msgstr "Октомври" - -#: utils/dates.py:19 -msgid "November" -msgstr "Ðоември" - -#: utils/dates.py:20 -msgid "December" -msgstr "Декември" - -#: utils/dates.py:23 -msgid "jan" -msgstr "Ñну" - -#: utils/dates.py:23 -msgid "feb" -msgstr "фев" - -#: utils/dates.py:23 -msgid "mar" -msgstr "мар" - -#: utils/dates.py:23 -msgid "apr" -msgstr "апр" - -#: utils/dates.py:23 -msgid "may" -msgstr "май" - -#: utils/dates.py:23 -msgid "jun" -msgstr "юни" - -#: utils/dates.py:24 -msgid "jul" -msgstr "юли" - -#: utils/dates.py:24 -msgid "aug" -msgstr "авг" - -#: utils/dates.py:24 -msgid "sep" -msgstr "Ñеп" - -#: utils/dates.py:24 -msgid "oct" -msgstr "окт" - -#: utils/dates.py:24 -msgid "nov" -msgstr "ное" - -#: utils/dates.py:24 -msgid "dec" -msgstr "дек" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Яну." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Фев." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Март" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Ðприл" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Май" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Юни" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Юли" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Ðвг." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Септ." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Окт." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Ðое." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Дек." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Януари" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Февруари" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Март" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Ðприл" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Май" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Юни" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Юли" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "ÐвгуÑÑ‚" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Септември" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Октомври" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Ðоември" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Декември" - -#: utils/text.py:136 -msgid "or" -msgstr "или" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "година" -msgstr[1] "години" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "меÑец" -msgstr[1] "меÑеци" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "Ñедмица" -msgstr[1] "Ñедмици" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "ден" -msgstr[1] "дни" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "чаÑ" -msgstr[1] "чаÑове" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "минута" -msgstr[1] "минути" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "минути" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j N, Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j N, Y, P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "Обектът %(verbose_name)s бе уÑпешно Ñъздаден. " - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "Обектът %(verbose_name)s бе уÑпешно актуализиран." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "Обектът %(verbose_name)s бе затрит." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Ðе е поÑочена година" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Ðе е поÑочен меÑец" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Ðе е поÑочен ден" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Ðе е поÑочена Ñедмица" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "ÐÑма %(verbose_name_plural)s на разположение" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Бъдещo %(verbose_name_plural)s не е налице, тъй като %(class_name)s." -"allow_future е лъжа." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Ðевалидна дата '%(datestr)s' поÑочен формат '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "ÐÑма %(verbose_name)s удовлетворÑващи заÑвката" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Страницата не е 'last', или не може да Ñе пробразува в int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Ðевалидна Ñтраница (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Празен ÑпиÑък и '%(class_name)s.allow_empty' е False." diff --git a/lib/python2.7/site-packages/django/conf/locale/bg/__init__.py b/lib/python2.7/site-packages/django/conf/locale/bg/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/bg/formats.py b/lib/python2.7/site-packages/django/conf/locale/bg/formats.py deleted file mode 100644 index 3dc470497..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/bg/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'd F Y' -TIME_FORMAT = 'H:i:s' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'd.m.Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = u' ' # Non-breaking space -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo deleted file mode 100644 index 0f7198cb2..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/bn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po deleted file mode 100644 index f6c94eb91..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/bn/LC_MESSAGES/django.po +++ /dev/null @@ -1,1129 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:06-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Bengali <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "আরবী" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "বà§à¦²à¦—েরিয়ান" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "বাংলা" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "কà§à¦¯à¦¾à¦Ÿà¦¾à¦²à¦¾à¦¨" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "চেক" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "ওয়েলà§à¦¸" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "ডà§à¦¯à¦¾à¦¨à¦¿à¦¶" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "জারà§à¦®à¦¾à¦¨" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "গà§à¦°à¦¿à¦•" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ইংলিশ" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "সà§à¦ªà§à¦¯à¦¾à¦¨à¦¿à¦¶" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "à¦à¦¸à§à¦¤à§‡à¦¾à¦¨à¦¿à§Ÿà¦¾à¦¨" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "বাসà§à¦•" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "ফারসি" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ফিনিশ" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "ফà§à¦°à§‡à¦žà§à¦š" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "আইরিশ" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "গà§à¦¯à¦¾à¦²à¦¿à¦¸à¦¿à§Ÿà¦¾à¦¨" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "হিবà§à¦°à§" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "কà§à¦°à§‡à¦¾à§Ÿà§‡à¦¶à¦¿à§Ÿà¦¾à¦¨" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "হাঙà§à¦—েরিয়ান" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "আইসলà§à¦¯à¦¾à¦¨à§à¦¡à¦¿à¦•" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ইটালিয়ান" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "জাপানিজ" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "জরà§à¦œà¦¿à§Ÿà¦¾à¦¨" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "খমার" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "কানà§à¦¨à¦¾à§œà¦¾" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "কোরিয়ান" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "লিথà§à§Ÿà¦¾à¦¨à¦¿à§Ÿà¦¾à¦¨" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "লাটভিয়ান" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "মà§à¦¯à¦¾à¦¸à¦¾à¦¡à§‡à¦¾à¦¨à¦¿à§Ÿà¦¾à¦¨" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "ডাচ" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "নরওয়েজিয়ান" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "পোলিশ" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "বà§à¦°à¦¾à¦œà¦¿à¦²à¦¿à§Ÿà¦¾à¦¨ পরà§à¦¤à§à¦—ীজ" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "রোমানিয়ান" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "রাশান" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "সà§à¦²à§‡à¦¾à¦­à¦¾à¦•" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "সà§à¦²à§‡à¦¾à¦­à§‡à¦¨à¦¿à§Ÿà¦¾à¦¨" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "সারà§à¦¬à¦¿à§Ÿà¦¾à¦¨" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "সà§à¦‡à¦¡à¦¿à¦¶" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "তামিল" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "তেলেগà§" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "তà§à¦°à§à¦•à¦¿" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ইউকà§à¦°à§‡à¦¨à¦¿à§Ÿà¦¾à¦¨" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "সরলীকৃত চাইনীজ" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "পà§à¦°à¦šà¦²à¦¿à¦¤ চাইনীজ" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "à¦à¦•à¦Ÿà¦¿ বৈধ মান দিন।" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "à¦à¦‡ URL টি সঠিক নয়।" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "বৈধ URL দিন" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "বৈধ ইমেইল ঠিকানা দিন।" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"বৈধ ’slug' পà§à¦°à¦¬à§‡à¦¶ করান যাতে শà§à¦§à§à¦®à¦¾à¦¤à§à¦° ইংরেজী বরà§à¦£, অঙà§à¦•, আনà§à¦¡à¦¾à¦°à¦¸à§à¦•à§‡à¦¾à¦° অথবা হাইফেন " -"রয়েছে।" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "à¦à¦•à¦Ÿà¦¿ বৈধ IPv4 ঠিকানা দিন।" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "শà§à¦§à§à¦®à¦¾à¦¤à§à¦° কমা দিয়ে সংখà§à¦¯à¦¾ দিন।" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(field_label)s সহ %(model_name)s আরেকটি রয়েছে।" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "à¦à¦¬à¦‚" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "à¦à¦° মান null হতে পারবে না।" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "ইনà§à¦Ÿà¦¿à¦œà¦¾à¦°" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "à¦à¦° মান অবশà§à¦¯à¦‡ ইনà§à¦Ÿà¦¿à¦œà¦¾à¦° হতে হবে।" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "à¦à¦° মান অবশà§à¦¯à¦‡ True অথবা False হতে হবে।" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "বà§à¦²à¦¿à§Ÿà¦¾à¦¨ (হয় True অথবা False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "সà§à¦Ÿà§à¦°à¦¿à¦‚ (সরà§à¦¬à§‡à¦¾à¦šà§à¦š %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "কমা দিয়ে আলাদা করা ইনà§à¦Ÿà¦¿à¦œà¦¾à¦°" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "তারিখ (সময় বাদে)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "à¦à¦•à¦Ÿà¦¿ বৈধ তারিখ দিন (ফরমà§à¦¯à¦¾à¦Ÿ YYYY-MM-DD)।" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "অবৈধ তারিখঃ %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "বৈধ তারিখ/সময় পà§à¦°à¦¬à§‡à¦¶ করান (ফরমà§à¦¯à¦¾à¦Ÿ YYYY-MM-DD HH:MM[:ss[.uuuuuu]])।" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "তারিখ (সময় সহ)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "à¦à¦° মান অবশà§à¦¯à¦‡ ডেসিমাল সংখà§à¦¯à¦¾ হতে হবে।" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "দশমিক সংখà§à¦¯à¦¾" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ইমেইল ঠিকানা" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "ফাইল পথ" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "ফà§à¦²à§‡à¦¾à¦Ÿà¦¿à¦‚ পয়েনà§à¦Ÿ সংখà§à¦¯à¦¾" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "আইপি ঠিকানা" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "à¦à¦° মান অবশà§à¦¯à¦‡ True, False অথবা None হতে হবে।" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "বà§à¦²à¦¿à§Ÿà¦¾à¦¨ (হয় True, False অথবা None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "টেকà§à¦¸à¦Ÿ" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "সময়" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "বৈধ সময় পà§à¦°à¦¬à§‡à¦¶ করান (ফরমà§à¦¯à¦¾à¦Ÿ HH:MM[:ss[:uuuuuu]])।" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "ইউআরà¦à¦² (URL)" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML টেকà§à¦¸à¦Ÿ" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "à¦à¦•à¦¾à¦§à¦¿à¦• বাছাই করতে \"কনà§à¦Ÿà§à¦°à§‡à¦¾à¦²\", অথবা মà§à¦¯à¦¾à¦•à§‡ \"কমানà§à¦¡\", চেপে ধরà§à¦¨à¥¤" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "à¦à¦Ÿà¦¿ আবশà§à¦¯à¦•à¥¤" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "à¦à¦•à¦Ÿà¦¿ পূরà§à¦£à¦¸à¦‚খà§à¦¯à¦¾ দিন" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "à¦à¦•à¦Ÿà¦¿ সংখà§à¦¯à¦¾ পà§à¦°à¦¬à§‡à¦¶ করান।" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "নিশà§à¦šà¦¿à¦¤ করà§à¦¨ যে, à¦à¦–ানে %s সংখà§à¦¯à¦• দশমিক অঙà§à¦• রয়েছে।" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "নিশà§à¦šà¦¿à¦¤ করà§à¦¨ যে, à¦à¦–ানে %s -à¦à¦° বেশি দশমিক সংখà§à¦¯à¦¾ নেই।" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "নিশà§à¦šà¦¿à¦¤ করà§à¦¨ যে, à¦à¦–ানে %s -à¦à¦° বেশি দশমিক সংখà§à¦¯à¦¾ নেই।" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "বৈধ তারিখ দিন।" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "বৈধ সময় দিন।" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "বৈধ ডারিখ/সময় দিন।" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "কোন ফাইল দেয়া হয়নি। ফরà§à¦®à§‡à¦° à¦à¦¨à¦•à§‡à¦¾à¦¡à¦¿à¦‚ ঠিক আছে কিনা দেখà§à¦¨à¥¤" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "কোন ফাইল দেয়া হয়নি।" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "ফাইলটি খালি।" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"সঠিক ছবি আপলোড করà§à¦¨à¥¤ যে ফাইলটি আপলোড করা হয়েছে তা হয় ছবি নয় অথবা নষà§à¦Ÿ হয়ে " -"যাওয়া ছবি।" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "%(value)s বৈধ নয়। অনà§à¦—à§à¦°à¦¹ করে আরেকটি সিলেকà§à¦Ÿ করà§à¦¨à¥¤" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "কয়েকটি মানের তালিকা দিন।" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "কà§à¦°à¦®" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "মà§à¦›à§à¦¨" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "à¦à¦Ÿà¦¿ বৈধ নয়। অনà§à¦—à§à¦°à¦¹ করে আরেকটি সিলেকà§à¦Ÿ করà§à¦¨à¥¤" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "%s বৈধ নয়। অনà§à¦—à§à¦°à¦¹ করে আরেকটি সিলেকà§à¦Ÿ করà§à¦¨à¥¤" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "পরিবরà§à¦¤à¦¨" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "অজানা" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "হà§à¦¯à¦¾à¦" - -#: forms/widgets.py:548 -msgid "No" -msgstr "না" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "হà§à¦¯à¦¾à¦,না,হয়তো" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d বাইট" -msgstr[1] "%(size)d বাইট" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "অপরাহà§à¦¨" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "পূরà§à¦¬à¦¾à¦¹à§à¦¨" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "অপরাহà§à¦¨" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "পূরà§à¦¬à¦¾à¦¹à§à¦¨" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "মধà§à¦¯à¦°à¦¾à¦¤" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "দà§à¦ªà§à¦°" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "সোমবার" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "মঙà§à¦—লবার" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "বà§à¦§à¦¬à¦¾à¦°" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "বৃহঃ" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "শà§à¦•à§à¦°à¦¬à¦¾à¦°" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "শনিবার" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "রবিবার" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "সোম" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "মঙà§à¦—ল" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "বà§à¦§" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "বৃহঃ" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "শà§à¦•à§à¦°" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "শনি" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "রবি" - -#: utils/dates.py:18 -msgid "January" -msgstr "জানà§à§Ÿà¦¾à¦°à¦¿" - -#: utils/dates.py:18 -msgid "February" -msgstr "ফেবà§à¦°à§à§Ÿà¦¾à¦°à¦¿" - -#: utils/dates.py:18 -msgid "March" -msgstr "মারà§à¦š" - -#: utils/dates.py:18 -msgid "April" -msgstr "à¦à¦ªà§à¦°à¦¿à¦²" - -#: utils/dates.py:18 -msgid "May" -msgstr "মে" - -#: utils/dates.py:18 -msgid "June" -msgstr "জà§à¦¨" - -#: utils/dates.py:19 -msgid "July" -msgstr "জà§à¦²à¦¾à¦‡" - -#: utils/dates.py:19 -msgid "August" -msgstr "আগসà§à¦Ÿ" - -#: utils/dates.py:19 -msgid "September" -msgstr "সেপà§à¦Ÿà§‡à¦®à§à¦¬à¦°" - -#: utils/dates.py:19 -msgid "October" -msgstr "অকà§à¦Ÿà§‡à¦¾à¦¬à¦°" - -#: utils/dates.py:19 -msgid "November" -msgstr "নভেমà§à¦¬à¦°" - -#: utils/dates.py:20 -msgid "December" -msgstr "ডিসেমà§à¦¬à¦°" - -#: utils/dates.py:23 -msgid "jan" -msgstr "জান." - -#: utils/dates.py:23 -msgid "feb" -msgstr "ফেব." - -#: utils/dates.py:23 -msgid "mar" -msgstr "মারà§à¦š" - -#: utils/dates.py:23 -msgid "apr" -msgstr "à¦à¦ªà§à¦°à¦¿." - -#: utils/dates.py:23 -msgid "may" -msgstr "মে" - -#: utils/dates.py:23 -msgid "jun" -msgstr "জà§à¦¨" - -#: utils/dates.py:24 -msgid "jul" -msgstr "জà§à¦²." - -#: utils/dates.py:24 -msgid "aug" -msgstr "আগ." - -#: utils/dates.py:24 -msgid "sep" -msgstr "সেপà§à¦Ÿà§‡." - -#: utils/dates.py:24 -msgid "oct" -msgstr "অকà§à¦Ÿà§‡à¦¾." - -#: utils/dates.py:24 -msgid "nov" -msgstr "নভে." - -#: utils/dates.py:24 -msgid "dec" -msgstr "ডিসে." - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "" - -#: utils/text.py:136 -msgid "or" -msgstr "অথবা" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "বছর" -msgstr[1] "বছর" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "মাস" -msgstr[1] "মাস" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "সপà§à¦¤à¦¾à¦¹" -msgstr[1] "সপà§à¦¤à¦¾à¦¹" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "দিন" -msgstr[1] "দিন" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "ঘনà§à¦Ÿà¦¾" -msgstr[1] "ঘনà§à¦Ÿà¦¾" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "মিনিট" -msgstr[1] "মিনিট" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "মিনিট" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "N j, Y, P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s তৈরী সফল হয়েছে।" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s হালনাগাদ সফল হয়েছে।" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s মà§à¦›à§‡ ফেলা হয়েছে।" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/bn/__init__.py b/lib/python2.7/site-packages/django/conf/locale/bn/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/bn/formats.py b/lib/python2.7/site-packages/django/conf/locale/bn/formats.py deleted file mode 100644 index a99bea153..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/bn/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F, Y' -TIME_FORMAT = 'g:i:s A' -# DATETIME_FORMAT = -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j M, Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo deleted file mode 100644 index 7c92eb8d5..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/bs/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/bs/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/bs/LC_MESSAGES/django.po deleted file mode 100644 index 9bb913677..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/bs/LC_MESSAGES/django.po +++ /dev/null @@ -1,1157 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 20:57+0100\n" -"PO-Revision-Date: 2011-03-20 16:35+0000\n" -"Last-Translator: fdupanovic \n" -"Language-Team: Bosnian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "arapski" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "bugarski" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengalski" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosanski" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "katalonski" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ÄeÅ¡ki" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "velÅ¡ki" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "danski" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "njemaÄki" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "grÄki" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "engleski" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Å¡panski" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Nicaraguan Spanish" -msgstr "" - -#: conf/global_settings.py:61 -msgid "Estonian" -msgstr "estonski" - -#: conf/global_settings.py:62 -msgid "Basque" -msgstr "baskijski" - -#: conf/global_settings.py:63 -msgid "Persian" -msgstr "persijski" - -#: conf/global_settings.py:64 -msgid "Finnish" -msgstr "finski" - -#: conf/global_settings.py:65 -msgid "French" -msgstr "francuski" - -#: conf/global_settings.py:66 -msgid "Frisian" -msgstr "friÅ¡anski" - -#: conf/global_settings.py:67 -msgid "Irish" -msgstr "irski" - -#: conf/global_settings.py:68 -msgid "Galician" -msgstr "galski" - -#: conf/global_settings.py:69 -msgid "Hebrew" -msgstr "hebrejski" - -#: conf/global_settings.py:70 -msgid "Hindi" -msgstr "hindi" - -#: conf/global_settings.py:71 -msgid "Croatian" -msgstr "hrvatski" - -#: conf/global_settings.py:72 -msgid "Hungarian" -msgstr "maÄ‘arski" - -#: conf/global_settings.py:73 -msgid "Indonesian" -msgstr "" - -#: conf/global_settings.py:74 -msgid "Icelandic" -msgstr "islandski" - -#: conf/global_settings.py:75 -msgid "Italian" -msgstr "italijanski" - -#: conf/global_settings.py:76 -msgid "Japanese" -msgstr "japanski" - -#: conf/global_settings.py:77 -msgid "Georgian" -msgstr "gruzijski" - -#: conf/global_settings.py:78 -msgid "Khmer" -msgstr "kamboÄ‘anski" - -#: conf/global_settings.py:79 -msgid "Kannada" -msgstr "kanada" - -#: conf/global_settings.py:80 -msgid "Korean" -msgstr "korejski" - -#: conf/global_settings.py:81 -msgid "Lithuanian" -msgstr "litvanski" - -#: conf/global_settings.py:82 -msgid "Latvian" -msgstr "latvijski" - -#: conf/global_settings.py:83 -msgid "Macedonian" -msgstr "makedonski" - -#: conf/global_settings.py:84 -msgid "Malayalam" -msgstr "" - -#: conf/global_settings.py:85 -msgid "Mongolian" -msgstr "" - -#: conf/global_settings.py:86 -msgid "Dutch" -msgstr "holandski" - -#: conf/global_settings.py:87 -msgid "Norwegian" -msgstr "norveÅ¡ki" - -#: conf/global_settings.py:88 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:90 -msgid "Punjabi" -msgstr "" - -#: conf/global_settings.py:91 -msgid "Polish" -msgstr "poljski" - -#: conf/global_settings.py:92 -msgid "Portuguese" -msgstr "portugalski" - -#: conf/global_settings.py:93 -msgid "Brazilian Portuguese" -msgstr "brazilski portugalski" - -#: conf/global_settings.py:94 -msgid "Romanian" -msgstr "rumunski" - -#: conf/global_settings.py:95 -msgid "Russian" -msgstr "ruski" - -#: conf/global_settings.py:96 -msgid "Slovak" -msgstr "slovaÄki" - -#: conf/global_settings.py:97 -msgid "Slovenian" -msgstr "slovenaÄki" - -#: conf/global_settings.py:98 -msgid "Albanian" -msgstr "albanski" - -#: conf/global_settings.py:99 -msgid "Serbian" -msgstr "srpski" - -#: conf/global_settings.py:100 -msgid "Serbian Latin" -msgstr "srpski latinski" - -#: conf/global_settings.py:101 -msgid "Swedish" -msgstr "Å¡vedski" - -#: conf/global_settings.py:102 -msgid "Tamil" -msgstr "tamilski" - -#: conf/global_settings.py:103 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:104 -msgid "Thai" -msgstr "tajlandski" - -#: conf/global_settings.py:105 -msgid "Turkish" -msgstr "turski" - -#: conf/global_settings.py:106 -msgid "Ukrainian" -msgstr "ukrajinski" - -#: conf/global_settings.py:107 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Vietnamese" -msgstr "vijetnamežanski" - -#: conf/global_settings.py:109 -msgid "Simplified Chinese" -msgstr "novokineski" - -#: conf/global_settings.py:110 -msgid "Traditional Chinese" -msgstr "starokineski" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Unesite ispravnu vrijednost." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Ovaj URL izgleda ne vodi nikuda." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Unesite ispravan URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Unesite važeću email adresu." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Unesite ispravan „slug“, koji se sastoji od slova, brojki, donjih crta ili " -"crtica." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Unesite ispravnu IPv4 adresu." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Unesite samo brojke razdvojene zapetama." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Pobrinite se da je ova vrijednost %(limit_value)s (trenutno je %(show_value)" -"s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Ova vrijednost mora da bude manja ili jednaka %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Ova vrijednost mora biti veća ili jednaka %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Pobrinite se da ova vrijednost ima najmanje %(limit_value)d znamenki " -"(trenutno ima %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Pobrinite se da ova vrijednost ima najviÅ¡e %(limit_value)d znamenki (ima %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s mora da bude jedinstven za %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s sa ovom vrijednošću %(field_label)s već postoji." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "i" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Vrijednost %r nije dozvoljen izbor." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Ovo polje ne može ostati prazno." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Ovo polje ne može biti prazno." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Polje tipa: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Cijeo broj" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Ova vrijednost mora biti cijelobrojna." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Ova vrijednost mora biti True ili False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Bulova vrijednost (True ili False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "String (najviÅ¡e %(max_length)s znakova)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Cijeli brojevi razdvojeni zapetama" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Datum (bez vremena)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Unesite ispravan datum u formatu GGGG-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Neispravan datum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Unesite ispravan datum/vrijeme u formatu GGGG-MM-DD ČČ:MM[:ss[.uuuuuu]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Datum (sa vremenom)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Ova vrijednost mora biti decimalni broj" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Decimalni broj" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Email adresa" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Putanja fajla" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Ova vrijednost mora biti broj sa klizećom zapetom" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Broj sa pokrenom zapetom" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Big (8 bajtni) integer" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP adresa" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Ova vrijednost mora biti ili None, ili True, ili False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Bulova vrijednost (True, False ili None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Vrijeme" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Unesite ispravno vrijeme u formatu ČČ:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML tekst" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Model %(model)s sa pk %(pk)r ne postoji." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Strani kljuÄ (tip odreÄ‘en povezanim poljem)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Jedan-na-jedan odnos" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "ViÅ¡e-na-viÅ¡e odsnos" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Držite „Control“, ili „Command“ na Mac-u da biste obilježili viÅ¡e od jedne " -"stavke." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Ovo polje se mora popuniti." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Unesite cijeo broj." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Unesite broj." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Ne smije biti ukupno viÅ¡e od %s cifara. Provjerite." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Ne smije biti ukupno viÅ¡e od %s decimalnih mijesta. Provjerite." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Ne smije biti ukupno viÅ¡e od %s cifara prije zapete. Provjerite." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Unesite ispravan datum." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Unesite ispravno vrijeme" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Unesite ispravan datum/vrijeme." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Fajl nije prebaÄen. Provjerite tip enkodiranja formulara." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Fajl nije prebaÄen." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "PrebaÄen fajl je prazan." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Naziv fajla mora da sadrži bar %(max)d slovnih mijesta (trenutno ima %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Prebacite ispravan fajl. Fajl koji je prebaÄen ili nije slika, ili je " -"oÅ¡tećen." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"%(value)s nije meÄ‘u ponuÄ‘enim vrijednostima. Odaberite jednu od ponuÄ‘enih." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Unesite listu vrijednosti." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Redoslijed" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "ObriÅ¡i" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Ispravite dupli sadržaj za polja: %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Ispravite dupli sadržaj za polja: %(field)s, koji mora da bude jedinstven." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Ispravite dupli sadržaj za polja: %(field_name)s, koji mora da bude " -"jedinstven za %(lookup)s u %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Ispravite duple vrijednosti dole." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Strani kljuÄ se nije poklopio sa instancom roditeljskog kljuÄa." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Odabrana vrijednost nije meÄ‘u ponuÄ‘enima. Odaberite jednu od ponuÄ‘enih." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "%s nije meÄ‘u ponuÄ‘enim vrijednostima. Odaberite jednu od ponuÄ‘enih." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "„%s“ nije ispravna vrijednost za primarni kljuÄ." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Izmjeni" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Nepoznato" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Da" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ne" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "da,ne,možda" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "po p." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "prije p." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "ponoć" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "podne" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "ponedjeljak" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "utorak" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "srijeda" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Äetvrtak" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "petak" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "subota" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "nedjelja" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "pon." - -#: utils/dates.py:10 -msgid "Tue" -msgstr "uto." - -#: utils/dates.py:10 -msgid "Wed" -msgstr "sri." - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Äet." - -#: utils/dates.py:10 -msgid "Fri" -msgstr "pet." - -#: utils/dates.py:11 -msgid "Sat" -msgstr "sub." - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ned." - -#: utils/dates.py:18 -msgid "January" -msgstr "januar" - -#: utils/dates.py:18 -msgid "February" -msgstr "februar" - -#: utils/dates.py:18 -msgid "March" -msgstr "mart" - -#: utils/dates.py:18 -msgid "April" -msgstr "april" - -#: utils/dates.py:18 -msgid "May" -msgstr "maj" - -#: utils/dates.py:18 -msgid "June" -msgstr "juni" - -#: utils/dates.py:19 -msgid "July" -msgstr "juli" - -#: utils/dates.py:19 -msgid "August" -msgstr "august" - -#: utils/dates.py:19 -msgid "September" -msgstr "septembar" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktobar" - -#: utils/dates.py:19 -msgid "November" -msgstr "novembar" - -#: utils/dates.py:20 -msgid "December" -msgstr "decembar" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan." - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb." - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar." - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr." - -#: utils/dates.py:23 -msgid "may" -msgstr "maj." - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun." - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul." - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug." - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep." - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt." - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov." - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec." - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "juli" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "august" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "septembar" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "oktobar" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "novembar" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "decembar" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "januar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "februar" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "mart" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "april" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "maj" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "juni" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "juli" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "august" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "septembar" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "oktobar" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "decembar" - -#: utils/text.py:136 -msgid "or" -msgstr "ili" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuta" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:578 -msgid "DATE_FORMAT" -msgstr "j. N Y." - -#: utils/translation/trans_real.py:579 -msgid "DATETIME_FORMAT" -msgstr "j. N. Y. G:i T" - -#: utils/translation/trans_real.py:580 -msgid "TIME_FORMAT" -msgstr "G:i" - -#: utils/translation/trans_real.py:601 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y." - -#: utils/translation/trans_real.py:602 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s je uspjeÅ¡no kreiran." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s je uspjeÅ¡no ažuriran." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s je obrisan." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Godina nije naznaÄena" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Mjesec nije naznaÄen" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Dan nije naznaÄen" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Sedmica nije naznaÄena" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/bs/__init__.py b/lib/python2.7/site-packages/django/conf/locale/bs/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/bs/formats.py b/lib/python2.7/site-packages/django/conf/locale/bs/formats.py deleted file mode 100644 index 34e9eac19..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/bs/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. N Y.' -TIME_FORMAT = 'G:i' -DATETIME_FORMAT = 'j. N. Y. G:i T' -YEAR_MONTH_FORMAT = 'F Y.' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'Y M j' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo deleted file mode 100644 index 0edbebab0..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ca/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po deleted file mode 100644 index b0446fd81..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ca/LC_MESSAGES/django.po +++ /dev/null @@ -1,1152 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:06-0400\n" -"PO-Revision-Date: 2011-03-05 18:50+0000\n" -"Last-Translator: txels \n" -"Language-Team: Catalan \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "àrab" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "azerbaijanès" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "búlgar" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengalí" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosnià" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "català" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "txec" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "gal·lès" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "danès" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "alemany" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "grec" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "anglès" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "anglès britànic" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "espanyol" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "castellà d'Argentina" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "espanyol de Mèxic" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "estonià" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "euskera" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "persa" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "finlandès" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "francès" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "frisi" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "irlandès" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "gallec" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "hebreu" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "croat" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "hongarès" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "indonesi" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "islandès" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "italià" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "japonès" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "georgià" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "kannarès" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "coreà" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "lituà" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "letó" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "macedoni" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "malaiàlam " - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "mongol" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "holandès" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "noruec" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "noruec bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "noruec nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "panjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "polonès" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "portuguès" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "portuguès de brasil" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "romanès" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "rus" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "eslovac" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "eslovè" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "albanès" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "serbi" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "serbi llatí" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "suec" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "tàmil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "tailandès" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "turc" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ucraïnès" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "vietnamita" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "xinès simplificat" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "xinès tradicional" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Introduïu un valor vàlid." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Aquesta URL sembla ser un enllaç trencat." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Introduïu una URL vàlida." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Introduïu una adreça de correu vàlida." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Introduïu un 'slug' vàlid, consistent en lletres, números, guions o guions " -"baixos." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Introduïu una adreça IPv4 vàlida." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Introduïu només dígits separats per comes." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Assegureu-vos que el valor sigui %(limit_value)s (és %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"Assegureu-vos que aquest valor sigui menor o igual que %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"Assegureu-vos que aquest valor sigui més gran o igual que %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Assegureu-vos que el valor tingui com a mínim %(limit_value)d caràcters (en " -"té %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Assegureu-vos que el valor tingui com a màxim %(limit_value)d caràcters (en " -"té %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "El camp %(field_name)s ha de ser únic per a %(lookup)s %(date_field)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "Ja existeix %(model_name)s amb aquest %(field_label)s." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "i" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "El valor %r no és una opció vàlida." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Aquest camp no pot ser nul." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Aquest camp no pot estar en blanc." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Camp del tipus: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Enter" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Aquest valor ha de ser un enter." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Aquest valor ha de ser True (Cert) o False (Fals)" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Booleà (Cert o Fals)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Cadena (de fins a %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Enters separats per comes" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Data (sense hora)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Introduïu una data vàlida en el forma AAAA-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Data invàlida: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Introduïu un data/hora vàlida en format YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Data (amb hora)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Aquest valor ha de ser un número decimal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Número decimal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Adreça de correu electrònic" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Ruta del fitxer" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Aquest valor ha de ser un número amb punt de coma flotant." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Número de coma flotant" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Enter gran (8 bytes)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Adreça IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Aquest valor ha de ser None (Cap), True (Cert) o False (Fals)" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Booleà (Cert, Fals o Cap ('None'))" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Text" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Hora" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Introduïu una hora vàlida en el format HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Text XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "No existeix el model %(model)s amb la clau primària %(pk)r." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Clau forana (tipus determinat pel camp relacionat)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Inter-relació un-a-un" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Inter-relació molts-a-molts" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Premeu la tecla \"Control\", o \"Command\" en un Mac, per seleccionar més " -"d'un valor." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Aquest camp és obligatori." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Introduïu un número sencer." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Introduïu un número." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Assegureu-vos que no hi ha més de %s dígits en total." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Assegureu-vos que no hi ha més de %s decimals." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Assegureu-vos que no hi ha més de %s dígits decimals." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Introduïu una data vàlida." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Introduïu una hora vàlida." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Introduïu una data/hora vàlides." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"No s'ha enviat cap fitxer. Comproveu el tipus de codificació del formulari." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "No s'ha enviat cap fitxer." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "El fitxer enviat està buit." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Assegureu-vos que el valor té com a màxim %(max)d caràcters (en té %(length)" -"d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Si us plau, envieu un fitxer o marqueu la casella de selecció \"netejar\", " -"no ambdós." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Carregueu una imatge vàlida. El fitxer que heu carregat no era una imatge o " -"estava corrupte." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Esculliu una opció vàlida. %(value)s no és una de les opcions vàlides." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Introduïu una llista de valors." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ordre" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Eliminar" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Si us plau, corregiu la dada duplicada per a %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Si us plau, corregiu la dada duplicada per a %(field)s, la qual ha de ser " -"única." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Si us plau, corregiu la dada duplicada per a %(field_name)s, la qual ha de " -"ser única per a %(lookup)s en %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Si us plau, corregiu els valors duplicats a sota." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"La clau forana en línia no coincideix amb la clau primària de la instància " -"mare." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Esculli una opció vàlida. Aquesta opció no és una de les opcions disponibles." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Escolliu una opció vàlida; %s no és una de les opcions vàlides." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" no és un valor vàlid per a una clau primària." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Actualment" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Modificar" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Netejar" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Desconegut" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Sí" - -#: forms/widgets.py:548 -msgid "No" -msgstr "No" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "sí,no,potser" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "mitjanit" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "migdia" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Dilluns" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Dimarts" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Dimecres" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Dijous" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Divendres" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Dissabte" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Diumenge" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "dl." - -#: utils/dates.py:10 -msgid "Tue" -msgstr "dt." - -#: utils/dates.py:10 -msgid "Wed" -msgstr "dc." - -#: utils/dates.py:10 -msgid "Thu" -msgstr "dj." - -#: utils/dates.py:10 -msgid "Fri" -msgstr "dv." - -#: utils/dates.py:11 -msgid "Sat" -msgstr "ds." - -#: utils/dates.py:11 -msgid "Sun" -msgstr "dg." - -#: utils/dates.py:18 -msgid "January" -msgstr "gener" - -#: utils/dates.py:18 -msgid "February" -msgstr "febrer" - -#: utils/dates.py:18 -msgid "March" -msgstr "març" - -#: utils/dates.py:18 -msgid "April" -msgstr "abril" - -#: utils/dates.py:18 -msgid "May" -msgstr "maig" - -#: utils/dates.py:18 -msgid "June" -msgstr "juny" - -#: utils/dates.py:19 -msgid "July" -msgstr "juliol" - -#: utils/dates.py:19 -msgid "August" -msgstr "agost" - -#: utils/dates.py:19 -msgid "September" -msgstr "setembre" - -#: utils/dates.py:19 -msgid "October" -msgstr "octubre" - -#: utils/dates.py:19 -msgid "November" -msgstr "novembre" - -#: utils/dates.py:20 -msgid "December" -msgstr "desembre" - -#: utils/dates.py:23 -msgid "jan" -msgstr "gen." - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb." - -#: utils/dates.py:23 -msgid "mar" -msgstr "març" - -#: utils/dates.py:23 -msgid "apr" -msgstr "abr." - -#: utils/dates.py:23 -msgid "may" -msgstr "maig" - -#: utils/dates.py:23 -msgid "jun" -msgstr "juny" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul." - -#: utils/dates.py:24 -msgid "aug" -msgstr "ago." - -#: utils/dates.py:24 -msgid "sep" -msgstr "set." - -#: utils/dates.py:24 -msgid "oct" -msgstr "oct." - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov." - -#: utils/dates.py:24 -msgid "dec" -msgstr "des." - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "gen." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mar." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "abr." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "mai." - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "jun." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "jul." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "ago." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "set." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "oct." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "des." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "gener" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "febrer" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "març" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "abril" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "maig" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "juny" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "juliol" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "agost" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "setembre" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "octubre" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "novembre" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "desembre" - -#: utils/text.py:136 -msgid "or" -msgstr "o" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "any" -msgstr[1] "anys" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "mesos" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "setmana" -msgstr[1] "setmanes" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dia" -msgstr[1] "dies" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "hores" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minuts" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuts" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j \\de F \\de Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j \\de F \\de Y, H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F \\de Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j \\de F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "El/la %(verbose_name)s s'ha creat amb èxit." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "El/la %(verbose_name)s s'ha actualtzat amb èxit." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "El/la %(verbose_name)s s'ha eliminat." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "No s'ha especificat any" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "No s'ha especificat mes" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "No s'ha especificat dia" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "No s'ha especificat setmana" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Cap %(verbose_name_plural)s disponible" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Futurs %(verbose_name_plural)s no disponibles perquè %(class_name)s." -"allow_future és Fals." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Cadena invàlida de dats '%(datestr)s' donat el format '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "No s'ha trobat sap %(verbose_name)s que coincideixi amb la petició" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "La pàgina no és 'last', ni es pot convertir en un enter" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Pàgina invàlida (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Llista buida i '%(class_name)s.allow_empty' és Fals." diff --git a/lib/python2.7/site-packages/django/conf/locale/ca/__init__.py b/lib/python2.7/site-packages/django/conf/locale/ca/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/ca/formats.py b/lib/python2.7/site-packages/django/conf/locale/ca/formats.py deleted file mode 100644 index 71ea7e932..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ca/formats.py +++ /dev/null @@ -1,35 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = r'j \de F \de Y' -TIME_FORMAT = 'G:i:s' -DATETIME_FORMAT = r'j \de F \de Y \a \le\s G:i' -YEAR_MONTH_FORMAT = r'F \de\l Y' -MONTH_DAY_FORMAT = r'j \de F' -SHORT_DATE_FORMAT = 'd/m/Y' -SHORT_DATETIME_FORMAT = 'd/m/Y G:i' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - # '31/12/2009', '31/12/09' - '%d/%m/%Y', '%d/%m/%y' -) -TIME_INPUT_FORMATS = ( - # '14:30:59', '14:30' - '%H:%M:%S', '%H:%M' -) -DATETIME_INPUT_FORMATS = ( - '%d/%m/%Y %H:%M:%S', - '%d/%m/%Y %H:%M', - '%d/%m/%y %H:%M:%S', - '%d/%m/%y %H:%M', -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 - diff --git a/lib/python2.7/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo deleted file mode 100644 index c9a53f3ea..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/cs/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po deleted file mode 100644 index 08ac1134b..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/cs/LC_MESSAGES/django.po +++ /dev/null @@ -1,1150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:06-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: JirkaV \n" -"Language-Team: Czech \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "arabsky" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "ÃzerbájdžánÅ¡tina" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "bulharsky" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengálsky" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosensky" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "katalánsky" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Äesky" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "welÅ¡sky" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "dánsky" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "nÄ›mecky" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Å™ecky" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "anglicky" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "anglicky (Británie)" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Å¡panÄ›lsky" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Å¡panÄ›lsky (Argentina)" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Mexická Å¡panÄ›lÅ¡tina" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "estonsky" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "baskicky" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "persky" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "finsky" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "francouzsky" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "frísky" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "irsky" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "galicijsky" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "hebrejsky" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "hindsky" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "chorvatsky" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "maÄarsky" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "indonésky" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "islandsky" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "italsky" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "japonsky" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "gruzínsky" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "khmersky" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "kannadsky" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "korejsky" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "litevsky" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "lotyÅ¡sky" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "makedonsky" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "malajálamsky" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "mongolsky" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "holandsky" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "norsky" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "norsky (BokmÃ¥l)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "norsky (Nynorsk)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Paňdžábsky" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "polsky" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "portugalsky" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "portugalsky (Brazílie)" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "rumunsky" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "rusky" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "slovensky" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "slovinsky" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "albánsky" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "srbsky" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "srbsky (latinkou)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Å¡védsky" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "tamilsky" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "telužsky" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "thajsky" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "turecky" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ukrajinsky" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "UrdÅ¡tina" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "vietnamsky" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Äínsky (zjednoduÅ¡enÄ›)" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Äínsky (tradiÄnÄ›)" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Vložte platnou hodnotu." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Tato adresa URL je zÅ™ejmÄ› neplatný odkaz." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Vložte platnou adresu URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Vložte platnou e-mailovou adresu." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Vložte platný identifikátor složený pouze z písmen, Äísel, podtržítek a " -"pomlÄek." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Vložte platnou adresu typu IPv4." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Vložte pouze Äíslice oddÄ›lené Äárkami." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Hodnota musí být %(limit_value)s (nyní je %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Hodnota musí být menší nebo rovna %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Hodnota musí být vÄ›tší nebo rovna %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Hodnota musí mít alespoň %(limit_value)d znaků, ale nyní jich má %" -"(show_value)d." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Hodnota smí mít nejvýše %(limit_value)d znaků, ale nyní jich má %(show_value)" -"d." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"Pole %(field_name)s musí být unikátní testem %(lookup)s pole %(date_field)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" -"Položka %(model_name)s s touto hodnotou v poli %(field_label)s již existuje." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "a" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Hodnota %r není platnou volbou." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Pole nemůže být null." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Pole nemůže být prázdné." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Pole typu: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Celé Äíslo" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Hodnota musí být celé Äíslo." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Hodnota musí být buÄ Ano (True) nebo Ne (False)." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Pravdivost (buÄ Ano (True), nebo Ne (False))" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "ŘetÄ›zec (max. %(max_length)s znaků)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Celá Äísla oddÄ›lená Äárkou" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Datum (bez Äasu)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Vložte platné datum ve tvaru RRRR-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Neplatné datum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Vložte platné datum a Äas ve tvaru RRRR-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Datum (s Äasem)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Hodnota musí být desetinné Äíslo." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Desetinné Äíslo" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mailová adresa" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Cesta k souboru" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Hodnota musí být desetinné Äíslo." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Číslo s pohyblivou řádovou Äárkou" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Velké Äíslo (8 bajtů)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Adresa IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Hodnota musí být buÄ Nic (None), Ano (True) nebo Ne (False)." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Pravdivost (buÄ Ano (True), Ne (False) nebo Nic (None))" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Text" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "ÄŒas" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Vložte platný Äas ve tvaru HH:MM[:ss[.uuuuuu]]" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML text" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Položka typu %(model)s s primárním klíÄem %(pk)r neexistuje." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Cizí klÃ­Ä (typ urÄen pomocí souvisejícího pole)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Vazba jedna-jedna" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Vazba mnoho-mnoho" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"VýbÄ›r více než jedné položky je možný pÅ™idržením klávesy \"Control\" (nebo " -"\"Command\" na Macu)." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Pole je povinné." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Vložte celé Äíslo." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Vložte Äíslo." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Hodnota nesmí celkem mít více než %s cifer." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Hodnota nesmí mít za desetinnou Äárkou více než %s cifer." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Hodnota nesmí mít pÅ™ed desetinnou Äárkou více než %s cifer." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Vložte platné datum." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Vložte platný Äas." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Vložte platné datum a Äas." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"Soubor nebyl odeslán. Zkontrolujte parametr \"encoding type\" formuláře." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Žádný soubor nebyl odeslán." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Odeslaný soubor je prázdný." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Délka názvu souboru má být nejvýše %(max)d znaků, ale nyní je %(length)d." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Musíte vybrat cestu k souboru nebo vymazat výbÄ›r, ne obojí." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Nahrajte platný obrázek. Odeslaný soubor buÄ nebyl obrázek nebo byl poÅ¡kozen." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Vyberte platnou možnost, \"%(value)s\" není k dispozici." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Vložte seznam hodnot." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "PoÅ™adí" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Odstranit" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Opravte duplicitní data v poli %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Opravte duplicitní data v poli %(field)s, které musí být unikátní." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Opravte duplicitní data v poli %(field_name)s, které musí být unikátní " -"testem %(lookup)s pole %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Odstraňte duplicitní hodnoty níže." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Cizí klÃ­Ä typu inline neodpovídá primárnímu klíÄi v rodiÄovské položce." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Vyberte platnou možnost. Tato není k dispozici." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Vyberte platnou možnost, \"%s\" není k dispozici." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "Hodnota \"%s\" není platný primární klíÄ." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "AktuálnÄ›" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "ZmÄ›nit" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ZruÅ¡it" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Neznámé" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ano" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ne" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ano, ne, možná" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bajt" -msgstr[1] "%(size)d bajty" -msgstr[2] "%(size)d bajtů" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "odp." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "dop." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "odp." - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "dop." - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "půlnoc" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "poledne" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "pondÄ›lí" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "úterý" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "stÅ™eda" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Ätvrtek" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "pátek" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "sobota" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "nedÄ›le" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "po" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "út" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "st" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Ät" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "pá" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "so" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ne" - -#: utils/dates.py:18 -msgid "January" -msgstr "leden" - -#: utils/dates.py:18 -msgid "February" -msgstr "únor" - -#: utils/dates.py:18 -msgid "March" -msgstr "bÅ™ezen" - -#: utils/dates.py:18 -msgid "April" -msgstr "duben" - -#: utils/dates.py:18 -msgid "May" -msgstr "kvÄ›ten" - -#: utils/dates.py:18 -msgid "June" -msgstr "Äerven" - -#: utils/dates.py:19 -msgid "July" -msgstr "Äervenec" - -#: utils/dates.py:19 -msgid "August" -msgstr "srpen" - -#: utils/dates.py:19 -msgid "September" -msgstr "září" - -#: utils/dates.py:19 -msgid "October" -msgstr "říjen" - -#: utils/dates.py:19 -msgid "November" -msgstr "listopad" - -#: utils/dates.py:20 -msgid "December" -msgstr "prosinec" - -#: utils/dates.py:23 -msgid "jan" -msgstr "led" - -#: utils/dates.py:23 -msgid "feb" -msgstr "úno" - -#: utils/dates.py:23 -msgid "mar" -msgstr "bÅ™e" - -#: utils/dates.py:23 -msgid "apr" -msgstr "dub" - -#: utils/dates.py:23 -msgid "may" -msgstr "kvÄ›" - -#: utils/dates.py:23 -msgid "jun" -msgstr "Äen" - -#: utils/dates.py:24 -msgid "jul" -msgstr "Äec" - -#: utils/dates.py:24 -msgid "aug" -msgstr "srp" - -#: utils/dates.py:24 -msgid "sep" -msgstr "zář" - -#: utils/dates.py:24 -msgid "oct" -msgstr "říj" - -#: utils/dates.py:24 -msgid "nov" -msgstr "lis" - -#: utils/dates.py:24 -msgid "dec" -msgstr "pro" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Led." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Úno." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "BÅ™e." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Dub." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "KvÄ›." - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "ÄŒer." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "ÄŒec." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Srp." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Zář." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Říj." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Lis." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Pro." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "ledna" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "února" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "bÅ™ezna" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "dubna" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "kvÄ›tna" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Äervna" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Äervence" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "srpna" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "září" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "října" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "listopadu" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "prosince" - -#: utils/text.py:136 -msgid "or" -msgstr "nebo" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "rok" -msgstr[1] "roky" -msgstr[2] "let" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mÄ›síc" -msgstr[1] "mÄ›síce" -msgstr[2] "mÄ›síců" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "týden" -msgstr[1] "týdny" -msgstr[2] "týdnů" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "den" -msgstr[1] "dny" -msgstr[2] "dnů" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "hodina" -msgstr[1] "hodiny" -msgstr[2] "hodin" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuta" -msgstr[1] "minuty" -msgstr[2] "minut" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuty" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j. n. Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. n. Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "Položka typu %(verbose_name)s byla úspěšnÄ› vytvoÅ™ena." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "Položka typu %(verbose_name)s byla úspěšnÄ› aktualizována." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "Položka typu %(verbose_name)s byla odstranÄ›na." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Nebyl specifikován rok" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Nebyl specifikován mÄ›síc" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Nebyl specifikován den" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Nebyl specifikován týden" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "%(verbose_name_plural)s nejsou k dispozici" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"%(verbose_name_plural)s s budoucím datem nejsou k dipozici protoze %" -"(class_name)s.allow_future je False" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Datum '%(datestr)s' neodpovídá formátu '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "NepodaÅ™ilo se nalézt žádný objekt %(verbose_name)s" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Požadavek na stránku nemohl být konvertován na Äíslo, ani není 'last'" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Chybné Äíslo stránky (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "List je prázdný a '%(class_name)s.allow_empty' je nastaveno na False" diff --git a/lib/python2.7/site-packages/django/conf/locale/cs/__init__.py b/lib/python2.7/site-packages/django/conf/locale/cs/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/cs/formats.py b/lib/python2.7/site-packages/django/conf/locale/cs/formats.py deleted file mode 100644 index 1c03615f8..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/cs/formats.py +++ /dev/null @@ -1,37 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. E Y' -TIME_FORMAT = 'G:i:s' -DATETIME_FORMAT = 'j. E Y G:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'd.m.Y' -SHORT_DATETIME_FORMAT = 'd.m.Y G:i:s' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' - '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' - # '%d. %B %Y', '%d. %b. %Y', # '25. October 2006', '25. Oct. 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = ' ' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/cy/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/cy/LC_MESSAGES/django.mo deleted file mode 100644 index 3d1c2473d..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/cy/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po deleted file mode 100644 index 36a7150ac..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/cy/LC_MESSAGES/django.po +++ /dev/null @@ -1,1142 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:07-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " -"11) ? 2 : 3\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengaleg" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tsieceg" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Cymraeg" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Daneg" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Almaeneg" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Saesneg" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spaeneg" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Ffrangeg" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galisieg" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandeg" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Eidaleg" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norwyeg" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Romaneg" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Rwsieg" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slofaceg" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbeg" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Swedeg" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Tsieinëeg Symledig" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Rhowch cyfeiriad e-bost ddilys." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Rhowch digidau gwahanu gyda atalnodau yn unig." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ac" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Dyddiad (heb amser)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Rhowch dyddiad dilys mewn fformat YYYY-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Dyddiad (gyda amser)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Rhif degol" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Cyfeiriad e-bost" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Llwybr ffeil" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "cyfeiriad IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boole (Naill ai True, False neu None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Testun" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Amser" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Testun XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Mae angen y faes yma." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Rhowch rhif cyfan." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Mae'r ffeil yn wag." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Llwythwch delwedd dilys. Doedd y delwedd a llwythwyd dim yn ddelwedd dilys, " -"neu roedd o'n ddelwedd llwgr." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Dileu" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Newidio" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ie" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Na" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ie,na,efallai" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Dydd Llun" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Dydd Mawrth" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Dydd Mercher" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Dydd Iau" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Dydd Gwener" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Dydd Sadwrn" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Dydd Sul" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "" - -#: utils/dates.py:18 -msgid "January" -msgstr "Ionawr" - -#: utils/dates.py:18 -msgid "February" -msgstr "Chwefror" - -#: utils/dates.py:18 -msgid "March" -msgstr "Mawrth" - -#: utils/dates.py:18 -msgid "April" -msgstr "Ebrill" - -#: utils/dates.py:18 -msgid "May" -msgstr "Mai" - -#: utils/dates.py:18 -msgid "June" -msgstr "Mehefin" - -#: utils/dates.py:19 -msgid "July" -msgstr "Gorffenaf" - -#: utils/dates.py:19 -msgid "August" -msgstr "Awst" - -#: utils/dates.py:19 -msgid "September" -msgstr "Medi" - -#: utils/dates.py:19 -msgid "October" -msgstr "Hydref" - -#: utils/dates.py:19 -msgid "November" -msgstr "Tachwedd" - -#: utils/dates.py:20 -msgid "December" -msgstr "Rhagfyr" - -#: utils/dates.py:23 -msgid "jan" -msgstr "" - -#: utils/dates.py:23 -msgid "feb" -msgstr "" - -#: utils/dates.py:23 -msgid "mar" -msgstr "" - -#: utils/dates.py:23 -msgid "apr" -msgstr "" - -#: utils/dates.py:23 -msgid "may" -msgstr "" - -#: utils/dates.py:23 -msgid "jun" -msgstr "" - -#: utils/dates.py:24 -msgid "jul" -msgstr "" - -#: utils/dates.py:24 -msgid "aug" -msgstr "" - -#: utils/dates.py:24 -msgid "sep" -msgstr "" - -#: utils/dates.py:24 -msgid "oct" -msgstr "" - -#: utils/dates.py:24 -msgid "nov" -msgstr "" - -#: utils/dates.py:24 -msgid "dec" -msgstr "" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "" - -#: utils/text.py:136 -msgid "or" -msgstr "" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr "" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/cy/__init__.py b/lib/python2.7/site-packages/django/conf/locale/cy/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/cy/formats.py b/lib/python2.7/site-packages/django/conf/locale/cy/formats.py deleted file mode 100644 index 6e0e7027c..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/cy/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'd F Y' -TIME_FORMAT = 'g:i:s A' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -# MONTH_DAY_FORMAT = -SHORT_DATE_FORMAT = 'j M Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -# DECIMAL_SEPARATOR = -# THOUSAND_SEPARATOR = -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo deleted file mode 100644 index 6e4bcdd6b..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/da/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/da/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/da/LC_MESSAGES/django.po deleted file mode 100644 index d371fd26f..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/da/LC_MESSAGES/django.po +++ /dev/null @@ -1,1145 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:07-0400\n" -"PO-Revision-Date: 2011-03-07 20:31+0000\n" -"Last-Translator: finngruwier \n" -"Language-Team: Danish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabisk" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azerbaidjansk" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgarsk" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalsk" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnisk" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalansk" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tjekkisk" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Walisisk" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Dansk" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Tysk" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Græsk" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Engelsk" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Britisk engelsk" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spansk" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentinsk spansk" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Mexikansk spansk" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estisk" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskisk" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persisk" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finsk" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Fransk" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisisk" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irsk" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galicisk" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebræisk" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroatisk" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Ungarsk" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonesisk" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandsk" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiensk" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japansk" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgisk" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreansk" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Litauisk" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Lettisk" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Makedonsk" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malaysisk" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongolsk" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Hollandsk" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norsk" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norsk bokmÃ¥l" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norsk nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polsk" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugisisk" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brasiliansk portugisisk" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rumænsk" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Russisk" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovakisk" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slovensk" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albansk" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbisk" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbisk (latin)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Svensk" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thai" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Tyrkisk" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrainsk" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamesisk" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Forenklet kinesisk" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Traditionelt kinesisk" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Indtast en gyldig værdi." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Denne URL henviser ikke til en gyldig side eller fil." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Indtast en gyldig URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Indtast en gyldig e-mail-adresse." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Dette felt mÃ¥ kun indeholde bogstaver, cifre, understreger og bindestreger." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Indtast en gyldig IPv4-adresse." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Indtast kun cifre adskilt af kommaer." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Denne værdi skal være %(limit_value)s (den er %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Denne værdi skal være mindre end eller lig %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Denne værdi skal være større end eller lig %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Denne værdi skal mindst indeholde %(limit_value)d tegn (den indeholder %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Denne værdi mÃ¥ maksimalt indeholde %(limit_value)d tegn (den har %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s skal være unik for %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s med dette %(field_label)s eksisterer allerede." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "og" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Værdien %r er ikke et gyldigt valg." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Dette felt kan ikke være null." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Dette felt kan ikke være tomt." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Felt af type: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Heltal" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Denne værdi skal et heltal." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Denne værdi skal være enten True eller False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolsk (enten True eller False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Streng (op til %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Kommaseparerede heltal" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Dato (uden tid)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Indtast en gyldig dato i formatet Ã…Ã…Ã…Ã…-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ugyldig dato: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Indtast gyldig dato og tid i formatet Ã…Ã…Ã…Ã…-MM-DD TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Dato (med tid)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Denne værdi skal et decimaltal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Decimaltal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mail-adresse" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Sti" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Denne værdi skal være et kommatal." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Flydende-komma-tal" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Stort heltal (8 byte)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP-adresse" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Denne værdi skal være None, True eller False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolsk (True, False eller None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Tid" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Indtast en gyldig tid i formatet TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML-tekst" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "En model %(model)s med primærnøgle %(pk)r eksisterer ikke." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Fremmednøgle (type bestemt af relateret felt)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "En-til-en-relation" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Mange-til-mange-relation" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Hold \"Ctrl\" (eller \"Æbletasten\" pÃ¥ Mac) nede for at vælge mere end en." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Dette felt er pÃ¥krævet." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Indtast et heltal." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Indtast et tal." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Der mÃ¥ maksimalt være %s cifre i alt." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Der mÃ¥ højst være %s decimalpladser." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Der mÃ¥ maksimalt være %s cifre før decimaltegnet." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Indtast en gyldig dato." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Indtast en gyldig tid." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Indtast gyldig dato/tid." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Ingen fil blev indsendt. Kontroller kodningstypen i formularen." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Ingen fil blev indsendt." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Den indsendte fil er tom." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "Denne værdi mÃ¥ maksimalt indeholde %(max)d tegn (den har %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Du skal enten indsende en fil eller afmarkere afkrydsningsfeltet, ikke begge " -"dele." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Indsend en billedfil. Filen, du indsendte, var enten ikke et billede eller " -"en defekt billedfil." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Marker en gyldigt valgmulighed; '%(value)s' er ikke en af de tilgængelige " -"valgmuligheder." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Indtast en liste af værdier." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Rækkefølge" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Slet" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Ret venligst duplikerede data for %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Ret venligst de duplikerede data for %(field)s, som skal være unik." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Ret venligst de duplikerede data for %(field_name)s, som skal være unik for %" -"(lookup)s i %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Ret venligst de duplikerede data herunder." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Den indlejrede fremmednøgle passede ikke med forælderinstansens primærnøgle." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Marker en gyldig valgmulighed. Det valg, du har foretaget, er ikke blandt de " -"tilgængelige valgmuligheder." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" -"Marker et gyldigt valg. %s er ikke en af de tilgængelige valgmuligheder." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" er ikke en gyldig værdi for en primærnøgle." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Aktuelt" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Ret" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Afmarkér" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Ukendt" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ja" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nej" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ja,nej,mÃ¥ske" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "midnat" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "middag" - -#: 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:10 -msgid "Mon" -msgstr "Man" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Tir" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Ons" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Tor" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Fre" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Lør" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Søn" - -#: utils/dates.py:18 -msgid "January" -msgstr "januar" - -#: utils/dates.py:18 -msgid "February" -msgstr "februar" - -#: utils/dates.py:18 -msgid "March" -msgstr "marts" - -#: utils/dates.py:18 -msgid "April" -msgstr "april" - -#: utils/dates.py:18 -msgid "May" -msgstr "maj" - -#: utils/dates.py:18 -msgid "June" -msgstr "juni" - -#: utils/dates.py:19 -msgid "July" -msgstr "juli" - -#: utils/dates.py:19 -msgid "August" -msgstr "august" - -#: utils/dates.py:19 -msgid "September" -msgstr "september" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktober" - -#: utils/dates.py:19 -msgid "November" -msgstr "november" - -#: utils/dates.py:20 -msgid "December" -msgstr "december" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "maj" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sept" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "marts" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "april" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "maj" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "juni" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "juli" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "aug." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "dec." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "januar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "februar" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "marts" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "april" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "maj" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "juni" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "juli" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "august" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "september" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "oktober" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "november" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "december" - -#: utils/text.py:136 -msgid "or" -msgstr "eller" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "Ã¥r" -msgstr[1] "Ã¥r" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mÃ¥ned" -msgstr[1] "mÃ¥neder" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "uge" -msgstr[1] "uger" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dage" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "time" -msgstr[1] "timer" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minutter" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutter" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j. F Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. F Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s blev oprettet." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s blev opdateret." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s blev slettet." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Intet Ã¥r specificeret" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Ingen mÃ¥ned specificeret" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Ingen dag specificeret" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Ingen uge specificeret" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Ingen %(verbose_name_plural)s til rÃ¥dighed" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Fremtidige %(verbose_name_plural)s ikke tilgængelige, fordi %(class_name)s ." -"allow_future er falsk." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Ugyldig datostreng ' %(datestr)s ' givet format ' %(format)s '" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Ingen %(verbose_name)s fundet matcher forespørgslen" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Side er ikke 'sidste', kan heller ikke konverteres til en int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Ugyldig side ( %(page_number)s )" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Tom liste og ' %(class_name)s .allow_empty' er falsk." diff --git a/lib/python2.7/site-packages/django/conf/locale/da/__init__.py b/lib/python2.7/site-packages/django/conf/locale/da/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/da/formats.py b/lib/python2.7/site-packages/django/conf/locale/da/formats.py deleted file mode 100644 index f6cdea8b5..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/da/formats.py +++ /dev/null @@ -1,31 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. F Y' -TIME_FORMAT = 'H:i' -DATETIME_FORMAT = 'j. F Y H:i' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'd.m.Y' -SHORT_DATETIME_FORMAT = 'd.m.Y H:i' -FIRST_DAY_OF_WEEK = 1 - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d.%m.%Y', # '25.10.2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo deleted file mode 100644 index d411750af..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/de/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/de/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/de/LC_MESSAGES/django.po deleted file mode 100644 index ea11ad83c..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/de/LC_MESSAGES/django.po +++ /dev/null @@ -1,1154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:07-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: ahagenbruch \n" -"Language-Team: German <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabisch" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Aserbaidschanisch" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgarisch" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengali" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnisch" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalanisch" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tschechisch" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Walisisch" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Dänisch" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Deutsch" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Griechisch" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Englisch" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Britisches Englisch" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spanisch" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentinisches Spanisch" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Mexikanisches Spanisch" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estnisch" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskisch" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persisch" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finnisch" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Französisch" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Friesisch" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irisch" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galicisch" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebräisch" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroatisch" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Ungarisch" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonesisch" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Isländisch" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italienisch" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japanisch" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgisch" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreanisch" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Litauisch" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Lettisch" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Mazedonisch" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongolisch" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Holländisch" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norwegisch" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norwegisch (BokmÃ¥l)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norwegisch (Nynorsk)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Panjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polnisch" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugiesisch" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brasilianisches Portugiesisch" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rumänisch" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Russisch" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slowakisch" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slowenisch" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanisch" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbisch" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbisch (Latein)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Schwedisch" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamilisch" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugisch" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thailändisch" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Türkisch" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrainisch" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamesisch" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Vereinfachtes Chinesisch" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Traditionelles Chinesisch" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Bitte einen gültigen Wert eingeben." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Diese Adresse scheint nicht gültig zu sein." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Bitte eine gültige Adresse eingeben." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Bitte eine gültige E-Mail-Adresse eingeben." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Bitte ein gültiges Kürzel, bestehend aus Buchstaben, Ziffern, Unterstrichen " -"und Bindestrichen, eingeben." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Bitte eine gültige IPv4-Adresse eingeben." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Bitte nur durch Komma getrennte Ziffern eingeben." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Bitte sicherstellen, dass der Wert %(limit_value)s ist. (Er ist %(show_value)" -"s)" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Dieser Wert muss kleiner oder gleich %(limit_value)s sein." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Dieser Wert muss größer oder gleich %(limit_value)s sein." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Bitte sicherstellen, dass der Wert mindestens %(limit_value)d Zeichen hat. " -"(Er hat %(show_value)d)" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Bitte sicherstellen, dass der Wert maximal %(limit_value)d Zeichen hat. (Er " -"hat %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s muss für %(date_field)s %(lookup)s eindeutig sein." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s mit diesem %(field_label)s existiert bereits." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "und" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Wert %r ist keine gültige Option." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Dieses Feld darf nicht leer sein." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Dieses Feld darf nicht leer sein." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Feldtyp: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Ganzzahl" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Dieser Wert muss eine Ganzzahl sein." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Dieser Wert muss True oder False sein." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolescher Wert (True oder False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Zeichenkette (bis zu %(max_length)s Zeichen)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Kommaseparierte Liste von Ganzzahlen" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Datum (ohne Uhrzeit)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Bitte ein gültiges Datum im Format JJJJ-MM-TT eingeben." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ungültiges Datum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Bitte eine gültige Datums- und Zeitangabe im Format JJJJ-MM-TT SS:MM[ss[." -"uuuuuu]] eingeben." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Datum (mit Uhrzeit)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Dieser Wert muss eine Dezimalzahl sein." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Dezimalzahl" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-Mail-Adresse" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Dateipfad" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Dieser Wert muss eine Gleitkommazahl sein." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Gleitkommazahl" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Große Ganzzahl (8 Byte)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP-Adresse" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Dieser Wert muss None, True oder False sein." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolescher Wert (True, False oder None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Text" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Zeit" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Bitte eine gültige Zeit im Format HH:MM[:ss[.uuuuuu]] eingeben." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "Adresse (URL)" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML-Text" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Modell %(model)s mit dem Primärschlüssel %(pk)r ist nicht vorhanden." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Fremdschlüssel (Typ definiert durch verknüpftes Feld)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "One-to-one-Beziehung" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Many-to-many-Beziehung" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Halten Sie die Strg-Taste (⌘ für Mac) während des Klickens gedrückt, um " -"mehrere Einträge auszuwählen." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Dieses Feld ist zwingend erforderlich." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Bitte eine ganze Zahl eingeben." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Bitte eine Zahl eingeben." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Bitte geben Sie nicht mehr als insgesamt %s Ziffern ein." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Bitte geben Sie nicht mehr als %s Dezimalstellen ein." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Bitte geben Sie nicht mehr als %s Ziffern vor dem Komma ein." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Bitte ein gültiges Datum eingeben." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Bitte eine gültige Uhrzeit eingeben." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Bitte ein gültiges Datum und Uhrzeit eingeben." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"Es wurde keine Datei übermittelt. Ãœberprüfen Sie das Encoding des Formulars." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Es wurde keine Datei übertragen." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Die ausgewählte Datei ist leer." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Bitte sicherstellen, dass der Dateiname maximal %(max)d Zeichen hat. (Er hat " -"%(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Bitte wählen Sie entweder eine Datei aus oder wählen Sie \"Löschen\", nicht " -"beides." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Bitte ein Bild hochladen. Die hochgeladene Datei ist kein Bild oder ist " -"defekt." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Bitte eine gültige Auswahl treffen. %(value)s ist keine gültige Auswahl." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Bitte eine Liste mit Werten eingeben." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Reihenfolge" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Löschen" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Bitte die doppelten Daten für %(field)s korrigieren." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Bitte die doppelten Daten für %(field)s korrigieren, das eindeutig sein muss." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Bitte die doppelten Daten für %(field_name)s korrigieren, da es für %(lookup)" -"s in %(date_field)s eindeutig sein muss." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Bitte die unten aufgeführten doppelten Werte korrigieren." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Der Inline-Fremdschlüssel passt nicht zum Primärschlüssel der übergeordneten " -"Instanz." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Bitte eine gültige Auswahl treffen. Dies ist keine gültige Auswahl." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Bitte eine gültige Auswahl treffen. %s ist keine gültige Auswahl." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ist kein gültiger Wert für einen Primärschlüssel." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Derzeit" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Ändern" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Zurücksetzen" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Unbekannt" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ja" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nein" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "Ja,Nein,Vielleicht" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d Byte" -msgstr[1] "%(size)d Bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "nachm." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "vorm." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "nachm." - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "vorm." - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "Mitternacht" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "Mittag" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Montag" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Dienstag" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Mittwoch" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Donnerstag" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Freitag" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Samstag" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Sonntag" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Mo" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Di" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Mi" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Do" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Fr" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sa" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "So" - -#: utils/dates.py:18 -msgid "January" -msgstr "Januar" - -#: utils/dates.py:18 -msgid "February" -msgstr "Februar" - -#: utils/dates.py:18 -msgid "March" -msgstr "März" - -#: utils/dates.py:18 -msgid "April" -msgstr "April" - -#: utils/dates.py:18 -msgid "May" -msgstr "Mai" - -#: utils/dates.py:18 -msgid "June" -msgstr "Juni" - -#: utils/dates.py:19 -msgid "July" -msgstr "Juli" - -#: utils/dates.py:19 -msgid "August" -msgstr "August" - -#: utils/dates.py:19 -msgid "September" -msgstr "September" - -#: utils/dates.py:19 -msgid "October" -msgstr "Oktober" - -#: utils/dates.py:19 -msgid "November" -msgstr "November" - -#: utils/dates.py:20 -msgid "December" -msgstr "Dezember" - -#: utils/dates.py:23 -msgid "jan" -msgstr "Jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "Feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "Mär" - -#: utils/dates.py:23 -msgid "apr" -msgstr "Apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "Mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "Jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "Jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "Aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "Sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "Okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "Nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "Dez" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "März" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Mai" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Juni" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Juli" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Aug." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dez." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Januar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Februar" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "März" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Mai" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Juni" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Juli" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "August" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "September" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Oktober" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "November" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Dezember" - -#: utils/text.py:136 -msgid "or" -msgstr "oder" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "Jahr" -msgstr[1] "Jahre" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "Monat" -msgstr[1] "Monate" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "Woche" -msgstr[1] "Wochen" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "Tag" -msgstr[1] "Tage" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "Stunde" -msgstr[1] "Stunden" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "Minute" -msgstr[1] "Minuten" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "Minuten" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j. N Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. N Y, H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s wurde erfolgreich angelegt." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s wurde erfolgreich aktualisiert." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s wurde gelöscht." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Kein Jahr angegeben" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Kein Monat angegeben" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Kein Tag angegeben" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Keine Woche angegeben" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Keine %(verbose_name_plural)s verfügbar" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"In der Zukunft liegende %(verbose_name_plural)s sind nicht verfügbar, da %" -"(class_name)s.allow_future False ist." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Ungültiges Datum '%(datestr)s' für das Format '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Unter dieser Anfrage wurden keine %(verbose_name)s gefunden" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Weder ist dies die letzte Seite ('last') noch konnte sie in einen " -"ganzzahligen Wert umgewandelt werden." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Ungültige Seite (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Leere Liste und '%(class_name)s.allow_empty' ist False." diff --git a/lib/python2.7/site-packages/django/conf/locale/de/__init__.py b/lib/python2.7/site-packages/django/conf/locale/de/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/de/formats.py b/lib/python2.7/site-packages/django/conf/locale/de/formats.py deleted file mode 100644 index 79d555b98..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/de/formats.py +++ /dev/null @@ -1,37 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. F Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = 'j. F Y H:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'd.m.Y' -SHORT_DATETIME_FORMAT = 'd.m.Y H:i:s' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' - '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' - # '%d. %B %Y', '%d. %b. %Y', # '25. October 2006', '25. Oct. 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo deleted file mode 100644 index 88da9af98..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/el/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/el/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/el/LC_MESSAGES/django.po deleted file mode 100644 index 9d812833a..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/el/LC_MESSAGES/django.po +++ /dev/null @@ -1,1170 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 20:57+0100\n" -"PO-Revision-Date: 2011-03-20 11:41+0000\n" -"Last-Translator: pagles \n" -"Language-Team: Greek <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ΑÏαβικά" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Γλώσσα ΑζεÏμπαϊτζάν" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "ΒουλγαÏικά" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Μπενγκάλι" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Βοσνιακά" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Καταλανικά" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Τσέχικα" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Ουαλικά" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Δανέζικα" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "ΓεÏμανικά" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Ελληνικά" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Αγγλικά" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Αγγλικά Î’Ïετανίας" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Ισπανικά" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Ισπανικά ΑÏγεντινής" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Μεξικανική διάλεκτος Ισπανικών" - -#: conf/global_settings.py:60 -#, fuzzy -msgid "Nicaraguan Spanish" -msgstr "Μεξικανική διάλεκτος Ισπανικών" - -#: conf/global_settings.py:61 -msgid "Estonian" -msgstr "Εσθονικά" - -#: conf/global_settings.py:62 -msgid "Basque" -msgstr "Βάσκικα" - -#: conf/global_settings.py:63 -msgid "Persian" -msgstr "ΠεÏσικά" - -#: conf/global_settings.py:64 -msgid "Finnish" -msgstr "Φινλανδικά" - -#: conf/global_settings.py:65 -msgid "French" -msgstr "Γαλλικά" - -#: conf/global_settings.py:66 -msgid "Frisian" -msgstr "Frisian" - -#: conf/global_settings.py:67 -msgid "Irish" -msgstr "ΙÏλανδικά" - -#: conf/global_settings.py:68 -msgid "Galician" -msgstr "Γαελικά" - -#: conf/global_settings.py:69 -msgid "Hebrew" -msgstr "ΕβÏαϊκά" - -#: conf/global_settings.py:70 -msgid "Hindi" -msgstr "Ινδικά" - -#: conf/global_settings.py:71 -msgid "Croatian" -msgstr "ΚÏοατικά" - -#: conf/global_settings.py:72 -msgid "Hungarian" -msgstr "ΟυγγÏικά" - -#: conf/global_settings.py:73 -msgid "Indonesian" -msgstr "Ινδονησιακά" - -#: conf/global_settings.py:74 -msgid "Icelandic" -msgstr "Ισλανδικά" - -#: conf/global_settings.py:75 -msgid "Italian" -msgstr "Ιταλικά" - -#: conf/global_settings.py:76 -msgid "Japanese" -msgstr "Γιαπωνέζικα" - -#: conf/global_settings.py:77 -msgid "Georgian" -msgstr "ΓεωÏγιανά" - -#: conf/global_settings.py:78 -msgid "Khmer" -msgstr "ΧμεÏ" - -#: conf/global_settings.py:79 -msgid "Kannada" -msgstr "Κανάντα" - -#: conf/global_settings.py:80 -msgid "Korean" -msgstr "ΚοÏεάτικα" - -#: conf/global_settings.py:81 -msgid "Lithuanian" -msgstr "Λιθουανικά" - -#: conf/global_settings.py:82 -msgid "Latvian" -msgstr "Λεττονικά" - -#: conf/global_settings.py:83 -msgid "Macedonian" -msgstr "Μακεδονικά" - -#: conf/global_settings.py:84 -msgid "Malayalam" -msgstr "Μαλαγιαλάμ" - -#: conf/global_settings.py:85 -msgid "Mongolian" -msgstr "Μογγολικά" - -#: conf/global_settings.py:86 -msgid "Dutch" -msgstr "Ολλανδικά" - -#: conf/global_settings.py:87 -msgid "Norwegian" -msgstr "ÎοÏβηγικά" - -#: conf/global_settings.py:88 -msgid "Norwegian Bokmal" -msgstr "ÎοÏβηγική διάλεκτος Μποκμάλ - \"γλώσσα των βιβλίων\"" - -#: conf/global_settings.py:89 -msgid "Norwegian Nynorsk" -msgstr "ÎοÏβηγική διάλεκτος Nynorsk - ÎεονοÏβηγική" - -#: conf/global_settings.py:90 -msgid "Punjabi" -msgstr "Πουντζάμπι" - -#: conf/global_settings.py:91 -msgid "Polish" -msgstr "Πολωνικά" - -#: conf/global_settings.py:92 -msgid "Portuguese" -msgstr "ΠοÏτογαλικά" - -#: conf/global_settings.py:93 -msgid "Brazilian Portuguese" -msgstr "ΠοÏτογαλικά - διάλεκτος Î’Ïαζιλίας" - -#: conf/global_settings.py:94 -msgid "Romanian" -msgstr "Ρουμανικά" - -#: conf/global_settings.py:95 -msgid "Russian" -msgstr "Ρωσικά" - -#: conf/global_settings.py:96 -msgid "Slovak" -msgstr "Σλοβακικά" - -#: conf/global_settings.py:97 -msgid "Slovenian" -msgstr "Σλοβενικά" - -#: conf/global_settings.py:98 -msgid "Albanian" -msgstr "Αλβανικά" - -#: conf/global_settings.py:99 -msgid "Serbian" -msgstr "ΣεÏβικά" - -#: conf/global_settings.py:100 -msgid "Serbian Latin" -msgstr "ΣέÏβικα Λατινικά" - -#: conf/global_settings.py:101 -msgid "Swedish" -msgstr "Σουηδικά" - -#: conf/global_settings.py:102 -msgid "Tamil" -msgstr "Διάλεκτος Ταμίλ" - -#: conf/global_settings.py:103 -msgid "Telugu" -msgstr "ΤελοÏγκου" - -#: conf/global_settings.py:104 -msgid "Thai" -msgstr "Ταϊλάνδης" - -#: conf/global_settings.py:105 -msgid "Turkish" -msgstr "ΤουÏκικά" - -#: conf/global_settings.py:106 -msgid "Ukrainian" -msgstr "ΟυκÏανικά" - -#: conf/global_settings.py:107 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:108 -msgid "Vietnamese" -msgstr "Βιετναμέζικα" - -#: conf/global_settings.py:109 -msgid "Simplified Chinese" -msgstr "Απλοποιημένα Κινέζικα" - -#: conf/global_settings.py:110 -msgid "Traditional Chinese" -msgstr "ΠαÏαδοσιακά Κινέζικα" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Εισάγετε μια έγκυÏη τιμή." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Αυτό το URL φαίνεται να είναι ένας χαλασμένος σÏνδεσμος." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Εισάγετε ένα έγκυÏο URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Εισάγετε μια έγκυÏη διεÏθυνση ηλ. ταχυδÏομείου." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Ένα έγκυÏο 'slug' αποτελείται από γÏάμματα, αÏιθμοÏÏ‚, παÏλες ή κάτω παÏλες." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Εισάγετε μια έγκυÏη διεÏθυνση IPv4." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Εισάγετε μόνο ψηφία χωÏισμένα με κόμματα." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Βεβαιωθείτε ότι η τιμή είναι %(limit_value)s (η τιμή που καταχωÏήσατε είναι %" -"(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Βεβαιωθείτε ότι η τιμή είναι μικÏότεÏη ή ίση από %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Βεβαιωθείτε ότι η τιμή είναι μεγαλÏτεÏη ή ίση από %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Βεβαιωθείτε ότι η τιμή έχει μέγεθος τουλάχιστον %(limit_value)d χαÏακτήÏες " -"(η τιμή που καταχωÏήσατε έχει %(show_value)d χαÏακτήÏες)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Βεβαιωθείτε ότι η τιμή έχει το Ï€Î¿Î»Ï %(limit_value)d χαÏακτήÏες (η τιμή που " -"καταχωÏήσατε έχει %(show_value)d χαÏακτήÏες)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -" %(field_name)s Ï€Ïέπει να είναι μοναδικό για %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s με αυτό το %(field_label)s υπάÏχει ήδη." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "και" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Η τιμή %r δεν είναι έγκυÏη επιλογή." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Αυτό το πεδίο δεν μποÏεί να είναι κενό (null)." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Το πεδίο αυτό δεν μποÏεί να είναι κενό." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Είδος πεδίου: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "ΑκέÏαιος" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Αυτή η τιμή Ï€Ïέπει να είναι ένας ακέÏαιος." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Αυτή η τιμή Ï€Ïέπει να είναι Αληθές ή Ψευδές." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (Είτε Αληθές ή Ψευδές)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "ΣυμβολοσειÏά (μέχÏι %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "ΑκέÏαιοι χωÏισμένοι με κόμματα" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "ΗμεÏομηνία (χωÏίς την ÏŽÏα)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Εισάγετε μία έγκυÏη ημεÏομηνία στη μοÏφή ΧΧΧΧ-MM-ΗΗ." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "ΆκυÏη ημεÏομηνία: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Εισάγετε μία έγκυÏη ημεÏομηνία και ÏŽÏα στη μοÏφή: YYYY-MM-DD HH:MM[:ss[." -"uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "ΗμεÏομηνία (με την ÏŽÏα)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Η τιμή αυτή Ï€Ïέπει να είναι δεκαδικός αÏιθμός." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Δεκαδικός αÏιθμός" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ΗλεκτÏονική διεÏθυνση" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Τοποθεσία αÏχείου" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Η τιμή αυτή Ï€Ïέπει να είναι αÏιθμός κινητής υποδιαστολής." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "ΑÏιθμός κινητής υποδιαστολής" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Μεγάλος ακέÏαιος - big integer (8 bytes)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "διεÏθυνση IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "H τιμή Ï€Ïέπει να είναι κάποια από τις None, True ή False" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (Αληθές, Ψευδές, ή τίποτα)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Κείμενο" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "ÎÏα" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Εισάγετε μία έγκυÏη ÏŽÏα στη μοÏφή: HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Κείμενο XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Το μοντέλο %(model)s με Ï€ÏωτεÏον κλειδί %(pk)r δεν υπάÏχει." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" -"ΕξωτεÏικό Κλειδί - Foreign Key (ο Ï„Ïπος καθοÏίζεται από το πεδίο του " -"συσχετισμοÏ)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Σχέση ένα-Ï€Ïος-ένα" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Σχέση πολλά-Ï€Ïος-πολλά" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"ΚÏατήστε πατημένο το πλήκτÏο \"Control\" ή σε Mac το πλήκτÏο \"Command\" για " -"να επιλέξετε πεÏισσότεÏα από ένα." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Αυτό το πεδίο είναι απαÏαίτητο." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Εισάγετε έναν ακέÏαιο αÏιθμό." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Εισάγετε έναν αÏιθμό." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Βεβαιωθείτε ότι δεν υπάÏχουν πάνω από %s ψηφία συνολικά." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Βεβαιωθείτε ότι δεν υπάÏχουν πάνω από %s δεκαδικά ψηφία." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Βεβαιωθείτε ότι δεν υπάÏχουν πάνω από %s ψηφία Ï€Ïιν την υποδιαστολή." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Εισάγετε μια έγκυÏη ημεÏομηνία." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Εισάγετε μια έγκυÏη ÏŽÏα." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Εισάγετε μια έγκυÏη ημεÏομηνία/ÏŽÏα." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"Δεν έχει υποβληθεί κάποιο αÏχείο. Ελέγξτε τον Ï„Ïπο κωδικοποίησης στη φόÏμα." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Δεν έχει υποβληθεί κάποιο αÏχείο." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Το αÏχείο που υποβλήθηκε είναι κενό." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Βεβαιωθείτε ότι το όνομα του αÏχείου έχει μέγιστο μήκος %(max)d χαÏακτήÏες " -"(Ï„ÏŽÏα έχει %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Βεβαιωθείτε ότι είτε έχετε επιλέξει ένα αÏχείο για αποστολή είτε έχετε " -"επιλέξει την εκκαθάÏιση του πεδίου. Δεν είναι δυνατή η επιλογή και των δÏο " -"ταυτοχÏόνως." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Βεβεαιωθείτε ότι το αÏχείο που έχετε επιλέξει για αποστολή είναι αÏχείο " -"εικόνας. Το Ï„Ïέχον είτε δεν ήταν εικόνα είτε έχει υποστεί φθοÏά." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Βεβαιωθείτε ότι έχετε επιλέξει μία έγκυÏη επιλογή. Η τιμή %(value)s δεν " -"είναι διαθέσιμη Ï€Ïος επιλογή." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Εισάγετε μια λίστα τιμών." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ταξινόμηση" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "ΔιαγÏαφή" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Στο %(field)s έχετε ξαναεισάγει τα ίδια δεδομένα." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Στο %(field)s έχετε ξαναεισάγει τα ίδια δεδομένα. Θα Ï€Ïέπει να εμφανίζονται " -"μία φοÏά. " - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Στο %(field_name)s έχετε ξαναεισάγει τα ίδια δεδομένα. Θα Ï€Ïέπει να " -"εμφανίζονται μία φοÏά για το %(lookup)s στο %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Έχετε ξαναεισάγει την ίδια τιμη. Βεβαιωθείτε ότι είναι μοναδική." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Το ενσωματωμένο εξωτεÏικό κλειδί δεν αντιστοιχεί με το κλειδί του " -"αντικειμένου από το οποίο πηγάζει." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Επιλέξτε μια έγκυÏη επιλογή. Η επιλογή αυτή δεν είναι μία από τις διαθέσιμες " -"επιλογές." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" -"Επιλέξτε μια έγκυÏη επιλογή. Η επιλογή %s δεν είναι μία από τις διαθέσιμες " -"επιλογές." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "Η %s δεν είναι έγκυÏη επιλογή σαν Ï€ÏωτεÏον κλειδί." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "ΤώÏα" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "ΕπεξεÏγασία" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ΕκκαθάσÏιση" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Άγνωστο" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Îαι" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Όχι" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ναι,όχι,ίσως" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bytes" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "μμ." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "πμ." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "ΜΜ" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "ΠΜ" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "μεσάνυχτα" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "μεσημέÏι" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "ΔευτέÏα" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "ΤÏίτη" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "ΤετάÏτη" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Πέμπτη" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "ΠαÏασκευή" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Σάββατο" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "ΚυÏιακή" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Δευ" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "ΤÏί" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Τετ" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Πέμ" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "ΠαÏ" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Σαβ" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ΚυÏ" - -#: utils/dates.py:18 -msgid "January" -msgstr "ΙανουάÏιος" - -#: utils/dates.py:18 -msgid "February" -msgstr "ΦεβÏουάÏιος" - -#: utils/dates.py:18 -msgid "March" -msgstr "ΜάÏτιος" - -#: utils/dates.py:18 -msgid "April" -msgstr "ΑπÏίλιος" - -#: utils/dates.py:18 -msgid "May" -msgstr "Μάιος" - -#: utils/dates.py:18 -msgid "June" -msgstr "ΙοÏνιος" - -#: utils/dates.py:19 -msgid "July" -msgstr "ΙοÏλιος" - -#: utils/dates.py:19 -msgid "August" -msgstr "ΑÏγουστος" - -#: utils/dates.py:19 -msgid "September" -msgstr "ΣεπτέμβÏιος" - -#: utils/dates.py:19 -msgid "October" -msgstr "ΟκτώβÏιος" - -#: utils/dates.py:19 -msgid "November" -msgstr "ÎοέμβÏιος" - -#: utils/dates.py:20 -msgid "December" -msgstr "ΔεκέμβÏιος" - -#: utils/dates.py:23 -msgid "jan" -msgstr "Ιαν" - -#: utils/dates.py:23 -msgid "feb" -msgstr "Φεβ" - -#: utils/dates.py:23 -msgid "mar" -msgstr "ΜάÏ" - -#: utils/dates.py:23 -msgid "apr" -msgstr "ΑπÏ" - -#: utils/dates.py:23 -msgid "may" -msgstr "Μάι" - -#: utils/dates.py:23 -msgid "jun" -msgstr "ΙοÏν" - -#: utils/dates.py:24 -msgid "jul" -msgstr "ΙοÏλ" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ΑÏγ" - -#: utils/dates.py:24 -msgid "sep" -msgstr "Σεπ" - -#: utils/dates.py:24 -msgid "oct" -msgstr "Οκτ" - -#: utils/dates.py:24 -msgid "nov" -msgstr "Îοέ" - -#: utils/dates.py:24 -msgid "dec" -msgstr "Δεκ" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Ιαν." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Φεβ." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "ΜάÏτιος" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "ΑπÏίλ." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Μάιος" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "ΙοÏν." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "ΙοÏλ." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "ΑÏγ." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Σεπτ." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Οκτ." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Îοέμ." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Δεκ." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "ΙανουαÏίου" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "ΦεβÏουαÏίου" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "ΜαÏτίου" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "ΑπÏιλίου" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "ΜαÎου" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Ιουνίου" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Ιουλίου" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "ΑυγοÏστου" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "ΣεπτεμβÏίου" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "ΟκτωβÏίου" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "ÎοεμβÏίου" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "ΔεκεμβÏίου" - -#: utils/text.py:136 -msgid "or" -msgstr "ή" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "χÏόνος" -msgstr[1] "χÏόνια" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "μήνας" -msgstr[1] "μήνες" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "εβδομάδα" -msgstr[1] "εβδομάδες" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "ημέÏα" -msgstr[1] "ημέÏες" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "ÏŽÏα" -msgstr[1] "ÏŽÏες" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "λεπτό" -msgstr[1] "λεπτά" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "λεπτά" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:578 -msgid "DATE_FORMAT" -msgstr "j N Y" - -#: utils/translation/trans_real.py:579 -msgid "DATETIME_FORMAT" -msgstr "j N Y, P" - -#: utils/translation/trans_real.py:580 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:601 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:602 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "Επιτυχής δημιουÏγία του %(verbose_name)s." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "Επιτυχής ανανέωση του %(verbose_name)s." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "ΠÏαγματοποιήθηκε διαγÏαφή του %(verbose_name)s." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Δεν έχει οÏιστεί χÏονιά" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Δεν έχει οÏιστεί μήνας" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Δεν έχει οÏιστεί μέÏα" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Δεν έχει οÏιστεί εβδομάδα" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Δεν υπάÏχουν διαθέσιμα %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Μελλοντικά %(verbose_name_plural)s δεν είναι διαθέσιμα διότι δεν έχει τεθεί " -"το %(class_name)s.allow_future." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" -"Λανθασμένη αναπαÏάσταση ημεÏομηνίας '%(datestr)s' για την επιλεγμένη μοÏφή '%" -"(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Δεν βÏέθηκαν %(verbose_name)s που να ικανοποιοÏν την αναζήτηση." - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Η σελίδα δεν έχει την τιμή 'last' υποδηλώνοντας την τελευταία σελίδα, οÏτε " -"μποÏεί να μετατÏαπεί σε ακέÏαιο." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Μη διαθέσιμη σελίδα (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Άδεια λίστα ενώ '%(class_name)s.allow_empty' δεν έχει τεθεί." diff --git a/lib/python2.7/site-packages/django/conf/locale/el/__init__.py b/lib/python2.7/site-packages/django/conf/locale/el/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/el/formats.py b/lib/python2.7/site-packages/django/conf/locale/el/formats.py deleted file mode 100644 index 9226490a3..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/el/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'd E Y' -TIME_FORMAT = 'g:i:s A' -# DATETIME_FORMAT = -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'd M Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo deleted file mode 100644 index 5431e4a13..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/en/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/en/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/en/LC_MESSAGES/django.po deleted file mode 100644 index 61090a2d8..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/en/LC_MESSAGES/django.po +++ /dev/null @@ -1,1127 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 20:57+0100\n" -"PO-Revision-Date: 2010-05-13 15:35+0200\n" -"Last-Translator: Django team\n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Nicaraguan Spanish" -msgstr "" - -#: conf/global_settings.py:61 -msgid "Estonian" -msgstr "" - -#: conf/global_settings.py:62 -msgid "Basque" -msgstr "" - -#: conf/global_settings.py:63 -msgid "Persian" -msgstr "" - -#: conf/global_settings.py:64 -msgid "Finnish" -msgstr "" - -#: conf/global_settings.py:65 -msgid "French" -msgstr "" - -#: conf/global_settings.py:66 -msgid "Frisian" -msgstr "" - -#: conf/global_settings.py:67 -msgid "Irish" -msgstr "" - -#: conf/global_settings.py:68 -msgid "Galician" -msgstr "" - -#: conf/global_settings.py:69 -msgid "Hebrew" -msgstr "" - -#: conf/global_settings.py:70 -msgid "Hindi" -msgstr "" - -#: conf/global_settings.py:71 -msgid "Croatian" -msgstr "" - -#: conf/global_settings.py:72 -msgid "Hungarian" -msgstr "" - -#: conf/global_settings.py:73 -msgid "Indonesian" -msgstr "" - -#: conf/global_settings.py:74 -msgid "Icelandic" -msgstr "" - -#: conf/global_settings.py:75 -msgid "Italian" -msgstr "" - -#: conf/global_settings.py:76 -msgid "Japanese" -msgstr "" - -#: conf/global_settings.py:77 -msgid "Georgian" -msgstr "" - -#: conf/global_settings.py:78 -msgid "Khmer" -msgstr "" - -#: conf/global_settings.py:79 -msgid "Kannada" -msgstr "" - -#: conf/global_settings.py:80 -msgid "Korean" -msgstr "" - -#: conf/global_settings.py:81 -msgid "Lithuanian" -msgstr "" - -#: conf/global_settings.py:82 -msgid "Latvian" -msgstr "" - -#: conf/global_settings.py:83 -msgid "Macedonian" -msgstr "" - -#: conf/global_settings.py:84 -msgid "Malayalam" -msgstr "" - -#: conf/global_settings.py:85 -msgid "Mongolian" -msgstr "" - -#: conf/global_settings.py:86 -msgid "Dutch" -msgstr "" - -#: conf/global_settings.py:87 -msgid "Norwegian" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:90 -msgid "Punjabi" -msgstr "" - -#: conf/global_settings.py:91 -msgid "Polish" -msgstr "" - -#: conf/global_settings.py:92 -msgid "Portuguese" -msgstr "" - -#: conf/global_settings.py:93 -msgid "Brazilian Portuguese" -msgstr "" - -#: conf/global_settings.py:94 -msgid "Romanian" -msgstr "" - -#: conf/global_settings.py:95 -msgid "Russian" -msgstr "" - -#: conf/global_settings.py:96 -msgid "Slovak" -msgstr "" - -#: conf/global_settings.py:97 -msgid "Slovenian" -msgstr "" - -#: conf/global_settings.py:98 -msgid "Albanian" -msgstr "" - -#: conf/global_settings.py:99 -msgid "Serbian" -msgstr "" - -#: conf/global_settings.py:100 -msgid "Serbian Latin" -msgstr "" - -#: conf/global_settings.py:101 -msgid "Swedish" -msgstr "" - -#: conf/global_settings.py:102 -msgid "Tamil" -msgstr "" - -#: conf/global_settings.py:103 -msgid "Telugu" -msgstr "" - -#: conf/global_settings.py:104 -msgid "Thai" -msgstr "" - -#: conf/global_settings.py:105 -msgid "Turkish" -msgstr "" - -#: conf/global_settings.py:106 -msgid "Ukrainian" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Vietnamese" -msgstr "" - -#: conf/global_settings.py:109 -msgid "Simplified Chinese" -msgstr "" - -#: conf/global_settings.py:110 -msgid "Traditional Chinese" -msgstr "" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "" - -#: forms/widgets.py:548 -msgid "No" -msgstr "" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "" -msgstr[1] "" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "" - -#: utils/dates.py:18 -msgid "January" -msgstr "" - -#: utils/dates.py:18 -msgid "February" -msgstr "" - -#: utils/dates.py:18 -msgid "March" -msgstr "" - -#: utils/dates.py:18 -msgid "April" -msgstr "" - -#: utils/dates.py:18 -msgid "May" -msgstr "" - -#: utils/dates.py:18 -msgid "June" -msgstr "" - -#: utils/dates.py:19 -msgid "July" -msgstr "" - -#: utils/dates.py:19 -msgid "August" -msgstr "" - -#: utils/dates.py:19 -msgid "September" -msgstr "" - -#: utils/dates.py:19 -msgid "October" -msgstr "" - -#: utils/dates.py:19 -msgid "November" -msgstr "" - -#: utils/dates.py:20 -msgid "December" -msgstr "" - -#: utils/dates.py:23 -msgid "jan" -msgstr "" - -#: utils/dates.py:23 -msgid "feb" -msgstr "" - -#: utils/dates.py:23 -msgid "mar" -msgstr "" - -#: utils/dates.py:23 -msgid "apr" -msgstr "" - -#: utils/dates.py:23 -msgid "may" -msgstr "" - -#: utils/dates.py:23 -msgid "jun" -msgstr "" - -#: utils/dates.py:24 -msgid "jul" -msgstr "" - -#: utils/dates.py:24 -msgid "aug" -msgstr "" - -#: utils/dates.py:24 -msgid "sep" -msgstr "" - -#: utils/dates.py:24 -msgid "oct" -msgstr "" - -#: utils/dates.py:24 -msgid "nov" -msgstr "" - -#: utils/dates.py:24 -msgid "dec" -msgstr "" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "" - -#: utils/text.py:136 -msgid "or" -msgstr "" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr "" - -#: utils/translation/trans_real.py:578 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:579 -msgid "DATETIME_FORMAT" -msgstr "N j, Y, P" - -#: utils/translation/trans_real.py:580 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:601 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:602 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/en/__init__.py b/lib/python2.7/site-packages/django/conf/locale/en/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/en/formats.py b/lib/python2.7/site-packages/django/conf/locale/en/formats.py deleted file mode 100644 index 68a927632..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/en/formats.py +++ /dev/null @@ -1,43 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'N j, Y' -TIME_FORMAT = 'P' -DATETIME_FORMAT = 'N j, Y, P' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'F j' -SHORT_DATE_FORMAT = 'm/d/Y' -SHORT_DATETIME_FORMAT = 'm/d/Y P' -FIRST_DAY_OF_WEEK = 0 # Sunday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' - # '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006' - # '%d %b %Y', '%d %b, %Y', # '25 Oct 2006', '25 Oct, 2006' - # '%B %d %Y', '%B %d, %Y', # 'October 25 2006', 'October 25, 2006' - # '%d %B %Y', '%d %B, %Y', # '25 October 2006', '25 October, 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%m/%d/%Y %H:%M:%S', # '10/25/2006 14:30:59' - '%m/%d/%Y %H:%M', # '10/25/2006 14:30' - '%m/%d/%Y', # '10/25/2006' - '%m/%d/%y %H:%M:%S', # '10/25/06 14:30:59' - '%m/%d/%y %H:%M', # '10/25/06 14:30' - '%m/%d/%y', # '10/25/06' -) -DECIMAL_SEPARATOR = u'.' -THOUSAND_SEPARATOR = u',' -NUMBER_GROUPING = 3 - diff --git a/lib/python2.7/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo deleted file mode 100644 index a7e351048..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.po deleted file mode 100644 index 416a847f6..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/en_GB/LC_MESSAGES/django.po +++ /dev/null @@ -1,1142 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 20:57+0100\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: jon_atkinson \n" -"Language-Team: English (United Kingdom) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabic" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgarian" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengali" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnian" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalan" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Czech" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Welsh" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Danish" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "German" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Greek" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "English" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "British English" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spanish" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentinian Spanish" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -#, fuzzy -msgid "Nicaraguan Spanish" -msgstr "Argentinian Spanish" - -#: conf/global_settings.py:61 -msgid "Estonian" -msgstr "Estonian" - -#: conf/global_settings.py:62 -msgid "Basque" -msgstr "Basque" - -#: conf/global_settings.py:63 -msgid "Persian" -msgstr "Persian" - -#: conf/global_settings.py:64 -msgid "Finnish" -msgstr "Finnish" - -#: conf/global_settings.py:65 -msgid "French" -msgstr "French" - -#: conf/global_settings.py:66 -msgid "Frisian" -msgstr "Frisian" - -#: conf/global_settings.py:67 -msgid "Irish" -msgstr "Irish" - -#: conf/global_settings.py:68 -msgid "Galician" -msgstr "Galician" - -#: conf/global_settings.py:69 -msgid "Hebrew" -msgstr "Hebrew" - -#: conf/global_settings.py:70 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:71 -msgid "Croatian" -msgstr "Croatian" - -#: conf/global_settings.py:72 -msgid "Hungarian" -msgstr "Hungarian" - -#: conf/global_settings.py:73 -msgid "Indonesian" -msgstr "Indonesian" - -#: conf/global_settings.py:74 -msgid "Icelandic" -msgstr "Icelandic" - -#: conf/global_settings.py:75 -msgid "Italian" -msgstr "Italian" - -#: conf/global_settings.py:76 -msgid "Japanese" -msgstr "Japanese" - -#: conf/global_settings.py:77 -msgid "Georgian" -msgstr "Georgian" - -#: conf/global_settings.py:78 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:79 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:80 -msgid "Korean" -msgstr "Korean" - -#: conf/global_settings.py:81 -msgid "Lithuanian" -msgstr "Lithuanian" - -#: conf/global_settings.py:82 -msgid "Latvian" -msgstr "Latvian" - -#: conf/global_settings.py:83 -msgid "Macedonian" -msgstr "Macedonian" - -#: conf/global_settings.py:84 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:85 -msgid "Mongolian" -msgstr "Mongolian" - -#: conf/global_settings.py:86 -msgid "Dutch" -msgstr "Dutch" - -#: conf/global_settings.py:87 -msgid "Norwegian" -msgstr "Norwegian" - -#: conf/global_settings.py:88 -msgid "Norwegian Bokmal" -msgstr "Norwegian Bokmal" - -#: conf/global_settings.py:89 -msgid "Norwegian Nynorsk" -msgstr "Norwegian Nynorsk" - -#: conf/global_settings.py:90 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:91 -msgid "Polish" -msgstr "Polish" - -#: conf/global_settings.py:92 -msgid "Portuguese" -msgstr "Portuguese" - -#: conf/global_settings.py:93 -msgid "Brazilian Portuguese" -msgstr "Brazilian Portuguese" - -#: conf/global_settings.py:94 -msgid "Romanian" -msgstr "Romanian" - -#: conf/global_settings.py:95 -msgid "Russian" -msgstr "Russian" - -#: conf/global_settings.py:96 -msgid "Slovak" -msgstr "Slovak" - -#: conf/global_settings.py:97 -msgid "Slovenian" -msgstr "Slovenian" - -#: conf/global_settings.py:98 -msgid "Albanian" -msgstr "Albanian" - -#: conf/global_settings.py:99 -msgid "Serbian" -msgstr "Serbian" - -#: conf/global_settings.py:100 -msgid "Serbian Latin" -msgstr "Serbian Latin" - -#: conf/global_settings.py:101 -msgid "Swedish" -msgstr "Swedish" - -#: conf/global_settings.py:102 -msgid "Tamil" -msgstr "Tamil" - -#: conf/global_settings.py:103 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:104 -msgid "Thai" -msgstr "Thai" - -#: conf/global_settings.py:105 -msgid "Turkish" -msgstr "Turkish" - -#: conf/global_settings.py:106 -msgid "Ukrainian" -msgstr "Ukrainian" - -#: conf/global_settings.py:107 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Vietnamese" -msgstr "Vietnamese" - -#: conf/global_settings.py:109 -msgid "Simplified Chinese" -msgstr "Simplified Chinese" - -#: conf/global_settings.py:110 -msgid "Traditional Chinese" -msgstr "Traditional Chinese" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Enter a valid value." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "This URL appears to be a broken link." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Enter a valid URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Enter a valid e-mail address." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Enter a valid IPv4 address." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Enter only digits separated by commas." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Ensure this value is %(limit_value)s (it is %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Ensure this value is less than or equal to %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Ensure this value is greater than or equal to %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s must be unique for %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s with this %(field_label)s already exists." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "and" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Value %r is not a valid choice." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "This field cannot be null." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "This field cannot be blank." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Field of type: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Integer" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "This value must be an integer." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "This value must be either True or False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (Either True or False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "String (up to %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Comma-separated integers" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Date (without time)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Enter a valid date in YYYY-MM-DD format." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Invalid date: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Date (with time)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "This value must be a decimal number." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Decimal number" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mail address" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "File path" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "This value must be a float." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Floating point number" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Big (8 byte) integer" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP address" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "This value must be either None, True or False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (Either True, False or None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Text" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Time" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML text" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Model %(model)s with pk %(pk)r does not exist." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Foreign Key (type determined by related field)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "One-to-one relationship" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Many-to-many relationship" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "This field is required." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Enter a whole number." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Enter a number." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Ensure that there are no more than %s digits in total." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Ensure that there are no more than %s decimal places." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Ensure that there are no more than %s digits before the decimal point." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Enter a valid date." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Enter a valid time." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Enter a valid date/time." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "No file was submitted. Check the encoding type on the form." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "No file was submitted." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "The submitted file is empty." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Please either submit a file or check the clear checkbox, not both." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Select a valid choice. %(value)s is not one of the available choices." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Enter a list of values." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Order" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Delete" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Please correct the duplicate data for %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Please correct the duplicate data for %(field)s, which must be unique." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Please correct the duplicate values below." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "The inline foreign key did not match the parent instance primary key." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Select a valid choice. That choice is not one of the available choices." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Select a valid choice. %s is not one of the available choices." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" is not a valid value for a primary key." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Currently" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Change" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Clear" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Unknown" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Yes" - -#: forms/widgets.py:548 -msgid "No" -msgstr "No" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "yes,no,maybe" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "midnight" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "noon" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Monday" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Tuesday" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Wednesday" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Thursday" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Friday" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Saturday" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Sunday" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Mon" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Tue" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Wed" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Thu" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Fri" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sat" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Sun" - -#: utils/dates.py:18 -msgid "January" -msgstr "January" - -#: utils/dates.py:18 -msgid "February" -msgstr "February" - -#: utils/dates.py:18 -msgid "March" -msgstr "March" - -#: utils/dates.py:18 -msgid "April" -msgstr "April" - -#: utils/dates.py:18 -msgid "May" -msgstr "May" - -#: utils/dates.py:18 -msgid "June" -msgstr "June" - -#: utils/dates.py:19 -msgid "July" -msgstr "July" - -#: utils/dates.py:19 -msgid "August" -msgstr "August" - -#: utils/dates.py:19 -msgid "September" -msgstr "September" - -#: utils/dates.py:19 -msgid "October" -msgstr "October" - -#: utils/dates.py:19 -msgid "November" -msgstr "November" - -#: utils/dates.py:20 -msgid "December" -msgstr "December" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "may" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "oct" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "March" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "May" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "June" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "July" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Aug." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Oct." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dec." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "January" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "February" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "March" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "May" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "June" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "July" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "August" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "September" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "October" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "November" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "December" - -#: utils/text.py:136 -msgid "or" -msgstr "or" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "year" -msgstr[1] "years" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "month" -msgstr[1] "months" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "week" -msgstr[1] "weeks" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "day" -msgstr[1] "days" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "hour" -msgstr[1] "hours" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minute" -msgstr[1] "minutes" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutes" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:578 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:579 -msgid "DATETIME_FORMAT" -msgstr "N j, Y, P" - -#: utils/translation/trans_real.py:580 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:601 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:602 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "The %(verbose_name)s was created successfully." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "The %(verbose_name)s was updated successfully." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "The %(verbose_name)s was deleted." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/en_GB/__init__.py b/lib/python2.7/site-packages/django/conf/locale/en_GB/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/en_GB/formats.py b/lib/python2.7/site-packages/django/conf/locale/en_GB/formats.py deleted file mode 100644 index ffffdebe3..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/en_GB/formats.py +++ /dev/null @@ -1,44 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'N j, Y' # 'Oct. 25, 2006' -TIME_FORMAT = 'P' # '2:30 pm' -DATETIME_FORMAT = 'N j, Y, P' # 'Oct. 25, 2006, 2:30 pm' -YEAR_MONTH_FORMAT = 'F Y' # 'October 2006' -MONTH_DAY_FORMAT = 'F j' # 'October 25' -SHORT_DATE_FORMAT = 'd/m/Y' # '25/10/2006' -SHORT_DATETIME_FORMAT = 'd/m/Y P' # '25/10/2006 2:30 pm' -FIRST_DAY_OF_WEEK = 0 # Sunday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' - '%Y-%m-%d', # '2006-10-25' - # '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006' - # '%d %b %Y', '%d %b, %Y', # '25 Oct 2006', '25 Oct, 2006' - # '%B %d %Y', '%B %d, %Y', # 'October 25 2006', 'October 25, 2006' - # '%d %B %Y', '%d %B, %Y', # '25 October 2006', '25 October, 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%d/%m/%Y %H:%M:%S', # '25/10/2006 14:30:59' - '%d/%m/%Y %H:%M', # '25/10/2006 14:30' - '%d/%m/%Y', # '25/10/2006' - '%d/%m/%y %H:%M:%S', # '25/10/06 14:30:59' - '%d/%m/%y %H:%M', # '25/10/06 14:30' - '%d/%m/%y', # '25/10/06' -) -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -NUMBER_GROUPING = 3 - diff --git a/lib/python2.7/site-packages/django/conf/locale/es/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/es/LC_MESSAGES/django.mo deleted file mode 100644 index b05c07da6..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/es/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/es/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/es/LC_MESSAGES/django.po deleted file mode 100644 index 7d624d015..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/es/LC_MESSAGES/django.po +++ /dev/null @@ -1,1154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 20:58+0100\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: aaloy \n" -"Language-Team: Spanish (Castilian) <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "árabe" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "búlgaro" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengalí" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosnio" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "catalán" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "checo" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "galés" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "danés" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "alemán" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "griego" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "inglés" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "inglés británico" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "español" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "español de Argentina" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -#, fuzzy -msgid "Nicaraguan Spanish" -msgstr "español de Argentina" - -#: conf/global_settings.py:61 -msgid "Estonian" -msgstr "estonio" - -#: conf/global_settings.py:62 -msgid "Basque" -msgstr "vasco" - -#: conf/global_settings.py:63 -msgid "Persian" -msgstr "persa" - -#: conf/global_settings.py:64 -msgid "Finnish" -msgstr "finés" - -#: conf/global_settings.py:65 -msgid "French" -msgstr "francés" - -#: conf/global_settings.py:66 -msgid "Frisian" -msgstr "frisón" - -#: conf/global_settings.py:67 -msgid "Irish" -msgstr "irlandés" - -#: conf/global_settings.py:68 -msgid "Galician" -msgstr "gallego" - -#: conf/global_settings.py:69 -msgid "Hebrew" -msgstr "hebreo" - -#: conf/global_settings.py:70 -msgid "Hindi" -msgstr "hindi" - -#: conf/global_settings.py:71 -msgid "Croatian" -msgstr "croata" - -#: conf/global_settings.py:72 -msgid "Hungarian" -msgstr "húngaro" - -#: conf/global_settings.py:73 -msgid "Indonesian" -msgstr "indonesio" - -#: conf/global_settings.py:74 -msgid "Icelandic" -msgstr "islandés" - -#: conf/global_settings.py:75 -msgid "Italian" -msgstr "italiano" - -#: conf/global_settings.py:76 -msgid "Japanese" -msgstr "japonés" - -#: conf/global_settings.py:77 -msgid "Georgian" -msgstr "georgiano" - -#: conf/global_settings.py:78 -msgid "Khmer" -msgstr "khmer" - -#: conf/global_settings.py:79 -msgid "Kannada" -msgstr "kannada" - -#: conf/global_settings.py:80 -msgid "Korean" -msgstr "koreano" - -#: conf/global_settings.py:81 -msgid "Lithuanian" -msgstr "lituano" - -#: conf/global_settings.py:82 -msgid "Latvian" -msgstr "letón" - -#: conf/global_settings.py:83 -msgid "Macedonian" -msgstr "macedonio" - -#: conf/global_settings.py:84 -msgid "Malayalam" -msgstr "malayalam" - -#: conf/global_settings.py:85 -msgid "Mongolian" -msgstr "mongol" - -#: conf/global_settings.py:86 -msgid "Dutch" -msgstr "holandés" - -#: conf/global_settings.py:87 -msgid "Norwegian" -msgstr "noruego" - -#: conf/global_settings.py:88 -msgid "Norwegian Bokmal" -msgstr "bokmÃ¥l" - -#: conf/global_settings.py:89 -msgid "Norwegian Nynorsk" -msgstr "nynorsk" - -#: conf/global_settings.py:90 -msgid "Punjabi" -msgstr "panyabí" - -#: conf/global_settings.py:91 -msgid "Polish" -msgstr "polaco" - -#: conf/global_settings.py:92 -msgid "Portuguese" -msgstr "portugués" - -#: conf/global_settings.py:93 -msgid "Brazilian Portuguese" -msgstr "portugués de Brasil" - -#: conf/global_settings.py:94 -msgid "Romanian" -msgstr "rumano" - -#: conf/global_settings.py:95 -msgid "Russian" -msgstr "ruso" - -#: conf/global_settings.py:96 -msgid "Slovak" -msgstr "eslovaco" - -#: conf/global_settings.py:97 -msgid "Slovenian" -msgstr "esloveno" - -#: conf/global_settings.py:98 -msgid "Albanian" -msgstr "albanés" - -#: conf/global_settings.py:99 -msgid "Serbian" -msgstr "serbio" - -#: conf/global_settings.py:100 -msgid "Serbian Latin" -msgstr "serbio latino" - -#: conf/global_settings.py:101 -msgid "Swedish" -msgstr "sueco" - -#: conf/global_settings.py:102 -msgid "Tamil" -msgstr "tamil" - -#: conf/global_settings.py:103 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:104 -msgid "Thai" -msgstr "tailandés" - -#: conf/global_settings.py:105 -msgid "Turkish" -msgstr "turco" - -#: conf/global_settings.py:106 -msgid "Ukrainian" -msgstr "ucraniano" - -#: conf/global_settings.py:107 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Vietnamese" -msgstr "vietnamita" - -#: conf/global_settings.py:109 -msgid "Simplified Chinese" -msgstr "chino simplificado" - -#: conf/global_settings.py:110 -msgid "Traditional Chinese" -msgstr "chino tradicional" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Introduzca un valor correcto." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "La URL parece ser un enlace roto." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Introduzca una URL válida." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Introduzca una dirección de correo electrónico válida." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Introduzca un 'slug' válido, consistente en letras, números, guiones bajos o " -"medios." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Introduzca una dirección IPv4 válida." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Introduzca sólo dígitos separados por comas." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Asegúrese de que este valor es %(limit_value)s (actualmente es %(show_value)" -"s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Asegúrese de que este valor es menor o igual a %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Asegúrese de que este valor es mayor o igual a %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Asegúrese de que este valor tiene al menos %(limit_value)d caracteres " -"(actualmente tiene %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Asegúrese de que este valor tiene a lo más %(limit_value)d caracteres " -"(actualmente tiene %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "El campo %(field_name)s debe ser único para %(lookup)s %(date_field)s" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "Ya existe %(model_name)s con este %(field_label)s." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "y" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "El valor %r no es una opción válida." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Este campo no puede estar vacío." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Este campo no puede estar vacío." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Campo de tipo: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Entero" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Este valor debe ser un entero." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Este valor debe ser Verdadero o Falso." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Booleano (Verdadero o Falso)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Cadena (máximo %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Enteros separados por comas" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Fecha (sin hora)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Introduzca una fecha válida en formato AAAA-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Fecha no válida: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Introduzca una fecha/hora válida en formato AAAA-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Fecha (con hora)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Este valor debe ser un entero." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Número decimal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Dirección de correo electrónico" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Ruta de fichero" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Este valor debe ser un número con coma flotante." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Número en coma flotante" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Entero grande (8 bytes)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Dirección IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Este valor debe ser Verdadero, Falso o Ninguno." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Booleano (Verdadero, Falso o Nulo)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Texto" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Hora" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Introduzca una hora válida en formato HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Texto XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "No existe ningún objeto %(model)s con la clave primaria %(pk)r." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Llave foránea (tipo determinado por el campo relacionado)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Relación uno-a-uno" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Relación muchos-a-muchos" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Mantenga presionado \"Control\", o \"Command\" en un Mac, para seleccionar " -"más de una opción." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Este campo es obligatorio." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Introduzca un número entero." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Introduzca un número." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Asegúrese de que no hay más de %s dígitos en total." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Asegúrese de que no hay más de %s decimales." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Asegúrese de que no hay más de %s dígitos antes de la coma decimal." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Introduzca una fecha válida." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Introduzca una hora válida." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Introduzca una fecha/hora válida." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"No se ha enviado ningún fichero. Compruebe el tipo de codificación en el " -"formulario." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "No se ha enviado ningún fichero" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "El fichero enviado está vacío." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Asegúrese de que su texto tiene no más de %(max)d caracteres (actualmente " -"tiene %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Por favor envíe un fichero o marque la casilla de limpiar, pero no ambos." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Envíe una imagen válida. El fichero que ha enviado no era una imagen o se " -"trataba de una imagen corrupta." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Escoja una opción válida. %(value)s no es una de las opciones disponibles." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Introduzca una lista de valores." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Orden" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Eliminar" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Por favor, corrija el dato duplicado para %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Por favor corriga el dato duplicado para %(field)s, el cual debe ser único." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Por favor corriga los datos duplicados para %(field_name)s el cual debe ser " -"único para %(lookup)s en %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Por favor, corrija los valores duplicados abajo." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"La clave foránea en linea no coincide con la clave primaria de la instancia " -"padre." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Escoja una opción válida. Esa opción no está entre las disponibles." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Escoja una opción válida; '%s' no es una de las opciones disponibles." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" no es un valor válido para una clave primaria." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Actualmente" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Modificar" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Limpiar" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Desconocido" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Sí" - -#: forms/widgets.py:548 -msgid "No" -msgstr "No" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "sí,no,tal vez" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "media noche" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "medio día" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "lunes" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "martes" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "miércoles" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "jueves" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "viernes" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "sábado" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "domingo" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "lun" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "mar" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "mié" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "jue" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "vie" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "sáb" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "dom" - -#: utils/dates.py:18 -msgid "January" -msgstr "enero" - -#: utils/dates.py:18 -msgid "February" -msgstr "febrero" - -#: utils/dates.py:18 -msgid "March" -msgstr "marzo" - -#: utils/dates.py:18 -msgid "April" -msgstr "abril" - -#: utils/dates.py:18 -msgid "May" -msgstr "mayo" - -#: utils/dates.py:18 -msgid "June" -msgstr "junio" - -#: utils/dates.py:19 -msgid "July" -msgstr "julio" - -#: utils/dates.py:19 -msgid "August" -msgstr "agosto" - -#: utils/dates.py:19 -msgid "September" -msgstr "septiembre" - -#: utils/dates.py:19 -msgid "October" -msgstr "octubre" - -#: utils/dates.py:19 -msgid "November" -msgstr "noviembre" - -#: utils/dates.py:20 -msgid "December" -msgstr "diciembre" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ene" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "abr" - -#: utils/dates.py:23 -msgid "may" -msgstr "may" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ago" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "oct" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dic" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "ene." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mar." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "abr." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "mayo" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "jun." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "jul." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "ago." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "oct." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "dic." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "enero" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "febrero" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "marzo" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "abril" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "mayo" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "junio" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "julio" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "agosto" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "septiembre" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "octubre" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "noviembre" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "diciembre" - -#: utils/text.py:136 -msgid "or" -msgstr "o" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutos" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:578 -msgid "DATE_FORMAT" -msgstr "j N Y" - -#: utils/translation/trans_real.py:579 -msgid "DATETIME_FORMAT" -msgstr "j N Y P" - -#: utils/translation/trans_real.py:580 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:601 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:602 -msgid "MONTH_DAY_FORMAT" -msgstr "j \\de F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "El/La %(verbose_name)s se ha creado exitosamente." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "Se actualizó con éxito el %(verbose_name)s." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "El/La %(verbose_name)s ha sido borrado." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/es/__init__.py b/lib/python2.7/site-packages/django/conf/locale/es/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/es/formats.py b/lib/python2.7/site-packages/django/conf/locale/es/formats.py deleted file mode 100644 index 85070eaa5..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/es/formats.py +++ /dev/null @@ -1,35 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = r'j \de F \de Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = r'j \de F \de Y \a \l\a\s H:i' -YEAR_MONTH_FORMAT = r'F \de Y' -MONTH_DAY_FORMAT = r'j \de F' -SHORT_DATE_FORMAT = 'd/m/Y' -SHORT_DATETIME_FORMAT = 'd/m/Y H:i' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - # '31/12/2009', '31/12/09' - '%d/%m/%Y', '%d/%m/%y' -) -TIME_INPUT_FORMATS = ( - # '14:30:59', '14:30' - '%H:%M:%S', '%H:%M' -) -DATETIME_INPUT_FORMATS = ( - '%d/%m/%Y %H:%M:%S', - '%d/%m/%Y %H:%M', - '%d/%m/%y %H:%M:%S', - '%d/%m/%y %H:%M', -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 - diff --git a/lib/python2.7/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo deleted file mode 100644 index 3ba97f5fd..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po deleted file mode 100644 index 8476981b3..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/es_AR/LC_MESSAGES/django.po +++ /dev/null @@ -1,1154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:07-0400\n" -"PO-Revision-Date: 2011-03-14 02:50+0000\n" -"Last-Translator: cramm \n" -"Language-Team: Spanish (Argentinian) <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "árabe" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azerbaiyán" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "búlgaro" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengalí" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosnio" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "catalán" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "checo" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "galés" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "danés" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "alemán" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "griego" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "inglés" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "inglés británico" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "español" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "español de Argentina" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Español de México" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "estonio" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "vasco" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "persa" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "finlandés" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "francés" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "frisón" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "irlandés" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "gallego" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "hebreo" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "croata" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "húngaro" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "indonesio" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "islandés" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "italiano" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "japonés" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "georgiano" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "jémer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "canarés" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "coreano" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "lituano" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "letón" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "macedonio" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "mongol" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "holandés" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "noruego" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "bokmÃ¥l" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Panyabí" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "polaco" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "portugués" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "portugués de Brasil" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "rumano" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "ruso" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "eslovaco" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "esloveno" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "albanés" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "serbio" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Latín de Serbia" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "sueco" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "tailandés" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "turco" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ucraniano" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "vietnamita" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "chino simplificado" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "chino tradicional" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Introduzca un valor válido." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "La URL parece ser un enlace roto." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Introduzca una URL válida." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Introduzca una dirección de correo electrónico válida" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "Introduzca un 'slug' válido consistente de letras, números o guiones." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Introduzca una dirección IPv4 válida" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Introduzca sólo dígitos separados por comas." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Asegúrese de que este valor sea %(limit_value)s (actualmente es %(show_value)" -"s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Asegúrese de que este valor sea menor o igual a %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Asegúrese de que este valor sea mayor o igual a %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Asegúrese de que este valor tenga al menos %(limit_value)d caracteres (tiene " -"%(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Asegúrese de que este valor tenga como máximo %(limit_value)d caracteres " -"(tiene %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(field_name)s debe ser único/a para un %(lookup)s %(date_field)s " -"determinado." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "Ya existe un/a %(model_name)s con este/a %(field_label)s." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "y" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "El valor %r no es una opción válida." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Este campo no puede ser nulo." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Este campo no puede estar en blanco." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Campo tipo: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Entero" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Este valor debe ser un número entero." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Este valor debe ser True o False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Booleano (Verdadero o Falso)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Cadena (máximo %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Enteros separados por comas" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Fecha (sin hora)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Introduzca una fecha válida en formato AAAA-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Fecha no válida: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Introduzca un valor de fecha/hora válido en formato AAAA-MM-DD HH:MM[:ss[." -"uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Fecha (con hora)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Este valor debe ser un número decimal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Número decimal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Dirección de correo electrónico" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Ruta de archivo" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Este valor debe ser un valor en representación de punto flotante." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Número de punto flotante" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Entero grande (8 bytes)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Dirección IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Este valor debe ser None, True o False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Booleano (Verdadero, Falso o Nulo)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Texto" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Hora" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Introduzca un valor de hora válido en formato HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Texto XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "No existe un modelo %(model)s con una clave primaria %(pk)r." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Clave foránea (el tipo está determinado por el campo relacionado)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Relación uno-a-uno" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Relación muchos-a-muchos" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Mantenga presionada \"Control\" (\"Command\" en una Mac) para seleccionar " -"más de uno." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Este campo es obligatorio." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Introduzca un número entero." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Introduzca un número." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Asegúrese de que no existan en total mas de %s dígitos." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Asegúrese de que no existan mas de %s lugares decimales." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Asegúrese de que no existan mas de %s dígitos antes del punto decimal." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Introduzca una fecha válida." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Introduzca un valor de hora válido." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Introduzca un valor de fecha/hora válido." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"No se envió un archivo. Verifique el tipo de codificación en el formulario." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "No se envió ningún archivo." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "El archivo enviado está vacío." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Asegúrese de que este nombre de archivo tenga como máximo %(max)d caracteres " -"(tiene %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Por favor envíe un archivo o active el checkbox, pero no ambas cosas." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Seleccione una imagen válida. El archivo que ha seleccionado no es una " -"imagen o es un un archivo de imagen corrupto." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Seleccione una opción válida. %(value)s no es una de las opciones " -"disponibles." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Introduzca una lista de valores." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ordenar" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Eliminar" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Por favor, corrija la información duplicada en %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Por favor corrija la información duplicada en %(field)s, que debe ser única." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Por favor corrija la información duplicada en %(field_name)s que debe ser " -"única para el %(lookup)s en %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Por favor, corrija los valores duplicados detallados mas abajo." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"La clave foránea del modelo inline no coincide con la clave primaria de la " -"instancia padre." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Seleccione una opción válida. La opción seleccionada no es una de las " -"disponibles." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" -"Seleccione una opción válida. %s no es una de las opciones disponibles." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" no es un valor válido para una clave primaria." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Actualmente" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Modificar" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Eliminar" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Desconocido" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Sí" - -#: forms/widgets.py:548 -msgid "No" -msgstr "No" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "si,no,talvez" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "medianoche" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "mediodía" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Lunes" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Martes" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Miércoles" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Jueves" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Viernes" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Sábado" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Domingo" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Lun" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Mar" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Mie" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Jue" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Vie" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sab" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Dom" - -#: utils/dates.py:18 -msgid "January" -msgstr "Enero" - -#: utils/dates.py:18 -msgid "February" -msgstr "Febrero" - -#: utils/dates.py:18 -msgid "March" -msgstr "Marzo" - -#: utils/dates.py:18 -msgid "April" -msgstr "Abril" - -#: utils/dates.py:18 -msgid "May" -msgstr "Mayo" - -#: utils/dates.py:18 -msgid "June" -msgstr "Junio" - -#: utils/dates.py:19 -msgid "July" -msgstr "Julio" - -#: utils/dates.py:19 -msgid "August" -msgstr "Agosto" - -#: utils/dates.py:19 -msgid "September" -msgstr "Setiembre" - -#: utils/dates.py:19 -msgid "October" -msgstr "Octubre" - -#: utils/dates.py:19 -msgid "November" -msgstr "Noviembre" - -#: utils/dates.py:20 -msgid "December" -msgstr "Diciembre" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ene" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "abr" - -#: utils/dates.py:23 -msgid "may" -msgstr "may" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ago" - -#: utils/dates.py:24 -msgid "sep" -msgstr "set" - -#: utils/dates.py:24 -msgid "oct" -msgstr "oct" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dic" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Enero" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Marzo" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Abril" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Mayo" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Junio" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Julio" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Ago." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Set." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Oct." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dic." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Enero" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Febrero" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Marzo" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Abril" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Mayo" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Junio" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Julio" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Agosto" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Setiembre" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Octubre" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Noviembre" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Diciembre" - -#: utils/text.py:136 -msgid "or" -msgstr "o" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutos" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j N Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j N Y P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j \\de F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "Se creó con éxito %(verbose_name)s." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "Se actualizó con éxito %(verbose_name)s." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "Se eliminó %(verbose_name)s." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "No se ha especificado el valor año" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "No se ha especificado el valor mes" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "No se ha especificado el valor día" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "No se ha especificado el valor semana" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "No hay %(verbose_name_plural)s disponibles" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"No hay %(verbose_name_plural)s futuros disponibles porque %(class_name)s." -"allow_future tiene el valor False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Cadena de fecha inválida '%(datestr)s', formato '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "No se han encontrado %(verbose_name)s que coincidan con la consulta " - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Página debe tener el valor 'last' o un valor número entero." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Página inválida (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Lista vacía y '%(class_name)s.allow_empty' tiene el valor False." diff --git a/lib/python2.7/site-packages/django/conf/locale/es_AR/__init__.py b/lib/python2.7/site-packages/django/conf/locale/es_AR/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/es_AR/formats.py b/lib/python2.7/site-packages/django/conf/locale/es_AR/formats.py deleted file mode 100644 index 81d9e53fc..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/es_AR/formats.py +++ /dev/null @@ -1,34 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = r'j N Y' -TIME_FORMAT = r'H:i:s' -DATETIME_FORMAT = r'j N Y H:i:s' -YEAR_MONTH_FORMAT = r'F Y' -MONTH_DAY_FORMAT = r'j \de F' -SHORT_DATE_FORMAT = r'd/m/Y' -SHORT_DATETIME_FORMAT = r'd/m/Y H:i' -FIRST_DAY_OF_WEEK = 0 # 0: Sunday, 1: Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d/%m/%Y', # '31/12/2009' - '%d/%m/%y', # '31/12/09' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d/%m/%Y %H:%M:%S', - '%d/%m/%Y %H:%M', - '%d/%m/%y %H:%M:%S', - '%d/%m/%y %H:%M', -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo deleted file mode 100644 index 0b5bc978a..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.po deleted file mode 100644 index a1a44d04e..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/es_MX/LC_MESSAGES/django.po +++ /dev/null @@ -1,1154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:07-0400\n" -"PO-Revision-Date: 2011-03-07 04:38+0000\n" -"Last-Translator: AbeEstrada \n" -"Language-Team: Spanish (Mexican) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Ãrabe" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azerbaijani" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Búlgaro" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalí" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnio" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalán" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Checo" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Galés" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Danés" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Alemán" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Griego" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Inglés" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Inglés británico" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Español" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Español de Argentina" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Español de México" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estonio" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Vasco" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persa" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finés" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Francés" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisón" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irlandés" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Gallego" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebreo" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Croata" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Húngaro" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonesio" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandés" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiano" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japonés" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgiano" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Coreano" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Lituano" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Letón" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Macedonio" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongol" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Holandés" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Noruego" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Noruego Bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Noruego Nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polaco" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugués" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Portugués de Brasil" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rumano" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Ruso" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Eslovaco" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Esloveno" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanés" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbio" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Latin Serbio" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Sueco" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Tailandés" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turco" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ucraniano" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamita" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Chino simplificado" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Chino tradicional" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Introduzca un valor válido." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Esta dirección URL que parece ser un enlace roto." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Ingrese una URL válida." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Introduzca una dirección de correo electrónico válida." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Introduzca un \"slug\", compuesto por letras, números, guiones bajos o " -"medios." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Introduzca una dirección IPv4 válida." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Introduzca sólo números separados por comas." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Asegúrese de que este valor es %(limit_value)s (es %(show_value)s )." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Asegúrese de que este valor sea menor o igual a %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Asegúrese de que este valor sea mayor o igual a %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Asegúrese de que este valor tenga al menos %(limit_value)d caracteres (tiene " -"%(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Asegúrese de que este valor tenga como máximo %(limit_value)d caracteres " -"(tiene %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(field_name)s debe ser único/a para un %(lookup)s %(date_field)s " -"determinado." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "Ya existe un/a %(model_name)s con este/a %(field_label)s." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "y" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "El valor %r no es una opción válida." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Este campo no puede ser nulo." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Este campo no puede estar en blanco." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Campo tipo: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Entero" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Este valor debe ser un número entero." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Este valor debe ser verdadero o falso." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (Verdadero o Falso)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Cadena (máximo %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Enteros separados por comas" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Fecha (sin hora)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Introduzca una fecha válida en el formato AAAA-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Fecha no válida: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Introduzca un valor de fecha/hora válido en formato AAAA-MM-DD HH:MM[:ss[." -"uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Fecha (con hora)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Este valor debe ser un número decimal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Número decimal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Dirección de correo electrónico" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Ruta de archivo" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Este valor debe ser un valor en punto flotante." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Número de punto flotante" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Entero grande (8 bytes)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Dirección IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Este valor debe ser Nulo, Verdadero o Falso." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Booleano (Verdadero, Falso o Nulo)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Texto" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Hora" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Introduzca una hora válida en formato HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Texto XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "No existe un modelo %(model)s con una clave primaria %(pk)r." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Clave foránea (el tipo está determinado por el campo relacionado)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Relación uno-a-uno" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Relación muchos-a-muchos" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Mantenga presionada \"Control\", o \"Command\" en una Mac, para seleccionar " -"más de uno." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Este campo es obligatorio." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Introduzca un número entero." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Introduzca un número." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Asegúrese de que no hay más de %s dígitos en total." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Asegúrese de que no hay más de %s decimales." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Asegúrese de que no existan mas de %s dígitos antes del punto decimal." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Introduzca una fecha válida." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Introduzca una hora válida." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Introduzca una fecha/hora válida." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"No se envió un archivo. Verifique el tipo de codificación en el formulario." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "No se envió ningún archivo." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "El archivo enviado está vacío." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Asegúrese de que este nombre de archivo tenga como máximo %(max)d caracteres " -"(tiene %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Por favor envíe un archivo o marque la casilla, no ambos." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Seleccione una imagen válida. El archivo que ha seleccionado no es una " -"imagen o es un un archivo de imagen corrupto." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Seleccione una opción válida. %(value)s no es una de las opciones " -"disponibles." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Introduzca una lista de valores." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ordenar" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Eliminar" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Por favor, corrija la información duplicada en %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Por favor corrija la información duplicada en %(field)s, que debe ser única." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Por favor corrija la información duplicada en %(field_name)s que debe ser " -"única para el %(lookup)s en %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Por favor, corrija los valores duplicados detallados mas abajo." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"La clave foránea del modelo inline no coincide con la clave primaria de la " -"instancia padre." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Seleccione una opción válida. La opción seleccionada no es una de las " -"disponibles." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" -"Seleccione una opción válida. %s no es una de las opciones disponibles." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" no es un valor válido para una clave primaria." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Actualmente" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Modificar" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Borrar" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Desconocido" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Sí" - -#: forms/widgets.py:548 -msgid "No" -msgstr "No" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "sí, no, tal vez" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "medianoche" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "mediodía" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Lunes" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Martes" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Miércoles" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Jueves" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Viernes" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Sábado" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Domingo" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Lun" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Mar" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Mie" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Jue" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Vie" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sab" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Dom" - -#: utils/dates.py:18 -msgid "January" -msgstr "Enero" - -#: utils/dates.py:18 -msgid "February" -msgstr "Febrero" - -#: utils/dates.py:18 -msgid "March" -msgstr "Marzo" - -#: utils/dates.py:18 -msgid "April" -msgstr "Abril" - -#: utils/dates.py:18 -msgid "May" -msgstr "Mayo" - -#: utils/dates.py:18 -msgid "June" -msgstr "Junio" - -#: utils/dates.py:19 -msgid "July" -msgstr "Julio" - -#: utils/dates.py:19 -msgid "August" -msgstr "Agosto" - -#: utils/dates.py:19 -msgid "September" -msgstr "Septiembre" - -#: utils/dates.py:19 -msgid "October" -msgstr "Octubre" - -#: utils/dates.py:19 -msgid "November" -msgstr "Noviembre" - -#: utils/dates.py:20 -msgid "December" -msgstr "Diciembre" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ene" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "abr" - -#: utils/dates.py:23 -msgid "may" -msgstr "may" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ago" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "oct" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dic" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Ene." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Marzo" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Abril" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Mayo" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Junio" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Julio" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Ago." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Sep." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Oct." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dic." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Enero" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Febrero" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Marzo" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Abril" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Mayo" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Junio" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Julio" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Agosto" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Septiembre" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Octubre" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Noviembre" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Diciembre" - -#: utils/text.py:136 -msgid "or" -msgstr "o" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "años" -msgstr[1] "años" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "horas" -msgstr[1] "horas" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutos" -msgstr[1] "minutos" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutos" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j N Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j N Y P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j \\de F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "Se creó con éxito %(verbose_name)s." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "Se actualizó con éxito %(verbose_name)s." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "Se eliminó %(verbose_name)s." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "No se ha especificado el valor año" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "No se ha especificado el valor mes" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "No se ha especificado el valor dia" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "No se ha especificado el valor semana" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "No hay %(verbose_name_plural)s disponibles" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"No hay %(verbose_name_plural)s futuros disponibles porque %(class_name)s." -"allow_future tiene el valor False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Cadena de fecha inválida '%(datestr)s', formato '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "No se han encontrado %(verbose_name)s que coincidan con la consulta" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "La página no es \"last\", ni puede ser convertido a un int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Página inválida (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Lista vacía y '%(class_name)s.allow_empty' tiene el valor False." diff --git a/lib/python2.7/site-packages/django/conf/locale/es_MX/__init__.py b/lib/python2.7/site-packages/django/conf/locale/es_MX/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/es_MX/formats.py b/lib/python2.7/site-packages/django/conf/locale/es_MX/formats.py deleted file mode 100644 index fdedb0d06..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/es_MX/formats.py +++ /dev/null @@ -1,30 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -DATE_FORMAT = r'j \de F \de Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = r'j \de F \de Y \a \l\a\s H:i' -YEAR_MONTH_FORMAT = r'F \de Y' -MONTH_DAY_FORMAT = r'j \de F' -SHORT_DATE_FORMAT = 'd/m/Y' -SHORT_DATETIME_FORMAT = 'd/m/Y H:i' -FIRST_DAY_OF_WEEK = 1 # Monday: ISO 8601 -DATE_INPUT_FORMATS = ( - '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' - '%Y%m%d', # '20061025' - -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', '%H:%M', # '14:30:59', '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d/%m/%Y %H:%M:%S', - '%d/%m/%Y %H:%M', - '%d/%m/%y %H:%M:%S', - '%d/%m/%y %H:%M', -) -DECIMAL_SEPARATOR = '.' # ',' is also official (less common): NOM-008-SCFI-2002 -THOUSAND_SEPARATOR = ' ' # white space -NUMBER_GROUPING = 3 - diff --git a/lib/python2.7/site-packages/django/conf/locale/es_NI/__init__.py b/lib/python2.7/site-packages/django/conf/locale/es_NI/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/es_NI/formats.py b/lib/python2.7/site-packages/django/conf/locale/es_NI/formats.py deleted file mode 100644 index b91d7f8db..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/es_NI/formats.py +++ /dev/null @@ -1,30 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -DATE_FORMAT = r'j \de F \de Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = r'j \de F \de Y \a \l\a\s H:i' -YEAR_MONTH_FORMAT = r'F \de Y' -MONTH_DAY_FORMAT = r'j \de F' -SHORT_DATE_FORMAT = 'd/m/Y' -SHORT_DATETIME_FORMAT = 'd/m/Y H:i' -FIRST_DAY_OF_WEEK = 1 # Monday: ISO 8601 -DATE_INPUT_FORMATS = ( - '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' - '%Y%m%d', # '20061025' - -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', '%H:%M', # '14:30:59', '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d/%m/%Y %H:%M:%S', - '%d/%m/%Y %H:%M', - '%d/%m/%y %H:%M:%S', - '%d/%m/%y %H:%M', -) -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -NUMBER_GROUPING = 3 - diff --git a/lib/python2.7/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo deleted file mode 100644 index b9dd35437..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/et/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/et/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/et/LC_MESSAGES/django.po deleted file mode 100644 index 1718f6fc6..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/et/LC_MESSAGES/django.po +++ /dev/null @@ -1,1140 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:07-0400\n" -"PO-Revision-Date: 2011-03-07 20:55+0000\n" -"Last-Translator: madisvain \n" -"Language-Team: Estonian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "araabia" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Aserbaidžaani" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "bulgaaria" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengali" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosnia" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "katalaani" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "tÅ¡ehhi" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "uelsi" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "taani" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "saksa" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "kreeka" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "inglise" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "briti inglise" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "hispaania" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "argentiina hispaani" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "mehhiko hispaania" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "eesti" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "baski" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "pärsia" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "soome" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "prantsuse" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "friisi" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "iiri" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "galiitsia" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "heebrea" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "horvaatia" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ungari" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "indoneesi" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "islandi" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "itaalia" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "jaapani" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "gruusia" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "khmeri" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "korea" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "leedu" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "läti" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "makedoonia" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "malaia" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "mongoolia" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "hollandi" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "norra" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "norra (bokmal)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "norra (nynorsk)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "pandžab" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "poola" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "portugali" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "brasiilia portugali" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "rumeenia" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "vene" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "slovaki" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "sloveeni" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "albaania" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "serbia" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "serbia (ladina)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "rootsi" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "tamiili" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "tai" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "türgi" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ukrania" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "vietnami" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "lihtsustatud hiina" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "traditsiooniline hiina" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Sisestage korrektne väärtus." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "See URL näib olevat katkine." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Sisestage korrektne URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Sisestage korrektne e-posti aadress:" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"See väärtus võib sisaldada ainult tähti, nubmreid, alljooni ja sidekriipse." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Sisestage korrektne IPv4 aadress." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Sisestage ainult komaga eraldatud numbreid." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Veendu, et see väärtus on %(limit_value)s (hetkel on %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Veendu, et see väärtus on väiksem või võrdne kui %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Veendu, et see väärtus on suurem või võrdne kui %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Veendu, et see väärtus sisaldab vähemalt %(limit_value)d tähte (hetkel on %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Veendu, et sellel väärtusel on mitte rohkem kui %(limit_value)d tähte " -"(hetkel on %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s peab olema unikaalne %(date_field)s %(lookup)s suhtes." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "Sellise %(field_label)s-väljaga %(model_name)s on juba olemas." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ja" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Väärtus %r ei ole kehtiv valik." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "See lahter ei tohi olla tühi." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "See väli ei saa olla tühi." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Lahter tüüpi: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Täisarv" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "See väärtus peab olema täisarv." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "See väärtus peab olema kas tõene või väär" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Tõeväärtus (Kas tõene või väär)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "String (kuni %(max_length)s märki)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Komaga eraldatud täisarvud" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Kuupäev (kellaajata)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Sisestage korrektne kuupäev formaadis AAAA-KK-PP." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Vigane kuupäev: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Sisestage korrektne kuupäev ja kellaaeg kujul AAAA-KK-PP TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Kuupäev (kellaajaga)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "See väärtus peab olema kümnendarv." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Kümnendmurd" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-posti aadress" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Faili asukoht" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "See väärtus peab olema murdarv." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Ujukomaarv" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Suur (8 baiti) täisarv" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP aadress" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "See väärtus peab olema kas tühi, tõene või väär." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Tõeväärtus (Kas tõene, väär või tühi)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Aeg" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Sisestage korrektne kellaaeg formaadis TT:MM[:ss[.uuuuuu]]" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML tekst" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Mudel %(model)s primaarvõtmega %(pk)r ei leidu." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Välisvõti (tüübi määrab seotud väli) " - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Ãœks-ühele seos" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Mitu-mitmele seos" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "Et valida mitu, hoidke all \"Control\"-nuppu (Maci puhul \"Command\")." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "See lahter on nõutav." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Sisestage täisarv." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Sisestage arv." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Veenduge, et kogu numbrikohtade arv ei ületaks %s." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Veenduge, et komakohtade arv ei ületaks %s." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Veenduge, et komast vasakul olevaid numbreid ei oleks rohkem kui %s." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Sisestage korrektne kuupäev." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Sisestage korrektne kellaaeg." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Sisestage korrektne kuupäev ja kellaaeg." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Ãœhtegi faili ei saadetud. Kontrollige vormi kodeeringutüüpi." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Ãœhtegi faili ei saadetud." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Saadetud fail on tühi." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Veenduge, et see failinimi sisaldab kõige rohkem %(max)d tähemärki (hetkel %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Palun laadige fail või märgistage 'tühjenda' kast, mitte mõlemat." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Laadige korrektne pilt. Fail, mille laadisite, ei olnud kas pilt või oli " -"fail vigane." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Valige korrektne väärtus. %(value)s ei ole valitav." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Sisestage väärtuste nimekiri." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Järjestus" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Kustuta" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Palun parandage duplikaat-andmed lahtris %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Palun parandage duplikaat-andmed lahtris %(field)s, mis peab olema unikaalne." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Palun parandage allolevad duplikaat-väärtused" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Pesastatud välisvõti ei sobi ülemobjekti primaarvõtmega." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Valige korrektne väärtus. Valitud väärtus ei ole valitav." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Valige korrektne väärtus. %s ei ole valitav." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ei ole sobiv väärtust primaarvõtmeks." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Hetkel" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Muuda" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Tühjenda" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Tundmatu" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Jah" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ei" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "jah,ei,võib-olla" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bait" -msgstr[1] "%(size)d baiti" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s kB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.l." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "e.l." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PL" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "EL" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "südaöö" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "keskpäev" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "esmaspäev" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "teisipäev" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "kolmapäev" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "neljapäev" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "reede" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "laupäev" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "pühapäev" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "esmasp." - -#: utils/dates.py:10 -msgid "Tue" -msgstr "teisip." - -#: utils/dates.py:10 -msgid "Wed" -msgstr "kolmap." - -#: utils/dates.py:10 -msgid "Thu" -msgstr "neljap." - -#: utils/dates.py:10 -msgid "Fri" -msgstr "reede" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "laup." - -#: utils/dates.py:11 -msgid "Sun" -msgstr "pühap." - -#: utils/dates.py:18 -msgid "January" -msgstr "jaanuar" - -#: utils/dates.py:18 -msgid "February" -msgstr "veebruar" - -#: utils/dates.py:18 -msgid "March" -msgstr "märts" - -#: utils/dates.py:18 -msgid "April" -msgstr "aprill" - -#: utils/dates.py:18 -msgid "May" -msgstr "mai" - -#: utils/dates.py:18 -msgid "June" -msgstr "juuni" - -#: utils/dates.py:19 -msgid "July" -msgstr "juuli" - -#: utils/dates.py:19 -msgid "August" -msgstr "august" - -#: utils/dates.py:19 -msgid "September" -msgstr "september" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktoober" - -#: utils/dates.py:19 -msgid "November" -msgstr "november" - -#: utils/dates.py:20 -msgid "December" -msgstr "detsember" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jaan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "veeb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "märts" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sept" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dets" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "jaan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "veeb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mär." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "apr." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "mai" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "juuni" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "juuli" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "aug." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "dets." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "jaanuar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "veebruar" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "märts" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "aprill" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "mai" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "juuni" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "juuli" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "august" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "september" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "oktoober" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "november" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "detsember" - -#: utils/text.py:136 -msgid "or" -msgstr "või" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "aasta" -msgstr[1] "aastat" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "kuu" -msgstr[1] "kuud" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "nädal" -msgstr[1] "nädalat" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "päev" -msgstr[1] "päeva" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "tund" -msgstr[1] "tundi" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minutit" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutit" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. N Y, H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s edukalt loodud." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s edukalt muudetud." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s kustutatud." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Aasta on valimata" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Kuu on valimata" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Päev on valimata" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Nädal on valimata" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Ei leitud %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Tulevane %(verbose_name_plural)s pole saadaval, sest %(class_name)s." -"allow_future on False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Vigane kuupäeva-string '%(datestr)s' lähtudes formaadist '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Päringule vastavat %(verbose_name)s ei leitud" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Lehekülg ei ole 'last', ka ei saa teda konvertida täisarvuks." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Vigane lehekülg (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Tühi list ja '%(class_name)s.allow_empty' on False." diff --git a/lib/python2.7/site-packages/django/conf/locale/et/__init__.py b/lib/python2.7/site-packages/django/conf/locale/et/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/et/formats.py b/lib/python2.7/site-packages/django/conf/locale/et/formats.py deleted file mode 100644 index 7de0cd44b..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/et/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' -TIME_FORMAT = 'G:i:s' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'd.m.Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = u' ' # Non-breaking space -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo deleted file mode 100644 index 880caf966..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/eu/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po deleted file mode 100644 index 1b0511207..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/eu/LC_MESSAGES/django.po +++ /dev/null @@ -1,1139 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:07-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: aitzol \n" -"Language-Team: Basque \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabiera" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgariera" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalera" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalana" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Txekiera" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Gales" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Daniera" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Alemaniera" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Greziera" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Ingelesa" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Ingelesa" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Espainola" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Espainola (Argentina)" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Euskara" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persiera" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finlandiera" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Frantzesa" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galiziera" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebreera" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroaziarra" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Hungariera" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandiera" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiera" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japoniera" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "khemerera" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kanadiera" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreera" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Lituaniera" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Mazedoniera" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Holandera" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norvegiera" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Poloniera" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugalera" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Portugalera (Brazil)" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Errumaniera" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Errusiera" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Eslovakiera" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Esloveniera" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbiera" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Suediera" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamilera" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telegu hizkuntza" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turkiera" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrainera" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Txinera (sinpletua)" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Txinera (tradizionala)" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Idatzi balio zuzena." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "URL hau ez dago ondo." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "URL zuzen bat idatzi." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "e-mail helbide zuzena idatzi." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Hizki, zenbaki, azpimarra edo marratxoz osatutako baleko 'slug' bat sartu." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "IPv4 zuzen bat idatzi." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Komaz bereiztutako digitoak bakarrik idatzi." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Ziurtatu balioak %(limit_value)s karraktere dituela gutxienez (orain %" -"(show_value)s dauzka)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"Ziurta zaitez balio hau %(limit_value)s baino txikiago edo berdina dela." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"Ziurta zaitez balio hau %(limit_value)s baino handiago edo berdina dela." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ziurtatu gutxienez %(limit_value)d karaktere dauzkala (orain %(show_value)d " -"dauzka)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ziurtatu gehienez %(limit_value)d dauzkala (orain %(show_value)d dauzka)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "eta" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "%r balioa ez da balekoa" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Eremu hau ezin daiteke hutsa izan (null)." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Eremu hau ezin da hutsik egon." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Eremuaren mota: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Zenbaki osoa" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Balio honek zenbaki osoa izan behar du." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Balio honek True edo False izan behar du." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolearra (egia ala gezurra)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Katea (%(max_length)s gehienez)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Komaz bereiztutako zenbaki osoak" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Data (ordurik gabe)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Data zuzena idatzi, YYY-MM-DD formatoan." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Data okerra: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Idatzi data/ordu zuzena UUUU-HH-EE OO:MM[:ss[.uuuuu]] formatoan." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Data (orduarekin)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Balio honek zenbaki hamartarra izan behar du." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Zenbaki hamartarra" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mail helbidea" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Fitxegi bidea" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Hemen zenbaki hamartar bat behar da." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Zenbaki erreala (float)" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Zenbaki osoa (handia 8 byte)." - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP helbidea" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Balio honek hutsa, egia edo gezurra izan behar du (None, True,False)" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolearra (egia, gezurra edo hutsa[None])" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Textua" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Ordua" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Idatzi ordua OO:MM[:ss[.uuuuu]] formatoan." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML testua" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "%(pk)r pk duen %(model)s modeloa ez da existitzen." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Bat-bat erlazioa" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Zapaldu \"Control\" karakterea edo \"Command\" Mac batean, bat baino gehiago " -"aukeratzeko." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Eremu hau beharrezkoa da." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Zenbaki bat idatzi." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Idatzi zenbaki bat." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Ziurta zaitez %s baino digito gehiago ez dagoela." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Ziurta zaitez %s baino hamartar gehiago ez dagoela." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" -"Ziurta zaitez %s digitu baino gehiago ez dagoela puntu hamartarraren " -"aurretik." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Data zuzen bat idatzi." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Ordu zuzen bat idatzi." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Data/Ordu zuzen bat idatzi." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Ez da fitxategirik bidali. Baiztatu ezazu formularioren kodeketa." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Ez da fitxategirik bidali." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Bidalitako fitxategia hutsik dago." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Mesedez, igo fitxategi bat edo klikatu garbitu botoia, ez biak." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Bidali irudi zuzena. Zuk bidalitako fitxategia ez da irudi motako edo akatsa " -"dauka." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Aukeratu aukera zuzen bat. %(value)s ez da zuzena." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Balio zerrenda bat idatzi ezazu." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ordena" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Ezabatu" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Mesedez zuzendu bikoiztketa %(field)s eremuan." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Mesedez zuzendu bikoizketa %(field)s eremuan. Bakarra izan behar da." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Mesedez zuzendu hurrengo balio bikoiztuak." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Aukera zuzen bat aukeratu. Aukeratutakoa ez da zuzena." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Aukera zuzena aukeratu. %s ez da aukeretako bat." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ez da balekoa gako nagusi gisa." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Orain" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Aldatu" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Garbitu" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Ezezaguna" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Bai" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ez" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "bai,ez,agian" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "byte %(size)d " -msgstr[1] "%(size)d byte" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "gauerdia" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "eguerdia" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Astelehena" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Asteartea" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Asteazkena" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Osteguna" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Ostirala" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Larunbata" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Igandea" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Al" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Ar" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Az" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Og" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Ol" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Lr" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Ig" - -#: utils/dates.py:18 -msgid "January" -msgstr "Urtarrila" - -#: utils/dates.py:18 -msgid "February" -msgstr "Otsaila" - -#: utils/dates.py:18 -msgid "March" -msgstr "Martxoa" - -#: utils/dates.py:18 -msgid "April" -msgstr "Apirila" - -#: utils/dates.py:18 -msgid "May" -msgstr "Maiatza" - -#: utils/dates.py:18 -msgid "June" -msgstr "Ekaina" - -#: utils/dates.py:19 -msgid "July" -msgstr "Uztaila" - -#: utils/dates.py:19 -msgid "August" -msgstr "Abuztua" - -#: utils/dates.py:19 -msgid "September" -msgstr "Iraila" - -#: utils/dates.py:19 -msgid "October" -msgstr "Urria" - -#: utils/dates.py:19 -msgid "November" -msgstr "Azaroa" - -#: utils/dates.py:20 -msgid "December" -msgstr "Abendua" - -#: utils/dates.py:23 -msgid "jan" -msgstr "urt" - -#: utils/dates.py:23 -msgid "feb" -msgstr "ots" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "api" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "eka" - -#: utils/dates.py:24 -msgid "jul" -msgstr "uzt" - -#: utils/dates.py:24 -msgid "aug" -msgstr "abu" - -#: utils/dates.py:24 -msgid "sep" -msgstr "ira" - -#: utils/dates.py:24 -msgid "oct" -msgstr "urr" - -#: utils/dates.py:24 -msgid "nov" -msgstr "aza" - -#: utils/dates.py:24 -msgid "dec" -msgstr "abe" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Urt." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Ots." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Mar." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Api." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Mai." - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Eka." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Uzt." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Abu." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Ira." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Urr." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Aza." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Abe." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Urtarrila" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Otsaila" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Martxoa" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Apirila" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Maiatza" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Ekaina" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Uztaila" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Abuztua" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Iraila" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Urria" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Azaroa" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Abendua" - -#: utils/text.py:136 -msgid "or" -msgstr "edo" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "urtea" -msgstr[1] "urteak" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "hilabetea" -msgstr[1] "hilabeteak" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "astea" -msgstr[1] "asteak" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "eguna" -msgstr[1] "egunak" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "ordua" -msgstr[1] "orduak" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutu" -msgstr[1] "minutuak" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutuak" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "DATE_FORMAT" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "DATETIME_FORMAT" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "TIME_FORMAT" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "YEAR_MONTH_FORMAT" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "MONTH_DAY_FORMAT" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s arazorik gabe sortu da" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s arazorik gabe eguneratu da." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s ezabatu da." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/eu/__init__.py b/lib/python2.7/site-packages/django/conf/locale/eu/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/eu/formats.py b/lib/python2.7/site-packages/django/conf/locale/eu/formats.py deleted file mode 100644 index 5e045b2ae..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/eu/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = r'Yeko M\re\n d\a' -TIME_FORMAT = 'H:i:s' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -# MONTH_DAY_FORMAT = -SHORT_DATE_FORMAT = 'Y M j' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo deleted file mode 100644 index f391e782b..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/fa/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/fa/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/fa/LC_MESSAGES/django.po deleted file mode 100644 index ba697a5d5..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/fa/LC_MESSAGES/django.po +++ /dev/null @@ -1,1122 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:08-0400\n" -"PO-Revision-Date: 2011-03-06 14:50+0000\n" -"Last-Translator: sinacher \n" -"Language-Team: Persian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "عربی" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "آذربایجانی" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "بلغاری" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "بنگالی" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "بوسنیایی" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "کاتالونیایی" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Ú†Ú©ÛŒ" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "ویلزی" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "دانمارکی" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "آلمانی" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "یونانی" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "انگلیسی" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "انگلیسی بریتیش" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "اسپانیایی" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "اسپانیایی آرژانتینی" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "اسپانیولی مکزیکی" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "استونی" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "باسکی" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Ùارسی" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Ùنلاندی" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Ùرانسوی" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Ùریزی" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ایرلندی" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "گالیسیایی" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "عبری" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "هندی" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "کرواتی" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "مجاری" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "اندونزیایی" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "ایسلندی" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ایتالیایی" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ژاپنی" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "گرجی" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "خمری" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "کناده‌ای" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "کره‌ای" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "لیتوانی" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "لتونیایی" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "مقدونی" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "مالایایی" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "مغولی" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "هلندی" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "نروژی" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "نروژی Bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "نروژی Nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "پنجابی" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "لهستانی" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "پرتغالی" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "پرتغالی٠برزیل" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "رومانی" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "روسی" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "اسلواکی" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "اسلووÙÙ†ÛŒ" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "آلبانیایی" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "صربی" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "صربی لاتین" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "سوئدی" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "تامیلی" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "تلوگویی" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "تایلندی" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "ترکی" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "اکراینی" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "اردو" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "ویتنامی" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "چینی ساده‌شده" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "چینی سنتی" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "یک مقدار معتبر وارد کنید." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "به نظر می‌رسد این نشانی یک پیوند شکسته است." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "یک نشانی اینترنتی معتبر وارد کنید." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "یک نشانی پست الکترونیکی معتبر وارد کنید." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "یک 'slug' معتبر شامل حروÙØŒ ارقام، خط زیر Ùˆ یا خط تیره وارد کنید." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "یک نشانی IPv4 معتبر وارد کنید." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Ùقط ارقام جدا شده با کاما وارد کنید." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "Ùˆ" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "مقدار %r معتبر نیست." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "این Ùیلد نمی تواند پوچ باشد." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "این Ùیلد نمی تواند خالی باشد." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "عدد صحیح" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "این مقدار باید یک عدد صحیح باشد." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "این مقدار باید درست یا غلط باشد." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "بولی (درست یا غلط)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "رشته (تا %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "اعداد صحیح جدا-شده با ویلگول" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "تاریخ (بدون زمان)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "یک تاریخ معتبر در قالب YYYY-MM-DD وارد کنید." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "تاریخ نامعتبر: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "یک تاریخ/زمان معتبر در قالب YYYY-MM-DD HH:MM[:ss[.uuuuuu]] وارد کنید." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "تاریخ (با زمان)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "این مقدار باید یک عدد باشد." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "عدد دهدهی" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "نشانی پست الکترونیکی" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "مسیر پرونده" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr " این مقدار باید شناور باشد." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "عدد اعشاری" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "بزرگ (8 بایت) عدد صحیح" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "نشانی IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "این مقدار باید یکی از مقادیر پوچ یا درست یا نادرست باشد." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "‌بولی (درست، نادرست یا پوچ)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "متن" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "زمان" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "یک زمان معتبر در قالب HH:MM[:ss[.uuuuuu]] وارد کنید." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "نشانی اینترنتی" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "متن XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "رابطه یک به یک " - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "رابطه چند به چند" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"برای انتخاب بیش از یکی \"Control\"ØŒ یا \"Command\" روی MacØŒ را پایین Ù†Ú¯Ù‡ " -"دارید." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "این Ùیلد لازم است." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "به طور کامل یک عدد وارد کنید." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "یک عدد وارد کنید." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "مطمئن شوید در مجموع بیش از %s رقم نداشته باشد." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "مطمئن شوید بیش از %s رقم اعشاری نداشته باشد." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "مطمئن شوید بیش از %s رقم قبل ممیز نداشته باشد." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "یک تاریخ معتبر وارد کنید." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "یک زمان معتبر وارد کنید." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "یک تاریخ/زمان معتبر وارد کنید." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "پرونده‌ای ارسال نشده است. نوع کدگذاری Ùرم را بررسی کنید." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "پرونده‌ای ارسال نشده است." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "پروندهٔ ارسال‌شده خالیست." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "لطÙا یا Ùایل ارسال کنید یا دکمه clear را علامت بزنید، نه هردو." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"یک تصویر معتبر بارگذاری کنید. پرونده‌ای Ú©Ù‡ بارگذاری کردید یا تصویر نبوده Ùˆ یا " -"تصویری مخدوش بوده است." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "یک گزینهٔ معتبر انتخاب کنید. %(value)s از گزینه‌های موجود نیست." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Ùهرستی از مقادیر وارد کنید." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "ترتیب:" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "حذÙ" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "لطÙا محتوی تکراری برای %(field)s را اصلاح کنید." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "لطÙا محتوی تکراری برای %(field)s را Ú©Ù‡ باید یکتا باشد اصلاح کنید." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "لطÙا مقدار تکراری را اصلاح کنید." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "کلید های درون خطی خارجی با هم مطابقت ندارند ." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "یک گزینهٔ معتبر انتخاب کنید. آن گزینه از گزینه‌های موجود نیست." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "یک گزینهٔ معتبر انتخاب کنید. %s از گزینه‌های موجود نیست." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "در حال حاضر" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "تغییر" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "واضح" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "ناشناخته" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "بله" - -#: forms/widgets.py:548 -msgid "No" -msgstr "خیر" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "بله،خیر،شاید" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d بایت" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "ب.ظ." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "صبح" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "بعد از ظهر" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "صبح" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "نیمه شب" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "ظهر" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "دوشنبه" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "سه شنبه" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "چهارشنبه" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "پنجشنبه" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "جمعه" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "شنبه" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "یکشنبه" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "دوشنبه" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "سه‌شنبه" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "چهارشنبه" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "پنجشنبه" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "جمعه" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "شنبه" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "یکشنبه" - -#: utils/dates.py:18 -msgid "January" -msgstr "ژانویه" - -#: utils/dates.py:18 -msgid "February" -msgstr "Ùوریه" - -#: utils/dates.py:18 -msgid "March" -msgstr "مارس" - -#: utils/dates.py:18 -msgid "April" -msgstr "آوریل" - -#: utils/dates.py:18 -msgid "May" -msgstr "مه" - -#: utils/dates.py:18 -msgid "June" -msgstr "ژوئن" - -#: utils/dates.py:19 -msgid "July" -msgstr "ژوئیه" - -#: utils/dates.py:19 -msgid "August" -msgstr "اوت" - -#: utils/dates.py:19 -msgid "September" -msgstr "سپتامبر" - -#: utils/dates.py:19 -msgid "October" -msgstr "اکتبر" - -#: utils/dates.py:19 -msgid "November" -msgstr "نوامبر" - -#: utils/dates.py:20 -msgid "December" -msgstr "دسامبر" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ژانویه" - -#: utils/dates.py:23 -msgid "feb" -msgstr "Ùوریه" - -#: utils/dates.py:23 -msgid "mar" -msgstr "مارس" - -#: utils/dates.py:23 -msgid "apr" -msgstr "آوریل" - -#: utils/dates.py:23 -msgid "may" -msgstr "مه" - -#: utils/dates.py:23 -msgid "jun" -msgstr "ژوئن" - -#: utils/dates.py:24 -msgid "jul" -msgstr "ژوئیه" - -#: utils/dates.py:24 -msgid "aug" -msgstr "اوت" - -#: utils/dates.py:24 -msgid "sep" -msgstr "سپتامبر" - -#: utils/dates.py:24 -msgid "oct" -msgstr "اکتبر" - -#: utils/dates.py:24 -msgid "nov" -msgstr "نوامبر" - -#: utils/dates.py:24 -msgid "dec" -msgstr "دسامبر" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "ژانویه" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Ùوریه" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "مارس" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "آوریل" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "مه" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "ژوئن" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "جولای" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "اوت" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "سپتامبر" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "اکتبر" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "نوامبر" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "دسامبر" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "ژانویه" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Ùوریه" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "مارس" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "آوریل" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "مه" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "ژوئن" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "جولای" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "اوت" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "سپتامبر" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "اکتبر" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "نوامبر" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "دسامبر" - -#: utils/text.py:136 -msgid "or" -msgstr "یا" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "ØŒ" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "سال" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "ماه" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "Ù‡Ùته" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "روز" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "ساعت" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "دقیقه" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "دقیقه" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr "ØŒ %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "DATE_FORMAT" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "DATETIME_FORMAT" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "TIME_FORMAT" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "YEAR_MONTH_FORMAT" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "MONTH_DAY_FORMAT" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s با موÙقیت ایجاد شد." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s با موÙقیت به روز شد." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s حذ٠شد." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "هیچ سالی مشخص نشده است" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "هیچ ماهی مشخص نشده است" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "هیچ روزی مشخص نشده است" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "هیچ Ù‡Ùته‌ای مشخص نشده است" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/fa/__init__.py b/lib/python2.7/site-packages/django/conf/locale/fa/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/fa/formats.py b/lib/python2.7/site-packages/django/conf/locale/fa/formats.py deleted file mode 100644 index 7225a6299..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/fa/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' -TIME_FORMAT = 'G:i:s' -DATETIME_FORMAT = 'j F YØŒ ساعت G:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'Y/n/j' -SHORT_DATETIME_FORMAT = 'Y/n/j،†G:i:s' -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo deleted file mode 100644 index 7a5526c4f..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/fi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po deleted file mode 100644 index 95db3c0d1..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/fi/LC_MESSAGES/django.po +++ /dev/null @@ -1,1138 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:08-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: akaihola \n" -"Language-Team: Finnish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "arabia" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "bulgaria" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengali" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosnia" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "katalaani" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "tÅ¡ekki" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "wales" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "tanska" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "saksa" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "kreikka" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "englanti" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "brittienglanti" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "espanja" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentiinan espanja" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "viro" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "baski" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "persia" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "suomi" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "ranska" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "friisi" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "irlanti" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "galicia" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "heprea" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "kroatia" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "unkari" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "indonesia" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "islanti" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "italia" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "japani" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "georgia" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "korea" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "liettua" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "latvia" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "makedonia" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "malajalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "mongolia" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "hollanti" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "norja" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "norja (kirjanorja)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "norja (uusnorja)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "punjabin kieli" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "puola" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "portugali" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "brasilian portugali" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "romania" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "venäjä" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "slovakia" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "slovenia" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "albaani" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "serbia" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "serbian latina" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "ruotsi" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "tamili" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "thain kieli" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "turkki" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ukraina" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "vietnam" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "kiina (yksinkertaistettu)" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "kiina (perinteinen)" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Syötä oikea arvo." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Tämä URL-osoite on rikkinäinen linkki." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Syötä oikea URL-osoite." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Syötä kelvollinen sähköpostiosoite." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Tässä voidaan käyttää vain kirjaimia (a-z), numeroita (0-9) sekä ala- ja " -"tavuviivoja (_ -)." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Syötä kelvollinen IPv4-osoite." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Vain pilkulla erotetut kokonaisluvut kelpaavat tässä." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Tämän arvon on oltava %(limit_value)s (nyt %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Tämän arvon on oltava enintään %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Tämän luvun on oltava vähintään %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Tähän tarvitaan vähintään %(limit_value)d merkkiä (nyt on vain %(show_value)" -"d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "Tähän kelpaa enintään %(limit_value)d merkkiä (nyt on %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"\"%(field_name)s\"-kentän on oltava uniikki suhteessa: %(date_field)s %" -"(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s jolla on tämä %(field_label)s, on jo olemassa." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ja" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Arvo %r ei kelpaa." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Tämän kentän arvo ei voi olla \"null\"." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Tämän kenttä ei voi olla tyhjä." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Kenttä tyyppiä: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Kokonaisluku" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Tarvitaan kokonaisluku." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Tarvitaan tosi (True) tai epätosi (False)." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Totuusarvo: joko tosi (True) tai epätosi (False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Merkkijono (enintään %(max_length)s merkkiä)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Pilkulla erotetut kokonaisluvut" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Päivämäärä (ilman kellonaikaa)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Päivämäärän pitää olla muodossa VVVV-KK-PP." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Päivämäärä %s ei kelpaa" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Ajankohdan pitää olla muodossa VVVV-KK-PP TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Päivämäärä ja kellonaika" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Tähän tarvitaan desimaaliluku." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Desimaaliluku" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Sähköpostiosoite" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Tiedostopolku" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Tämän luvun on oltava liukuluku." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Liukuluku" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Suuri (8-tavuinen) kokonaisluku" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP-osoite" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Tähän tarvitaan tyhjä (None), tosi (True) tai epätosi (False)." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Totuusarvo: joko tosi (True), epätosi (False) tai ei mikään (None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekstiä" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Kellonaika" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Ajan täytyy olla muodossa TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL-osoite" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML-teksti" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Mallia %(model)s pääavaimella %(pk)r ei ole olemassa." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Vierasavain (tyyppi määräytyy liittyvän kentän mukaan)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Yksi-yhteen relaatio" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Moni-moneen relaatio" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -" Pidä \"Ctrl\"-näppäin (tai Macin \"Command\") pohjassa valitaksesi useita " -"vaihtoehtoja." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Tämä kenttä vaaditaan." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Syötä kokonaisluku." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Syötä kokonaisluku." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Tässä luvussa voi olla yhteensä enintään %s numeroa." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Tässä luvussa saa olla enintään %s desimaalia." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Tässä luvussa saa olla enintään %s numeroa ennen desimaalipilkkua." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Syötä oikea päivämäärä." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Syötä oikea kellonaika." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Syötä oikea pvm/kellonaika." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Tiedostoa ei lähetetty. Tarkista lomakkeen koodaus (encoding)." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Yhtään tiedostoa ei ole lähetetty." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Lähetetty tiedosto on tyhjä." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Tähän tiedostonimeen kelpaa enintään %(max)d merkkiä (nyt niitä on %(length)" -"d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Voit joko lähettää tai poistaa tiedoston, muttei kumpaakin samalla." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Kuva ei kelpaa. Lähettämäsi tiedosto ei ole kuva, tai tiedosto on vioittunut." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Valitse oikea vaihtoehto. %(value)s ei ole vaihtoehtojen joukossa." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Syötä lista." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Järjestys" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Poista" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Korjaa kaksoisarvo kentälle %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Ole hyvä ja korjaa uniikin kentän %(field)s kaksoisarvo." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Korjaa allaolevat kaksoisarvot." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Liittyvä perusavain ei vastannut vanhemman perusavainta." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Valitse oikea vaihtoehto. Valintasi ei löydy vaihtoehtojen joukosta." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Valitse oikea vaihtoehto. %s ei löydy vaihtoehtojen joukosta." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ei kelpaa perusavaimeksi." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Tällä hetkellä" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Muokkaa" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Poista" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Tuntematon" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Kyllä" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ei" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "kyllä,ei,ehkä" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d tavu" -msgstr[1] "%(size)d tavua" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "ip" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "ap" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "IP" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AP" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "keskiyö" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "keskipäivä" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "maanantai" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "tiistai" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "keskiviikko" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "torstai" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "perjantai" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "lauantai" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "sunnuntai" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "ma" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "ti" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "ke" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "to" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "pe" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "la" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "su" - -#: utils/dates.py:18 -msgid "January" -msgstr "tammikuu" - -#: utils/dates.py:18 -msgid "February" -msgstr "helmikuu" - -#: utils/dates.py:18 -msgid "March" -msgstr "maaliskuu" - -#: utils/dates.py:18 -msgid "April" -msgstr "huhtikuu" - -#: utils/dates.py:18 -msgid "May" -msgstr "toukokuu" - -#: utils/dates.py:18 -msgid "June" -msgstr "kesäkuu" - -#: utils/dates.py:19 -msgid "July" -msgstr "heinäkuu" - -#: utils/dates.py:19 -msgid "August" -msgstr "elokuu" - -#: utils/dates.py:19 -msgid "September" -msgstr "syyskuu" - -#: utils/dates.py:19 -msgid "October" -msgstr "lokakuu" - -#: utils/dates.py:19 -msgid "November" -msgstr "marraskuu" - -#: utils/dates.py:20 -msgid "December" -msgstr "joulukuu" - -#: utils/dates.py:23 -msgid "jan" -msgstr "tam" - -#: utils/dates.py:23 -msgid "feb" -msgstr "hel" - -#: utils/dates.py:23 -msgid "mar" -msgstr "maa" - -#: utils/dates.py:23 -msgid "apr" -msgstr "huh" - -#: utils/dates.py:23 -msgid "may" -msgstr "tou" - -#: utils/dates.py:23 -msgid "jun" -msgstr "kes" - -#: utils/dates.py:24 -msgid "jul" -msgstr "hei" - -#: utils/dates.py:24 -msgid "aug" -msgstr "elo" - -#: utils/dates.py:24 -msgid "sep" -msgstr "syy" - -#: utils/dates.py:24 -msgid "oct" -msgstr "lok" - -#: utils/dates.py:24 -msgid "nov" -msgstr "mar" - -#: utils/dates.py:24 -msgid "dec" -msgstr "jou" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "tammi" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "helmi" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "maalis" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "huhti" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "touko" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "kesä" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "heinä" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "elo" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "syys" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "loka" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "marras" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "joulu" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "tammikuuta" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "helmikuuta" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "maaliskuuta" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "huhtikuuta" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "toukokuuta" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "kesäkuuta" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "heinäkuuta" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "elokuuta" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "syyskuuta" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "lokakuuta" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "marraskuuta" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "joulukuuta" - -#: utils/text.py:136 -msgid "or" -msgstr "tai" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "vuosi" -msgstr[1] "vuotta" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "kuukausi" -msgstr[1] "kuukautta" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "viikko" -msgstr[1] "viikkoa" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "päivä" -msgstr[1] "päivää" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "tunti" -msgstr[1] "tuntia" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuutti" -msgstr[1] "minuuttia" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuuttia" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j.n.Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j.n.Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "N Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "N j, Y" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s luotiin onnistuneesti." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s päivitettiin onnistuneesti." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s on poistettu." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/fi/__init__.py b/lib/python2.7/site-packages/django/conf/locale/fi/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/fi/formats.py b/lib/python2.7/site-packages/django/conf/locale/fi/formats.py deleted file mode 100644 index 198ece66b..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/fi/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. E Y' -TIME_FORMAT = 'G.i.s' -# DATETIME_FORMAT = -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'j.n.Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = u' ' # Non-breaking space -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo deleted file mode 100644 index 2ea030414..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/fr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po deleted file mode 100644 index 090994fe7..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/fr/LC_MESSAGES/django.po +++ /dev/null @@ -1,1159 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:08-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: claudep \n" -"Language-Team: French \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabe" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azéri" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgare" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalî" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosniaque" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalan" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tchèque" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Gallois" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Dannois" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Allemand" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Grec" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Anglais" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Anglais britannique" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Espagnol" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Espagnol argentin" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Espagnol mexicain" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estonien" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Basque" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Perse" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finlandais" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Français" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frise" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irlandais" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galicien" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hébreu" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Croate" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Hongrois" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonésien" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandais" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italien" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japonais" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Géorgien" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Coréen" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Lituanien" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Letton" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Macédonien" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayâlam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongole" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Hollandais" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norvégien" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norvégien Bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norvégien Nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Penjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polonais" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugais" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Portugais brésilien" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Roumain" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Russe" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovaque" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slovène" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanais" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbe" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbe latin" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Suédois" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamoul" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Télougou" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thaï" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turc" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrainien" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Ourdou" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamien" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Chinois simplifié" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Chinois traditionnel" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Saisissez une valeur valide." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Cette URL semble être cassée." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Saisissez une URL valide." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Entrez une adresse de courriel valide." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Ce champ ne doit contenir que des lettres, des nombres, des tirets bas _ et " -"des traits d'union." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Saisissez une adresse IPv4 valide." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Saisissez uniquement des chiffres séparés par des virgules." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Assurez-vous que cette valeur est %(limit_value)s (actuellement %(show_value)" -"s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"Assurez-vous que cette valeur est inférieure ou égale à %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"Assurez-vous que cette valeur est supérieure ou égale à %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Assurez-vous que cette valeur comporte au moins %(limit_value)d caractères " -"(actuellement %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Assurez-vous que cette valeur comporte au maximum %(limit_value)d caractères " -"(actuellement %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(field_name)s doit être unique pour la partie %(lookup)s de %(date_field)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "Un(e) %(model_name)s avec ce %(field_label)s existe déjà." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "et" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "La valeur « %r » n'est pas un choix valide." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Ce champ ne peut pas être vide." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Ce champ ne peut pas être vide." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Champ de type : %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Entier" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Cette valeur doit être un entier." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Cette valeur doit être soit vraie (True) soit fausse (False)." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Booléen (soit vrai ou faux)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Chaîne de caractère (jusqu'à %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Des entiers séparés par une virgule" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Date (sans l'heure)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Saisissez une date valide au format AAAA-MM-JJ." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Date non valide : %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Saisissez une date et une heure valides au format AAAA-MM-JJ HH:MM[:ss[." -"uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Date (avec l'heure)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Cette valeur doit être un nombre décimal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Nombre décimal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Adresse électronique" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Chemin vers le fichier" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Cette valeur doit être un nombre réel." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Nombre à virgule flottante" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Grand entier (8 octets)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "adresse IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Cette valeur doit être nulle (None), vraie (True) ou fausse (False)." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Booléen (soit vrai, faux ou nul)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Texte" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Heure" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Saisissez une heure valide au format HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Texte XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Le modèle %(model)s avec la clef primaire %(pk)r n'existe pas." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Clé étrangère (type défini par le champ lié)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Relation un à un" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Relation plusieurs à plusieurs" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Maintenez appuyé « Ctrl », ou « Commande (touche pomme) » sur un Mac, pour en " -"sélectionner plusieurs." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Ce champ est obligatoire." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Saisissez un nombre entier." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Saisissez un nombre." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Assurez-vous qu'il n'y a pas plus de %s chiffres au total." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Assurez-vous qu'il n'y a pas plus de %s chiffres après la virgule." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Assurez-vous qu'il n'y a pas plus de %s chiffres avant la virgule." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Saisissez une date valide." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Saisissez une heure valide." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Saisissez une date et une heure valides." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"Aucun fichier n'a été soumis. Vérifiez le type d'encodage du formulaire." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Aucun fichier n'a été soumis." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Le fichier soumis est vide." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Assurez-vous que ce nom de fichier ne contient pas plus de %(max)d " -"caractères (actuellement %(length)d caractères)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Envoyez un fichier ou cochez la case d'effacement, mais pas les deux." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Téléversez une image valide. Le fichier que vous avez transféré n'est pas " -"une image ou bien est corrompu." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Sélectionnez un choix valide. %(value)s n'en fait pas partie." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Saisissez une liste de valeurs." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ordre" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Supprimer" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Corrigez les données à double dans %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Corrigez les données à double dans %(field)s qui doit contenir des valeurs " -"uniques." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Corrigez les données à double dans %(field_name)s qui doit contenir des " -"valeurs uniques pour la partie %(lookup)s de %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Corrigez les valeurs à double ci-dessous." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"La clé étrangère en ligne ne correspond pas à la clé primaire de l'instance " -"parente." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Sélectionnez un choix valide. Ce choix ne fait pas partie de ceux " -"disponibles." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Sélectionnez un choix valide ; %s n'en fait pas partie." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "« %s » n'est pas une valeur correcte pour une clé primaire." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Actuellement" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Modifier" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Effacer" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Inconnu" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Oui" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Non" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "oui, non, peut-être" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d octet" -msgstr[1] "%(size)d octets" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "après-midi" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "matin" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "Après-midi" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "Matin" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "minuit" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "midi" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "lundi" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "mardi" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "mercredi" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "jeudi" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "vendredi" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "samedi" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "dimanche" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "lun" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "mar" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "mer" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "jeu" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "ven" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "sam" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "dim" - -#: utils/dates.py:18 -msgid "January" -msgstr "janvier" - -#: utils/dates.py:18 -msgid "February" -msgstr "février" - -#: utils/dates.py:18 -msgid "March" -msgstr "mars" - -#: utils/dates.py:18 -msgid "April" -msgstr "avril" - -#: utils/dates.py:18 -msgid "May" -msgstr "mai" - -#: utils/dates.py:18 -msgid "June" -msgstr "juin" - -#: utils/dates.py:19 -msgid "July" -msgstr "juillet" - -#: utils/dates.py:19 -msgid "August" -msgstr "août" - -#: utils/dates.py:19 -msgid "September" -msgstr "septembre" - -#: utils/dates.py:19 -msgid "October" -msgstr "octobre" - -#: utils/dates.py:19 -msgid "November" -msgstr "novembre" - -#: utils/dates.py:20 -msgid "December" -msgstr "décembre" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "fév" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "avr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jui" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aoû" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "oct" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "déc" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "fév." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mars" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "avr." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "mai" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "juin" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "juil." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "août" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "sep." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "oct." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "déc." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Janvier" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Février" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Mars" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Avril" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Mai" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Juin" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Juillet" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Août" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Septembre" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Octobre" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Novembre" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Décembre" - -#: utils/text.py:136 -msgid "or" -msgstr "ou" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "an" -msgstr[1] "ans" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mois" -msgstr[1] "mois" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "semaine" -msgstr[1] "semaines" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "jour" -msgstr[1] "jours" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "heure" -msgstr[1] "heures" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minute" -msgstr[1] "minutes" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutes" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j F Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j F Y, G:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "G:i:s" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "L'objet %(verbose_name)s a été créé avec succès." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "L'objet %(verbose_name)s a été mis à jour avec succès." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "L'objet %(verbose_name)s a été supprimé." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Aucune année indiquée" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Aucun mois indiqué" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Aucun jour indiqué" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Aucune semaine indiquée" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Pas de %(verbose_name_plural)s disponible" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Pas de %(verbose_name_plural)s disponible dans le futur car %(class_name)s." -"allow_future est faux (False)." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" -"Le format « %(format)s » appliqué à la chaîne date « %(datestr)s » n'est pas " -"valide" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Aucun objet %(verbose_name)s trouvé en réponse à la requête" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Page ne vaut pas « last » et ne peut pas non plus être converti en un nombre " -"entier." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Page non valide (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Liste vide et %(class_name)s.allow_empty est faux (False)." diff --git a/lib/python2.7/site-packages/django/conf/locale/fr/__init__.py b/lib/python2.7/site-packages/django/conf/locale/fr/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/fr/formats.py b/lib/python2.7/site-packages/django/conf/locale/fr/formats.py deleted file mode 100644 index 2ad05b894..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/fr/formats.py +++ /dev/null @@ -1,41 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = 'j F Y H:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j N Y' -SHORT_DATETIME_FORMAT = 'j N Y H:i:s' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' - '%d.%m.%Y', '%d.%m.%y', # Swiss (fr_CH), '25.10.2006', '25.10.06' - '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' - # '%d %B %Y', '%d %b %Y', # '25 octobre 2006', '25 oct. 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d/%m/%Y %H:%M:%S', # '25/10/2006 14:30:59' - '%d/%m/%Y %H:%M', # '25/10/2006 14:30' - '%d/%m/%Y', # '25/10/2006' - '%d.%m.%Y %H:%M:%S', # Swiss (fr_CH), '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # Swiss (fr_CH), '25.10.2006 14:30' - '%d.%m.%Y', # Swiss (fr_CH), '25.10.2006' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = ' ' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/fy_NL/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/fy_NL/LC_MESSAGES/django.mo deleted file mode 100644 index 776c65da6..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/fy_NL/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/fy_NL/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/fy_NL/LC_MESSAGES/django.po deleted file mode 100644 index bbb46b648..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/fy_NL/LC_MESSAGES/django.po +++ /dev/null @@ -1,1139 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 20:58+0100\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fy_NL\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Nicaraguan Spanish" -msgstr "" - -#: conf/global_settings.py:61 -msgid "Estonian" -msgstr "" - -#: conf/global_settings.py:62 -msgid "Basque" -msgstr "" - -#: conf/global_settings.py:63 -msgid "Persian" -msgstr "" - -#: conf/global_settings.py:64 -msgid "Finnish" -msgstr "" - -#: conf/global_settings.py:65 -msgid "French" -msgstr "" - -#: conf/global_settings.py:66 -msgid "Frisian" -msgstr "" - -#: conf/global_settings.py:67 -msgid "Irish" -msgstr "" - -#: conf/global_settings.py:68 -msgid "Galician" -msgstr "" - -#: conf/global_settings.py:69 -msgid "Hebrew" -msgstr "" - -#: conf/global_settings.py:70 -msgid "Hindi" -msgstr "" - -#: conf/global_settings.py:71 -msgid "Croatian" -msgstr "" - -#: conf/global_settings.py:72 -msgid "Hungarian" -msgstr "" - -#: conf/global_settings.py:73 -msgid "Indonesian" -msgstr "" - -#: conf/global_settings.py:74 -msgid "Icelandic" -msgstr "" - -#: conf/global_settings.py:75 -msgid "Italian" -msgstr "" - -#: conf/global_settings.py:76 -msgid "Japanese" -msgstr "" - -#: conf/global_settings.py:77 -msgid "Georgian" -msgstr "" - -#: conf/global_settings.py:78 -msgid "Khmer" -msgstr "" - -#: conf/global_settings.py:79 -msgid "Kannada" -msgstr "" - -#: conf/global_settings.py:80 -msgid "Korean" -msgstr "" - -#: conf/global_settings.py:81 -msgid "Lithuanian" -msgstr "" - -#: conf/global_settings.py:82 -msgid "Latvian" -msgstr "" - -#: conf/global_settings.py:83 -msgid "Macedonian" -msgstr "" - -#: conf/global_settings.py:84 -msgid "Malayalam" -msgstr "" - -#: conf/global_settings.py:85 -msgid "Mongolian" -msgstr "" - -#: conf/global_settings.py:86 -msgid "Dutch" -msgstr "" - -#: conf/global_settings.py:87 -msgid "Norwegian" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:90 -msgid "Punjabi" -msgstr "" - -#: conf/global_settings.py:91 -msgid "Polish" -msgstr "" - -#: conf/global_settings.py:92 -msgid "Portuguese" -msgstr "" - -#: conf/global_settings.py:93 -msgid "Brazilian Portuguese" -msgstr "" - -#: conf/global_settings.py:94 -msgid "Romanian" -msgstr "" - -#: conf/global_settings.py:95 -msgid "Russian" -msgstr "" - -#: conf/global_settings.py:96 -msgid "Slovak" -msgstr "" - -#: conf/global_settings.py:97 -msgid "Slovenian" -msgstr "" - -#: conf/global_settings.py:98 -msgid "Albanian" -msgstr "" - -#: conf/global_settings.py:99 -msgid "Serbian" -msgstr "" - -#: conf/global_settings.py:100 -msgid "Serbian Latin" -msgstr "" - -#: conf/global_settings.py:101 -msgid "Swedish" -msgstr "" - -#: conf/global_settings.py:102 -msgid "Tamil" -msgstr "" - -#: conf/global_settings.py:103 -msgid "Telugu" -msgstr "" - -#: conf/global_settings.py:104 -msgid "Thai" -msgstr "" - -#: conf/global_settings.py:105 -msgid "Turkish" -msgstr "" - -#: conf/global_settings.py:106 -msgid "Ukrainian" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Vietnamese" -msgstr "" - -#: conf/global_settings.py:109 -msgid "Simplified Chinese" -msgstr "" - -#: conf/global_settings.py:110 -msgid "Traditional Chinese" -msgstr "" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Jou in falide wearde." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Dit URL liket in ferbrutsen keppeling." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Jou in falide URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Jou in falida 'slug' gearsteld mei letters, nûmers, ûnderstreekjes of " -"koppelteken." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Jou in falide IPv4-adres." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Jou allinnich sifers, skieden troch komma's." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s mei dit %(field_label)s bestiet al." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Dit fjild kin net leech wêze." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Dizze wearde moat in integer wêze." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Dizze wearde moat of Wier of Net wier wêze." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Jou in falide daum yn JJJJ-MM-DD-formaat." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Foute datum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Jou in falide datum/tiid yn JJJ-MM-DD OO:MM[:ss[.uuuuuu]]-formaat." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Dizze wearde moat in desimaal nûmer wêze." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Dizze wearde moat of Gjin, of Wier of Net wier wêze." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Jou in falide tiid yn OO:MM[:ss[.uuuuuu]]-formaat." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Hâld \"Control\", of \"Command\" op in Mac del, om mear as ien te " -"selektearjen." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Dit fjild is fereaske." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Jou in folslein nûmer." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Jou in nûmer." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Wês wis dat der yn totaal net mear as %s sifers binne." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Wês wis dat der net mear as %s desimale plakken binne." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Wês wis dat der net mear as %s sifers foar it desimale punt." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Jou in falide datum." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Jou in falide tiid." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Jou in falide datum.tiid." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"Der is gjin bestân yntsjinne. Kontrolearje it kodearringstype op it " -"formulier." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Der is gjin bestân yntsjinne." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "It yntsjinne bestân is leech." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Laad in falide ôfbylding op. It bestân dy't jo opladen hawwe wie net in " -"ôfbylding of in skansearre ôfbylding." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Selektearje in falide kar. %(value)s is net ien fan de beskikbere karren." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Jou in list mei weardes." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Oarder" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Selektearje in falide kar. Dizze kar is net ien fan de beskikbere karren." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Selektearje in falide kar. %s is net ien fan de beskikbere karren." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "" - -#: forms/widgets.py:548 -msgid "No" -msgstr "" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "" -msgstr[1] "" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "" - -#: utils/dates.py:18 -msgid "January" -msgstr "" - -#: utils/dates.py:18 -msgid "February" -msgstr "" - -#: utils/dates.py:18 -msgid "March" -msgstr "" - -#: utils/dates.py:18 -msgid "April" -msgstr "" - -#: utils/dates.py:18 -msgid "May" -msgstr "" - -#: utils/dates.py:18 -msgid "June" -msgstr "" - -#: utils/dates.py:19 -msgid "July" -msgstr "" - -#: utils/dates.py:19 -msgid "August" -msgstr "" - -#: utils/dates.py:19 -msgid "September" -msgstr "" - -#: utils/dates.py:19 -msgid "October" -msgstr "" - -#: utils/dates.py:19 -msgid "November" -msgstr "" - -#: utils/dates.py:20 -msgid "December" -msgstr "" - -#: utils/dates.py:23 -msgid "jan" -msgstr "" - -#: utils/dates.py:23 -msgid "feb" -msgstr "" - -#: utils/dates.py:23 -msgid "mar" -msgstr "" - -#: utils/dates.py:23 -msgid "apr" -msgstr "" - -#: utils/dates.py:23 -msgid "may" -msgstr "" - -#: utils/dates.py:23 -msgid "jun" -msgstr "" - -#: utils/dates.py:24 -msgid "jul" -msgstr "" - -#: utils/dates.py:24 -msgid "aug" -msgstr "" - -#: utils/dates.py:24 -msgid "sep" -msgstr "" - -#: utils/dates.py:24 -msgid "oct" -msgstr "" - -#: utils/dates.py:24 -msgid "nov" -msgstr "" - -#: utils/dates.py:24 -msgid "dec" -msgstr "" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "" - -#: utils/text.py:136 -msgid "or" -msgstr "" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr "" - -#: utils/translation/trans_real.py:578 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:579 -msgid "DATETIME_FORMAT" -msgstr "" - -#: utils/translation/trans_real.py:580 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:601 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:602 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "De %(verbose_name)s is súksesfol oanmakke." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "De %(verbose_name)s is súksesfol fernijd." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "De %(verbose_name)s is fuortsmiten." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/fy_NL/__init__.py b/lib/python2.7/site-packages/django/conf/locale/fy_NL/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/fy_NL/formats.py b/lib/python2.7/site-packages/django/conf/locale/fy_NL/formats.py deleted file mode 100644 index bf26f4b31..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/fy_NL/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -# DATE_FORMAT = -# TIME_FORMAT = -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -# MONTH_DAY_FORMAT = -# SHORT_DATE_FORMAT = -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -# DECIMAL_SEPARATOR = -# THOUSAND_SEPARATOR = -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/ga/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ga/LC_MESSAGES/django.mo deleted file mode 100644 index 6ba27ec04..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ga/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ga/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ga/LC_MESSAGES/django.po deleted file mode 100644 index 8e78b769d..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ga/LC_MESSAGES/django.po +++ /dev/null @@ -1,1175 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:08-0400\n" -"PO-Revision-Date: 2011-03-10 15:16+0000\n" -"Last-Translator: seamus \n" -"Language-Team: Irish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ga\n" -"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " -"4)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Araibis" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Asarbaiseáinis" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgáiris" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Beangáilis" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Boisniais" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalóinis" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Seicis" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Breatnais" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Danmhairgis " - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Gearmáinis" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Gréigis" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Béarla" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Béarla na Breataine" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spáinnis" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Spáinnis na hAirgintíne" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Spáinnis Mheicsiceo " - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Eastóinis" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Bascais" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Peirsis" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Fionlainnis" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Fraincis" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisianais" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Gaeilge" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Gailísis" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Eabhrais" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hiondúis" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Cróitis" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Ungáiris" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indinéisis" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Mórlainnis" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Iodáilis" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Seapáinis" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Seoirseach" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Ciméiris" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Cannadais" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Cóiréis" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Liotuáinis" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Laitvis" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Macadóinis" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Mailéalaimis" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongóilis" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Ollainnis" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Ioruais" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Bokmal Ioruais" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Nynorsk Ioruais" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Puinseáibis" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polainnis" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portaingéilis" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Portaingéilis Bhrasaíleach" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rómáinis" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Rúisis" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slóvaicis" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slóivéinis" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanian" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Seirbis" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Laidin Seirbiach" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Sualainnis" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamailis" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Teileagúis" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Tamailis" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Tuircis" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Úcráinis" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdais" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vitneaimis" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Sínis" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Sínis Tradisúinta" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Cuir luach bailí isteach." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Dealraíonn sé gur nasc briste é an URL seo." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Cuir URL bailí isteach." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Cuir isteach seoladh ríomhphoist bhailí." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Cuir 'slug' bailí isteach atá déanta as litreacha, uimhreacha, fostríoca nó " -"fleiscíní." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Cuir seoladh bailí IPv4 isteach." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Ná cuir isteach ach digití scartha ag camóga." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Bí cinnte nach bhfuil níos lú ná %(limit_value)s (it is %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"Bí cinnte go bhfuil an luach seo cothrom le nó níos lú ná %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"Bí cinnte go bhfuil an luach seo cothrom le nó níos mó ná %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Bí cinnte nach bhfuil níos lú ná %(limit_value)d carachtar sa luach seo (it " -"has %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Bí cinnte nach bhfuil níos mó ná %(limit_value)d carachtar sa luach seo %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "Ní mór a bheith %(field_name)s uathúil don %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "Tá %(model_name)s leis an %(field_label)s seo ann cheana." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "agus" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Níl %r luach rogha bailí." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Ní cheadaítear luach nialasach sa réimse seo." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Ní cheadaítear luach nialasach sa réimse seo." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Réimse de Cineál: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Slánuimhir" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Ní mór don luach seo a bheith ina shlánuimhir." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Ní mór don luach seo a bheith Fíor nó Bréagach." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boole" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Teaghrán (suas go %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Slánuimhireacha camóg-scartha" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Dáta (gan am)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Cuir dáta bailí isteach, san fhormáid BBBB-MM-LL." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Dáta neamhbhailí: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Cuir dáta/am bailí isteach, san fhormáid BBBB-MM-LL UU:NN[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Dáta (le am)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Ní mór don luach seo a bheith ina uimhir dheachúlach." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Uimhir deachúlach" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "R-phost" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Conair comhaid" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Ní mór go mbeadh an luach snámhpointe." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Snámhphointe" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Mór (8 byte) slánuimhi" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Seol IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Ní mór don luach seo a bheith Faic, Fíor nó Bréagach." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boole (Fíor, Bréagach nó Dada)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "téacs" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "am" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Cuir am bailí isteach san fhormáid UU:NN[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Téacs XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Níl %(model)s le eochair %(pk)r ann." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Eochair Eachtracha (cineál a chinnfear de réir réimse a bhaineann)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Duine-le-duine caidreamh" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Go leor le go leor caidreamh" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Ar ríomhaire Mac, coinnigh an eochair \"Control\" nó \"Command\" síos chun " -"níos mó ná rud amháin a roghnú." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Tá an réimse seo riachtanach." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Cuir slánuimhir isteach." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Cuir uimhir isteach." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Bí cinnte nach bhfuil níos mó ná %s digit ann." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Bí cinnte nach bhfuil níos mó ná %s ionad deachúlach ann." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Bí cinnte nach bhfuil níos mó ná %s digit roimh an bpointe deachúlach." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Cuir dáta bailí isteach." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Cuir am bailí isteach." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Cuir dáta/am bailí isteach." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Níor seoladh comhad. Deimhnigh cineál an ionchódaithe ar an bhfoirm." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Níor seoladh aon chomhad." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Tá an comhad a seoladh folamh." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Cinntiú go bhfuil níos lú ná %(max)d carachtair (tá sé %(length)d) ag ainm " -"an chomhaid seo." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Cuir ceachtar isteach comhad nó an ticbhosca soiléir, ní féidir an dá " -"sheiceáil." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Uasluchtaigh íomhá bhailí. Níorbh íomhá é an comhad a d'uasluchtaigh tú, nó " -"b'íomhá thruaillithe é." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Déan rogha bhailí. Ní ceann de na roghanna é %(value)s." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Cuir liosta de luachanna isteach." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ord" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Cealaigh" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Le do thoil ceartaigh an sonra dúbail le %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Ceart le do thoil na sonraí a dhúbailt le haghaidh %(field)s, chaithfidh a " -"bheith uathúil." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Ceart le do thoil na sonraí a dhúbailt le haghaidh %(field_name)s ní mór a " -"bheith uaithúil le haghaidh an %(lookup)s i %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Le do thoil ceartaigh na luachanna dúbail thíos." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Ní raibh an eochair eachtrach comhoiriúnach leis an tuismitheoir ásc príomh-" -"eochair." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Déan rogha bhailí. Ní ceann de na roghanna é do roghasa." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Déan rogha bhailí. Ní ceann de na roghanna é %s." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "Níl \"%s\" luach bailí le príomh-eochair." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Faoi láthair" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Athraigh" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Glan" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Gan aithne" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Tá" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Níl" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "tá, níl, b'fhéidir" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bheart" -msgstr[1] "%(size)d bheart" -msgstr[2] "%(size)d bheart" -msgstr[3] "%(size)d beart" -msgstr[4] "%(size)d beart" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "meán oíche" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "nóin" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Luan" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Máirt" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Céadaoin" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Déardaoin" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Aoine" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Satharn" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Domhnach" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Lua" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Mai" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Céa" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Déa" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Aoi" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sat" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Dom" - -#: utils/dates.py:18 -msgid "January" -msgstr "Mí Eanair" - -#: utils/dates.py:18 -msgid "February" -msgstr "Mí Feabhra" - -#: utils/dates.py:18 -msgid "March" -msgstr "Mí Márta" - -#: utils/dates.py:18 -msgid "April" -msgstr "Aibreán" - -#: utils/dates.py:18 -msgid "May" -msgstr "Bealtaine" - -#: utils/dates.py:18 -msgid "June" -msgstr "Mí an Mheithimh" - -#: utils/dates.py:19 -msgid "July" -msgstr "Mí Iúil" - -#: utils/dates.py:19 -msgid "August" -msgstr "Lúnasa" - -#: utils/dates.py:19 -msgid "September" -msgstr "Meán Fómhair" - -#: utils/dates.py:19 -msgid "October" -msgstr "Deireadh Fómhair" - -#: utils/dates.py:19 -msgid "November" -msgstr "Samhain" - -#: utils/dates.py:20 -msgid "December" -msgstr "Mí na Nollag" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ean" - -#: utils/dates.py:23 -msgid "feb" -msgstr "fea" - -#: utils/dates.py:23 -msgid "mar" -msgstr "loit" - -#: utils/dates.py:23 -msgid "apr" -msgstr "aib" - -#: utils/dates.py:23 -msgid "may" -msgstr "bealtaine" - -#: utils/dates.py:23 -msgid "jun" -msgstr "mei" - -#: utils/dates.py:24 -msgid "jul" -msgstr "iui" - -#: utils/dates.py:24 -msgid "aug" -msgstr "lun" - -#: utils/dates.py:24 -msgid "sep" -msgstr "mea" - -#: utils/dates.py:24 -msgid "oct" -msgstr "dei" - -#: utils/dates.py:24 -msgid "nov" -msgstr "sam" - -#: utils/dates.py:24 -msgid "dec" -msgstr "nol" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Ean." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Fea." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Márta" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Aibreán" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Bealtaine" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Meitheamh" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Iúil" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Lún." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Meá." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Dei." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Sam." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Nol." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Eanáir" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Feabhra" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Márta" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Aibreán" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Bealtaine" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Meitheamh" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Iúil" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Lúnasa" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Meán Fómhair" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Deireadh Fómhair" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Samhain" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Nollaig" - -#: utils/text.py:136 -msgid "or" -msgstr "nó" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "bliain" -msgstr[1] "bliain" -msgstr[2] "bliain" -msgstr[3] "bliain" -msgstr[4] "bliana" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mí" -msgstr[1] "mí" -msgstr[2] "mí" -msgstr[3] "mí" -msgstr[4] "míosa" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "seachtain" -msgstr[1] "seachtain" -msgstr[2] "seachtain" -msgstr[3] "seachtain" -msgstr[4] "seachtain" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "lá" -msgstr[1] "lá" -msgstr[2] "lá" -msgstr[3] "lá" -msgstr[4] "laethanta" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "uair" -msgstr[1] "uair" -msgstr[2] "uair" -msgstr[3] "uair" -msgstr[4] "uair" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "nóimead" -msgstr[1] "nóiméad" -msgstr[2] "nóiméad" -msgstr[3] "nóiméad" -msgstr[4] "nóiméad" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "nóiméad" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "DATETIME_FORMAT" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "D'éirigh le cruthú %(verbose_name)s." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "D'éirigh le nuashonrú %(verbose_name)s." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "Scriosadh %(verbose_name)s." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Níl blian sonraithe" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Níl mí sonraithe" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Níl lá sonraithe" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Níl seachtain sonraithe" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Níl %(verbose_name_plural)s ar fáil" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Níl sa Todhchaí %(verbose_name_plural)s ar fáil toisc go bhfuil %(class_name)" -"s.allow_future Bréagach." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" -"Dáta neamhbhailí '%(datestr)s' le hadhaigh an fhormáid seo '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Níl bhfuarthas %(verbose_name)s le hadhaigh an iarratas" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Níl an leathanach 'deireanach', agus ní féidir é a thiontú go dtí slánuimhir." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Leathanach neamhbhailí (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Liosta Folamh agus tá '%(class_name)s .allow_empty' Bréagach." diff --git a/lib/python2.7/site-packages/django/conf/locale/ga/__init__.py b/lib/python2.7/site-packages/django/conf/locale/ga/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/ga/formats.py b/lib/python2.7/site-packages/django/conf/locale/ga/formats.py deleted file mode 100644 index 50c68a9c1..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ga/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' -TIME_FORMAT = 'H:i:s' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j M Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo deleted file mode 100644 index e263f2fcc..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/gl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po deleted file mode 100644 index d491aba3e..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/gl/LC_MESSAGES/django.po +++ /dev/null @@ -1,1156 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:08-0400\n" -"PO-Revision-Date: 2011-03-08 18:21+0000\n" -"Last-Translator: fonso \n" -"Language-Team: Galician \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "árabe" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "azerí" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "búlgaro" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengalí" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosníaco" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "catalán" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "checo" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "galés" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "dinamarqués" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "alemán" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "grego" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "inglés" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "inglés británico" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "español" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "español da Arxentina" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "español de México" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "estoniano" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "vasco" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "persa" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "finés" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "francés" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "frisón" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "irlandés" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "galego" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "hebreo" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "croata" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "húngaro" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "indonesio" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "islandés" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "italiano" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "xaponés" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "xeorxiano" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "camboxano" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "canará" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "coreano" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "lituano" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "letón" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "macedonio" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "mala" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "mongol" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "holandés" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "noruegués" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "malaiala" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "noruegués (nynorsk)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "panxabiano" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "polaco" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "portugués" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "portugués do Brasil" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "romanés" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "ruso" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "eslovaco" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "esloveno" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "albanés" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "serbio" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "serbio (alfabeto latino)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "sueco" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "támil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "tai" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "turco" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ucraíno" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "vietnamita" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "chinés simplificado" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "chinés tradicional" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Insira un valor válido." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Semella que este URL é unha ligazón rota." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Insira un URL válido." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Insira un enderezo de correo electrónico válido." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Insira un 'slug' valido composto por letras, números, guións baixos ou " -"medios." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Insira unha dirección IPv4 válida." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Insira só díxitos separados por comas." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Asegúrese de que este valor é %(limit_value)s (agora é %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Asegure que este valor é menor ou igual a %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Asegure que este valor é maior ou igual a %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Asegúrese que este valor é de polo menos %(limit_value)d caracteres (agora " -"ten %(show_value)d). " - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Asegúrese de que este valor ten como máximo %(limit_value)d caracteres " -"(agora ten %(show_value)d))." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"O campo %(field_name)s debe ser único para a busca %(lookup)s en %" -"(date_field)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" -"Xa existe un modelo %(model_name)s coa etiqueta de campo %(field_label)s." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "e" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "O valor %r non é unha opción válida." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Este campo non pode ser nulo." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Este campo non pode estar baleiro." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Campo do tipo: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Número enteiro" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Este valor ten que ser un número enteiro." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Este valor ten que verdadeiro ou falso." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Valor booleano (verdadeiro ou falso)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Cadea (máximo %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Números enteiros separados por comas" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Data (sen a hora)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Insira unha data válida en formato AAAA-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Data non válida: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Insira unha data e tempo válido co formato YYYY-MM-DD HH:MM[:ss[.uuuuuu]] " - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Data (coa hora)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Este valor ten que ser un número decimal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Número decimal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Enderezo de correo electrónico" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Ruta do ficheiro" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Este valor ten que ser un número en coma flotante." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Número en coma flotante" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Enteiro grande (8 bytes)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Enderezo IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Este valor ten que verdadeiro, falso ou nulo." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Booleano (verdadeiro, falso ou ningún)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Texto" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Hora" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Insira unha data válida no formato HH:MM[:ss[.uuuuuu]]" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Texto XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Non existe modelo %(model)s coa clave primaria %(pk)r." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Clave Estranxeira (tipo determinado por un campo relacionado)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Relación un a un" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Relación moitos a moitos" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -" Para seleccionar máis dunha entrada, manteña premida a tecla \"Control\", " -"ou \"Comando\" nun Mac." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Requírese este campo." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Insira un número enteiro." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Insira un número." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Asegñurese de que non hai máis de %s díxitos en total." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Asegúrese de que non hai máis de %s lugares decimais." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" -"Asegúrese de que no hai máis de %s díxitos antes do punto ou coma decimal." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Insira unha data válida." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Insira unha hora válida." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Insira unha data/hora válida." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"Non se enviou ficheiro ningún. Comprobe o tipo de codificación do formulario." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Non se enviou ficheiro ningún." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "O ficheiro enviado está baleiro." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Asegúrese de que o nome de ficheiro ten como máximo %(max)d caracteres " -"(agora ten %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Ou ben envíe un ficheiro, ou ben marque a casilla de eliminar, pero non " -"ambas as dúas cousas." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Suba unha imaxe válida. O ficheiro subido non era unha imaxe ou esta estaba " -"corrupta." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Escolla unha opción válida. %(value)s non se atopa entre as opción " -"dispoñibles." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Insira unha lista de valores." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Orde" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Eliminar" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Corrixa os datos duplicados no campo %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Corrixa os datos duplicados no campo %(field)s, que debe ser único." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Corrixa os datos duplicados no campo %(field_name)s, que debe ser único para " -"a busca %(lookup)s no campo %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Corrixa os valores duplicados embaixo." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"A clave estranxeira en liña non coincide coa clave primaria da instancia nai." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Escolla unha opción válida. Esta opción non se atopa entre as opcións " -"dispoñíbeis" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" -"Escolla unha opción válida. %s non se atopa entre as opcións dispoñíbeis." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" non é un valor válido para unha clave primaria." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Actualmente" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Modificar" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Limpar" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Descoñecido" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Si" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Non" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "si,non,quizais" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "medianoite" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "mediodía" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "luns" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "martes" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "mércores" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "xoves" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "venres" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "sábado" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "domingo" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "lun" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "mar" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "mér" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "xov" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "ven" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "sáb" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "dom" - -#: utils/dates.py:18 -msgid "January" -msgstr "xaneiro" - -#: utils/dates.py:18 -msgid "February" -msgstr "febreiro" - -#: utils/dates.py:18 -msgid "March" -msgstr "marzo" - -#: utils/dates.py:18 -msgid "April" -msgstr "abril" - -#: utils/dates.py:18 -msgid "May" -msgstr "maio" - -#: utils/dates.py:18 -msgid "June" -msgstr "xuño" - -#: utils/dates.py:19 -msgid "July" -msgstr "xullo" - -#: utils/dates.py:19 -msgid "August" -msgstr "agosto" - -#: utils/dates.py:19 -msgid "September" -msgstr "setembro" - -#: utils/dates.py:19 -msgid "October" -msgstr "outubro" - -#: utils/dates.py:19 -msgid "November" -msgstr "novembro" - -#: utils/dates.py:20 -msgid "December" -msgstr "decembro" - -#: utils/dates.py:23 -msgid "jan" -msgstr "xan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "abr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "xuñ" - -#: utils/dates.py:24 -msgid "jul" -msgstr "xul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ago" - -#: utils/dates.py:24 -msgid "sep" -msgstr "set" - -#: utils/dates.py:24 -msgid "oct" -msgstr "out" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "xan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mar." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "abr." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "maio" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "xuño" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "xul." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "ago." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "set." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "out." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "dec." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "xaneiro" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "febreiro" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "marzo" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "abril" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "maio" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "xuño" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "xullo" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "agosto" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "setembro" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "outubro" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "novembro" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "decembro" - -#: utils/text.py:136 -msgid "or" -msgstr "ou" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "ano" -msgstr[1] "anos" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutos" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "d-m-Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "d-m-Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "m Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "d m" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "Creouse correctamente o/a %(verbose_name)s ." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "Actualizouse correctamente o/a %(verbose_name)s." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "Eliminouse o/a %(verbose_name)s" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Non se especificou un ano" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Non se especificou un mes" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Non se especificou un día" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Non se especificou unha semana" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Non hai %(verbose_name_plural)s dispoñibles" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Non hai dispoñibles %(verbose_name_plural)s futuros/as porque %(class_name)s." -"allow_futuro é False" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "A cadea de data '%(datestr)s' non é válida para o formato '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Non se atopou ningún/ha %(verbose_name)s que coincidise coa consulta" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "A páxina non é 'last' nin se pode converter a int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Páxina non válida (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "A lista está baleira pero '%(class_name)s.allow_empty' é False." diff --git a/lib/python2.7/site-packages/django/conf/locale/gl/__init__.py b/lib/python2.7/site-packages/django/conf/locale/gl/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/gl/formats.py b/lib/python2.7/site-packages/django/conf/locale/gl/formats.py deleted file mode 100644 index 1ff9f3452..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/gl/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'd F Y' -TIME_FORMAT = 'H:i:s' -# DATETIME_FORMAT = -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j M, Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/he/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/he/LC_MESSAGES/django.mo deleted file mode 100644 index 970c210ef..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/he/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/he/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/he/LC_MESSAGES/django.po deleted file mode 100644 index 5b5698e16..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/he/LC_MESSAGES/django.po +++ /dev/null @@ -1,1137 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 20:59+0100\n" -"PO-Revision-Date: 2011-03-19 10:21+0000\n" -"Last-Translator: mksoft \n" -"Language-Team: Hebrew <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ערבית" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "×זרית" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "בולגרית" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "בנג×לית" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "בוסנית" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "ק×טלונית" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "צ'כית" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "וולשית" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "דנית" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "גרמנית" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "יוונית" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "×נגלית" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "×נגלית בריטית" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ספרדית" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "ספרדית ×רגנטינית" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "ספרדית מקסיקנית" - -#: conf/global_settings.py:60 -#, fuzzy -msgid "Nicaraguan Spanish" -msgstr "ספרדית מקסיקנית" - -#: conf/global_settings.py:61 -msgid "Estonian" -msgstr "×סטונית" - -#: conf/global_settings.py:62 -msgid "Basque" -msgstr "בסקית" - -#: conf/global_settings.py:63 -msgid "Persian" -msgstr "פרסית" - -#: conf/global_settings.py:64 -msgid "Finnish" -msgstr "פינית" - -#: conf/global_settings.py:65 -msgid "French" -msgstr "צרפתית" - -#: conf/global_settings.py:66 -msgid "Frisian" -msgstr "פריזית" - -#: conf/global_settings.py:67 -msgid "Irish" -msgstr "×ירית" - -#: conf/global_settings.py:68 -msgid "Galician" -msgstr "×’×ליצי×נית" - -#: conf/global_settings.py:69 -msgid "Hebrew" -msgstr "עברית" - -#: conf/global_settings.py:70 -msgid "Hindi" -msgstr "הינדי" - -#: conf/global_settings.py:71 -msgid "Croatian" -msgstr "קרו×טית" - -#: conf/global_settings.py:72 -msgid "Hungarian" -msgstr "הונגרית" - -#: conf/global_settings.py:73 -msgid "Indonesian" -msgstr "×ינדונזית" - -#: conf/global_settings.py:74 -msgid "Icelandic" -msgstr "×יסלנדית" - -#: conf/global_settings.py:75 -msgid "Italian" -msgstr "×יטלקית" - -#: conf/global_settings.py:76 -msgid "Japanese" -msgstr "יפנית" - -#: conf/global_settings.py:77 -msgid "Georgian" -msgstr "×’×™×ורגית" - -#: conf/global_settings.py:78 -msgid "Khmer" -msgstr "חמר" - -#: conf/global_settings.py:79 -msgid "Kannada" -msgstr "ק×× ×דה" - -#: conf/global_settings.py:80 -msgid "Korean" -msgstr "קורי×נית" - -#: conf/global_settings.py:81 -msgid "Lithuanian" -msgstr "ליט×ית" - -#: conf/global_settings.py:82 -msgid "Latvian" -msgstr "לטבית" - -#: conf/global_settings.py:83 -msgid "Macedonian" -msgstr "מקדונית" - -#: conf/global_settings.py:84 -msgid "Malayalam" -msgstr "מל××™×ל××" - -#: conf/global_settings.py:85 -msgid "Mongolian" -msgstr "מונגולי" - -#: conf/global_settings.py:86 -msgid "Dutch" -msgstr "הולנדית" - -#: conf/global_settings.py:87 -msgid "Norwegian" -msgstr "נורווגית" - -#: conf/global_settings.py:88 -msgid "Norwegian Bokmal" -msgstr "נורבגית ספרותית" - -#: conf/global_settings.py:89 -msgid "Norwegian Nynorsk" -msgstr "נורבגית חדשה" - -#: conf/global_settings.py:90 -msgid "Punjabi" -msgstr "פנג'×בי" - -#: conf/global_settings.py:91 -msgid "Polish" -msgstr "פולנית" - -#: conf/global_settings.py:92 -msgid "Portuguese" -msgstr "פורטוגזית" - -#: conf/global_settings.py:93 -msgid "Brazilian Portuguese" -msgstr "פורטוגזית ברזיל×ית" - -#: conf/global_settings.py:94 -msgid "Romanian" -msgstr "רומנית" - -#: conf/global_settings.py:95 -msgid "Russian" -msgstr "רוסית" - -#: conf/global_settings.py:96 -msgid "Slovak" -msgstr "סלובקית" - -#: conf/global_settings.py:97 -msgid "Slovenian" -msgstr "סלובנית" - -#: conf/global_settings.py:98 -msgid "Albanian" -msgstr "×לבנית" - -#: conf/global_settings.py:99 -msgid "Serbian" -msgstr "סרבית" - -#: conf/global_settings.py:100 -msgid "Serbian Latin" -msgstr "סרבית לטינית" - -#: conf/global_settings.py:101 -msgid "Swedish" -msgstr "שוודית" - -#: conf/global_settings.py:102 -msgid "Tamil" -msgstr "טמילית" - -#: conf/global_settings.py:103 -msgid "Telugu" -msgstr "טלגו" - -#: conf/global_settings.py:104 -msgid "Thai" -msgstr "ת×ילנדית" - -#: conf/global_settings.py:105 -msgid "Turkish" -msgstr "טורקית" - -#: conf/global_settings.py:106 -msgid "Ukrainian" -msgstr "×וקר×ינית" - -#: conf/global_settings.py:107 -msgid "Urdu" -msgstr "×ורדו" - -#: conf/global_settings.py:108 -msgid "Vietnamese" -msgstr "וייטנ×מית" - -#: conf/global_settings.py:109 -msgid "Simplified Chinese" -msgstr "סינית פשוטה" - -#: conf/global_settings.py:110 -msgid "Traditional Chinese" -msgstr "סינית מסורתית" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "יש להזין ערך חוקי." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "×”Ö¾URL ×”×–×” נר××” כקישור שבור." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "יש להזין URL חוקי." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "יש להזין כתובת דו×\"ל חוקית." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "יש להזין ערך המכיל ×ותיות, ספרות, ×§×•×•×™× ×ª×—×ª×•× ×™× ×•×ž×§×¤×™× ×‘×œ×‘×“." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "יש להזין כתובת IPv4 חוקית." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "יש להזין רק ספרות מופרדות בפסיקי×." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "יש ×œ×•×•×“× ×©×¢×¨×š ×–×” הינו %(limit_value)s (כרגע %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "יש ×œ×•×•×“× ×©×¢×¨×š ×–×” פחות מ ×ו שווה ל־%(limit_value)s ." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "יש ×œ×•×•×“× ×©×”×¢×¨×š גדול מ ×ו שווה ל־%(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"יש ×œ×•×•×“× ×©×¢×¨×š ×–×” מכיל לפחות %(limit_value)d ×ª×•×•×™× (מכיל %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"יש ×œ×•×•×“× ×©×¢×¨×š ×–×” מכיל %(limit_value)d ×ª×•×•×™× ×œ×›×œ היותר (מכיל %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s חייב להיות ייחודי ל%(lookup)s של ×”Ö¾%(date_field)s" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s·ע×·%(field_label)s·זה קיימת כבר." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ו" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "ערך %r ×ינו ×פשרות חוקית." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "שדה ×–×” ×ינו יכול להיות ריק." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "שדה ×–×” ×ינו יכול להיות ריק." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "שדה מסוג: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "מספר של×" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "ערך ×–×” חייב להיות מספר של×." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "ערך ×–×” חייב להיות ×מת ×ו שקר." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "בולי×× ×™ (×מת ×ו שקר)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "מחרוזת (עד %(max_length)s תווי×)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "×ž×¡×¤×¨×™× ×©×œ×ž×™× ×ž×•×¤×¨×“×™× ×‘×¤×¡×™×§×™×" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "ת×ריך (×œ×œ× ×©×¢×”)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "יש להזין ת×ריך במבנה YYYY-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "ת×ריך שגוי: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "× × ×œ×”×–×™×Ÿ ת×ריך\\שעה ×—×•×§×™×™× ×‘×ª×‘× ×™×ª YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "ת×ריך (כולל שעה)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "ערך ×–×” חייב להיות מספר עשרוני." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "מספר עשרוני" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "כתובת דו×\"ל" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "נתיב קובץ" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "על הערך ×”×–×” להיות ערך מספר עשרוני." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "מספר עשרוני" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "מספר ×©×œ× ×’×“×•×œ (8 בתי×)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "כתובת IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "ערך ×–×” חייב להיות כלו×, ×מת ×ו שקר." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "בולי×× ×™ (×מת, שקר ×ו כלו×)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "טקסט" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "זמן" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "× × ×œ×”×–×™×Ÿ זמן חוקי בתבנית HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "טקסט XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "מודל %(model)s ×¢× ×ž×¤×ª×— ר×שי %(pk)r ×ינו קיי×." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Foreign Key (הסוג נקבע לפי השדה המקושר)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "יחס של ×חד ל×חד" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "יחס של ×¨×‘×™× ×œ×¨×‘×™×" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"יש להחזיק ×ת \"Control\", ×ו \"Command\" על מק, לחוץ כדי לבחור יותר מ×חד." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "יש להזין תוכן בשדה ×–×”." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "× × ×œ×”×–×™×Ÿ מספר של×." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "× × ×œ×”×–×™×Ÿ מספר." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "× × ×œ×•×•×“× ×©×ין יותר מ־%s ספרות סה\"×›" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "× × ×œ×•×•×“× ×©×ין יותר מ־%s ספרות ×חרי הנקודה" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "× × ×œ×•×•×“× ×©×ין יותר מ־%s ספרות לפני הנקודה העשרונית" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "יש להזין ת×ריך חוקי." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "יש להזין שעה חוקית." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "יש להזין ת×ריך ושעה חוקיי×." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "×œ× × ×©×œ×— ×©×•× ×§×•×‘×¥. × × ×œ×‘×“×•×§ ×ת סוג הקידוד של הטופס." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "×œ× × ×©×œ×— ×©×•× ×§×•×‘×¥" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "הקובץ שנשלח ריק." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "על ×©× ×”×§×•×‘×¥ להיות ×œ× ×™×•×ª×¨ מ־%(max)d ×ª×•×•×™× (יש לו%(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "× × ×œ×©×™× ×§×•×‘×¥ ×ו סימן ×ת התיבה לניקוי, ×œ× ×©× ×™×”×." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "× × ×œ×”×¢×œ×•×ª תמונה חוקית. הקובץ שהעלת ×ינו תמונה ×ו מכיל תמונה מקולקלת." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "יש לבחור ×פשרות חוקית. %(value)s ×ינו בין ×”×פשרויות הזמינות." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "יש להזין רשימת ערכי×" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "מיון" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "מחיקה" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "× × ×œ×ª×§×Ÿ ×ת ×”×¢×¨×›×™× ×”×›×¤×•×œ×™× ×œ%(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "× × ×œ×ª×§×Ÿ ×ת ×”×¢×¨×›×™× ×”×›×¤×•×œ×™× ×œ%(field)s, ×©×¢×¨×›×™× ×‘×• ×—×™×™×‘×™× ×œ×”×™×•×ª ייחודיי×." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"× × ×œ×ª×§×Ÿ ×ת ×”×¢×¨×›×™× ×”×›×¤×•×œ×™× %(field_name)s, ×©×—×™×™×‘×™× ×œ×”×™×•×ª ×™×™×—×•×“×™×™× ×œ%(lookup)s " -"של %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "× × ×œ×ª×§×Ÿ ×ת ×”×¢×¨×›×™× ×”×›×¤×•×œ×™× ×œ×ž×˜×”." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "המפתח הזר ×”Ö¾inline ×œ× ×”×ª××™× ×œ×ž×¤×ª×— הר×שי של ×”×ב." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "יש לבחור ×פשרות חוקית; ×פשרות זו ××™× ×” ×חת מהזמינות." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "יש לבחור ×פשרות חוקית. %s ×ינו בין ×”×פשרויות הזמינות." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ×יננו חוקי כמפתח ר×שי." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "עכשיו" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "שינוי" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "לסלק" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "×œ× ×™×“×•×¢" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "כן" - -#: forms/widgets.py:548 -msgid "No" -msgstr "ל×" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "כן,ל×,×ולי" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "בית %(size)d " -msgstr[1] "%(size)d בתי×" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s ק\"ב" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s מ\"ב" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s ×’\"ב" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s ט\"ב" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s פ\"ב" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "×חר הצהריי×" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "בבוקר" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "×חר הצהריי×" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "בבוקר" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "חצות" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "12 בצהריי×" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "שני" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "שלישי" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "רביעי" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "חמישי" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "שישי" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "שבת" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "ר×שון" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "שני" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "שלישי" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "רביעי" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "חמישי" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "שישי" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "שבת" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ר×שון" - -#: utils/dates.py:18 -msgid "January" -msgstr "ינו×ר" - -#: utils/dates.py:18 -msgid "February" -msgstr "פברו×ר" - -#: utils/dates.py:18 -msgid "March" -msgstr "מרס" - -#: utils/dates.py:18 -msgid "April" -msgstr "×פריל" - -#: utils/dates.py:18 -msgid "May" -msgstr "מ××™" - -#: utils/dates.py:18 -msgid "June" -msgstr "יוני" - -#: utils/dates.py:19 -msgid "July" -msgstr "יולי" - -#: utils/dates.py:19 -msgid "August" -msgstr "×וגוסט" - -#: utils/dates.py:19 -msgid "September" -msgstr "ספטמבר" - -#: utils/dates.py:19 -msgid "October" -msgstr "×וקטובר" - -#: utils/dates.py:19 -msgid "November" -msgstr "נובמבר" - -#: utils/dates.py:20 -msgid "December" -msgstr "דצמבר" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ינו" - -#: utils/dates.py:23 -msgid "feb" -msgstr "פבר" - -#: utils/dates.py:23 -msgid "mar" -msgstr "מרס" - -#: utils/dates.py:23 -msgid "apr" -msgstr "×פר" - -#: utils/dates.py:23 -msgid "may" -msgstr "מ××™" - -#: utils/dates.py:23 -msgid "jun" -msgstr "יונ" - -#: utils/dates.py:24 -msgid "jul" -msgstr "יול" - -#: utils/dates.py:24 -msgid "aug" -msgstr "×וג" - -#: utils/dates.py:24 -msgid "sep" -msgstr "ספט" - -#: utils/dates.py:24 -msgid "oct" -msgstr "×וק" - -#: utils/dates.py:24 -msgid "nov" -msgstr "נוב" - -#: utils/dates.py:24 -msgid "dec" -msgstr "דצמ" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "×™×× '" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "פבר'" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "מרץ" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "×פריל" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "מ××™" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "יוני" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "יולי" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "×וג'" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "ספט'" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "×וק'" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "נוב'" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "דצמ'" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "ינו×ר" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "פברו×ר" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "מרץ" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "×פריל" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "מ××™" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "יוני" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "יולי" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "×וגוסט" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "ספטמבר" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "×וקטובר" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "נובמבר" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "דצמבר" - -#: utils/text.py:136 -msgid "or" -msgstr "×ו" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "שנה" -msgstr[1] "שני×" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "חודש" -msgstr[1] "חודשי×" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "שבוע" -msgstr[1] "שבועות" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "יו×" -msgstr[1] "ימי×" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "שעה" -msgstr[1] "שעות" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "דקה" -msgstr[1] "דקות" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "דקות" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:578 -msgid "DATE_FORMAT" -msgstr "d.m.Y" - -#: utils/translation/trans_real.py:579 -msgid "DATETIME_FORMAT" -msgstr "d.m.â€Y H:i:s" - -#: utils/translation/trans_real.py:580 -msgid "TIME_FORMAT" -msgstr "H:i:s" - -#: utils/translation/trans_real.py:601 -msgid "YEAR_MONTH_FORMAT" -msgstr "m.Y" - -#: utils/translation/trans_real.py:602 -msgid "MONTH_DAY_FORMAT" -msgstr "d.m" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "×”Ö¾%(verbose_name)s נוצר בהצלחה." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "×”Ö¾%(verbose_name)s עודכן בהצלחה." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "×”Ö¾%(verbose_name)s נמחק." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "×œ× ×¦×•×™×™× ×” שנה" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "×œ× ×¦×•×™×™×Ÿ חודש" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "×œ× ×¦×•×™×™×Ÿ יו×" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "×œ× ×¦×•×™×™×Ÿ שבוע" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "×œ× × ×ž×¦×ו %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"×œ× × ×ž×¦×ו %(verbose_name_plural)s בזמן עתיד מ×חר ש-%(class_name)s." -"allow_future מוגדר False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "מחרוזת ת×ריך ×œ× ×—×•×§×™×ª '%(datestr)s' בהתחשב בתחביר '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "×œ× × ×ž×¦×/×” %(verbose_name)s התו××/ת לש×ילתה" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "העמוד ×ינו 'last', ×ו ×ינו ניתן להמרה למספר." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "עמוד ×œ× ×—×•×§×™ (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "רשימה ריקה -ו'%(class_name)s.allow_empty' מוגדר False." diff --git a/lib/python2.7/site-packages/django/conf/locale/he/__init__.py b/lib/python2.7/site-packages/django/conf/locale/he/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/he/formats.py b/lib/python2.7/site-packages/django/conf/locale/he/formats.py deleted file mode 100644 index e83d7085a..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/he/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j בF Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = 'j בF Y H:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j בF' -SHORT_DATE_FORMAT = 'd/m/Y' -SHORT_DATETIME_FORMAT = 'd/m/Y H:i:s' -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/hi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/hi/LC_MESSAGES/django.mo deleted file mode 100644 index 7e4d15353..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/hi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po deleted file mode 100644 index da3a48388..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/hi/LC_MESSAGES/django.po +++ /dev/null @@ -1,1125 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:08-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Hindi \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "अरबी" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "बलगारियन" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "बंगाली" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "कटलान" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "चà¥à¤šà¥‡à¤•" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "वेलà¥à¤¶" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "दानिश" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "जरà¥à¤®à¤¨" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "गà¥à¤°à¥€à¤•" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "अंगà¥à¤°à¥‡à¤œà¤¼à¥€ " - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "सà¥à¤ªà¤¾à¤¨à¤¿à¤¶" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "à¤à¤¸à¥à¤Ÿà¥‹à¤¨à¤¿à¤¯à¤¨" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "बासà¥à¤•" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "पारसी" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "फ़िनà¥à¤¨à¤¿à¤¶" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "फà¥à¤°à¥‡à¤‚च" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "आयरिश" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "गलिशियन" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "हिâ€à¤¬à¥à¤°à¥‚" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "कà¥à¤°à¥‹à¤¯à¥‡à¤¶à¤¿à¤¯à¤¨" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "हंगेरियन" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "आयिसà¥à¤²à¤¾à¤¨à¥à¤¡à¤¿à¤•" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "इटैलियन" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "जपानी" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "जà¥à¤¯à¥‹à¤°à¥à¤œà¤¿à¤¯à¤¨" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "खà¥à¤®à¥‡à¤°" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "कनà¥â€à¤¨à¤¡à¤¼" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "कोरियन" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "लिथà¥à¤µà¥‡à¤¨à¤¿à¤¯à¤¨" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "लातà¥à¤µà¤¿à¤¯à¤¨" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "मेसिडोनियन" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "डच" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "नारà¥à¤µà¥‡à¤œà¤¿à¤¯à¤¨" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "पोलिश" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "बà¥à¤°à¤œà¤¿à¤²à¤¿à¤¯à¤¨ पà¥à¤°à¥à¤¤à¤—ाली" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "रोमानियन" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "रूसी" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "सà¥à¤²à¥‹à¤µà¤¾à¤•" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "सà¥à¤²à¥‹à¤µà¥‡à¤¨à¤¿à¤¯à¤¨" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "सरà¥à¤¬à¤¿à¤¯à¤¨" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "सà¥à¤µà¥€à¤¡à¤¿à¤¶" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "तमिल" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "तेलà¥à¤—à¥" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "तà¥à¤°à¥à¤•à¤¿à¤¶" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "यूकà¥à¤°à¤¾à¤¨à¤¿à¤¯à¤¨" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "सरल चीनी" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "पारमà¥à¤ªà¤°à¤¿à¤• चीनी" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "à¤à¤• मानà¥à¤¯ मूलà¥à¤¯ दरà¥à¤œ करें" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "वैध यू.आर.à¤à¤² भरें ।" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "मानà¥à¤¯ ईमेल पता भरें" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "वैध आइ.पि वी 4 पता भरें ।" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "अलà¥à¤ªà¤µà¤¿à¤°à¤¾à¤® अंक मातà¥à¤° ही भरें ।" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "इस %(field_label)s के साथ à¤à¤• %(model_name)s पहले से ही उपसà¥à¤¥à¤¿à¤¤ है ।" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "और" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "यह मूलà¥à¤¯ खाली नहीं हो सकता ।" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "पूरà¥à¤£à¤¾à¤‚क" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "यह मूलà¥à¤¯ पूरà¥à¤£à¤¾à¤‚क होना चाहिठ।" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "यह मूलà¥à¤¯ सही अथवा गलत होना चाहिठ।" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "बूलियन (सही अथ‌वा गलत)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "सà¥à¤Ÿà¥à¤°à¤¿à¤‚ग (अधिकतम लमà¥à¤¬à¤¾à¤ˆ %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "अलà¥à¤ªà¤µà¤¿à¤°à¤¾à¤® सीमांकित संखà¥à¤¯à¤¾" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "तिथि (बिना समय)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "वैध तिथि को सससस-मम-दिदि सरूप में भरें" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "अमानà¥à¤¯ तिथि : %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "वैध तिथि/समय को सससस-मम-दिदि[:सेसे[.सूसूसूसूसूसू]] सà¥à¤°à¥‚प में भरें" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "तिथि (समय के साथ)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "यस मूलà¥à¤¯ दशांश संखà¥à¤¯à¤¾ मातà¥à¤° ही हो सकता है ।" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "दशमलव संखà¥à¤¯à¤¾" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ईमेल पता" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "संचिका पथ" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "चल बिनà¥à¤¦à¥ संखà¥à¤¯à¤¾" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "आइ.पि पता" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "यह मूलà¥à¤¯ कोई नहीं, सही अथवा गलत ही हो सकता है ।" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "बूलियन (सही, गलत या कà¥à¤› नहीं)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "पाठ" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "समय" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "यू.आर.à¤à¤²" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "à¤à¤•à¥à¤¸.à¤à¤®.à¤à¤² पाठ" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "यह कà¥à¤·à¥‡à¤¤à¥à¤° अपेकà¥à¤·à¤¿à¤¤ हैं" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "à¤à¤• पूरà¥à¤£ संखà¥à¤¯à¤¾ दरà¥à¤œ करें ।" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "à¤à¤• संखà¥à¤¯à¤¾ दरà¥à¤œ करें ।" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "वैध तिथि भरें ।" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "वैध समय भरें ।" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "वैध तिथि/समय भरें ।" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "कोई संचिका निवेदित नहीं हà¥à¤ˆ । कृपया कूटलेखन की जाà¤à¤š करें ।" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "कोई संचिका निवेदित नहीं हà¥à¤ˆ ।" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "निवेदित संचिका खाली है ।" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "वैध चितà¥à¤° निवेदन करें । आप के दà¥à¤µà¤¾à¤°à¤¾ निवेदित संचिका अमानà¥à¤¯ अथवा दूषित है ।" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "मानà¥à¤¯ इचà¥à¤›à¤¾ चयन करें । %(value)s लभà¥à¤¯ इचà¥à¤›à¤¾à¤“ं में उपà¥à¤²à¤¬à¥à¤§ नहीं हैं ।" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "मूलà¥à¤¯ सूची दरà¥à¤œ करें ।" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "छाटें" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "मिटाà¤à¤" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "मानà¥à¤¯ विकलà¥à¤ª चयन करें । यह विकलà¥à¤ª उपसà¥à¤¥à¤¿à¤¤ विकलà¥à¤ªà¥‹à¤‚ में नहीं है ।" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "मानà¥à¤¯ विकलà¥à¤ª चयन करें । %s उपसà¥à¤¥à¤¿à¤¤ विकलà¥à¤ªà¥‹à¤‚ में नहीं है ।" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "बदलें" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "अनजान" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "हाà¤" - -#: forms/widgets.py:548 -msgid "No" -msgstr "नहीं" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "हाà¤, नहीं, शायद" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d बाइट" -msgstr[1] "%(size)d बाइट" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "बजे" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "बजे" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "बजे" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "बजे" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "मधà¥à¤¯à¤°à¤¾à¤¤à¥à¤°à¥€" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "दोपहर" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "सोम‌वार" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "मंगलवार" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "बà¥à¤§à¤µà¤¾à¤°" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "गà¥à¤°à¥‚वार" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "शà¥à¤•à¥à¤°à¤µà¤¾à¤°" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "शनिवार" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "रविवार" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "सोम" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "मंगल" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "बà¥à¤§" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "गà¥à¤°à¥‚" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "शà¥à¤•à¥à¤°" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "शनि" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "रवि" - -#: utils/dates.py:18 -msgid "January" -msgstr "जनवरी" - -#: utils/dates.py:18 -msgid "February" -msgstr "फ़रवरी" - -#: utils/dates.py:18 -msgid "March" -msgstr "मारà¥à¤š" - -#: utils/dates.py:18 -msgid "April" -msgstr "अपà¥à¤°à¥ˆà¤²" - -#: utils/dates.py:18 -msgid "May" -msgstr "मई" - -#: utils/dates.py:18 -msgid "June" -msgstr "जून" - -#: utils/dates.py:19 -msgid "July" -msgstr "जà¥à¤²à¤¾à¤ˆ" - -#: utils/dates.py:19 -msgid "August" -msgstr "अगसà¥à¤¤" - -#: utils/dates.py:19 -msgid "September" -msgstr "सितमबर" - -#: utils/dates.py:19 -msgid "October" -msgstr "अकà¥à¤Ÿà¥‚बर" - -#: utils/dates.py:19 -msgid "November" -msgstr "नवमबर" - -#: utils/dates.py:20 -msgid "December" -msgstr "दिसमबर" - -#: utils/dates.py:23 -msgid "jan" -msgstr "जन" - -#: utils/dates.py:23 -msgid "feb" -msgstr "फ़र" - -#: utils/dates.py:23 -msgid "mar" -msgstr "मा" - -#: utils/dates.py:23 -msgid "apr" -msgstr "अपà¥à¤°" - -#: utils/dates.py:23 -msgid "may" -msgstr "मई" - -#: utils/dates.py:23 -msgid "jun" -msgstr "जून" - -#: utils/dates.py:24 -msgid "jul" -msgstr "जà¥à¤²" - -#: utils/dates.py:24 -msgid "aug" -msgstr "अग" - -#: utils/dates.py:24 -msgid "sep" -msgstr "सित" - -#: utils/dates.py:24 -msgid "oct" -msgstr "अकà¥à¤Ÿ" - -#: utils/dates.py:24 -msgid "nov" -msgstr "नव" - -#: utils/dates.py:24 -msgid "dec" -msgstr "दिसà¥" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "" - -#: utils/text.py:136 -msgid "or" -msgstr "अथवा" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "साल" -msgstr[1] "साल" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "महीना" -msgstr[1] "महीना" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "सपà¥à¤¤à¤¾à¤¹" -msgstr[1] "सपà¥à¤¤à¤¾à¤¹" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "दिन" -msgstr[1] "दिन" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "घंटा" -msgstr[1] "घंटा" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "मिनट" -msgstr[1] "मिनट" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "मिनट" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "तिथि_पà¥à¤°à¤¾à¤°à¥‚प" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "तिथिसमय_पà¥à¤°à¤¾à¤°à¥‚प" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "समय_पà¥à¤°à¤¾à¤°à¥‚प" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "वरà¥à¤·_महीना_पà¥à¤°à¤¾à¤°à¥‚प" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "महीना_दिन_पà¥à¤°à¤¾à¤°à¥‚प" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s को कामयाबी से निरà¥à¤®à¤¾à¤£ किया गया हैं ।" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s को कामयाबी से अदà¥à¤¯à¤¤à¤¨ किया गया हैं ।" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s को मिटाया गया हैं ।" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/hi/__init__.py b/lib/python2.7/site-packages/django/conf/locale/hi/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/hi/formats.py b/lib/python2.7/site-packages/django/conf/locale/hi/formats.py deleted file mode 100644 index 95db623bd..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/hi/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' -TIME_FORMAT = 'g:i:s A' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'd-m-Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo deleted file mode 100644 index f0f8918ba..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/hr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po deleted file mode 100644 index 2aa848a8d..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/hr/LC_MESSAGES/django.po +++ /dev/null @@ -1,1162 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 20:59+0100\n" -"PO-Revision-Date: 2011-03-13 21:27+0000\n" -"Last-Translator: aljosa \n" -"Language-Team: Croatian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\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" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arapski" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azarbejdžanac" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bugarski" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalski" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "BoÅ¡njaÄki" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalanski" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ÄŒeÅ¡ki" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "VelÅ¡ki" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Danski" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "NjemaÄki" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "GrÄki" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Engleski" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Britanski engleski" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Å panjolski" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentinski Å¡panjolski" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "MeksiÄki Å¡panjolski" - -#: conf/global_settings.py:60 -#, fuzzy -msgid "Nicaraguan Spanish" -msgstr "MeksiÄki Å¡panjolski" - -#: conf/global_settings.py:61 -msgid "Estonian" -msgstr "Estonski" - -#: conf/global_settings.py:62 -msgid "Basque" -msgstr "Baskijski" - -#: conf/global_settings.py:63 -msgid "Persian" -msgstr "Perzijski" - -#: conf/global_settings.py:64 -msgid "Finnish" -msgstr "Finski" - -#: conf/global_settings.py:65 -msgid "French" -msgstr "Francuski" - -#: conf/global_settings.py:66 -msgid "Frisian" -msgstr "Frizijski" - -#: conf/global_settings.py:67 -msgid "Irish" -msgstr "Irski" - -#: conf/global_settings.py:68 -msgid "Galician" -msgstr "GaliÄanski" - -#: conf/global_settings.py:69 -msgid "Hebrew" -msgstr "Hebrejski" - -#: conf/global_settings.py:70 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:71 -msgid "Croatian" -msgstr "Hrvatski" - -#: conf/global_settings.py:72 -msgid "Hungarian" -msgstr "MaÄ‘arski" - -#: conf/global_settings.py:73 -msgid "Indonesian" -msgstr "Indonezijski" - -#: conf/global_settings.py:74 -msgid "Icelandic" -msgstr "Islandski" - -#: conf/global_settings.py:75 -msgid "Italian" -msgstr "Talijanski" - -#: conf/global_settings.py:76 -msgid "Japanese" -msgstr "Japanski" - -#: conf/global_settings.py:77 -msgid "Georgian" -msgstr "Gruzijski" - -#: conf/global_settings.py:78 -msgid "Khmer" -msgstr "KamboÄ‘anski" - -#: conf/global_settings.py:79 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:80 -msgid "Korean" -msgstr "Koreanski" - -#: conf/global_settings.py:81 -msgid "Lithuanian" -msgstr "Litvanski" - -#: conf/global_settings.py:82 -msgid "Latvian" -msgstr "Latvijski" - -#: conf/global_settings.py:83 -msgid "Macedonian" -msgstr "Makedonski" - -#: conf/global_settings.py:84 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:85 -msgid "Mongolian" -msgstr "Mongolski" - -#: conf/global_settings.py:86 -msgid "Dutch" -msgstr "Nizozemski" - -#: conf/global_settings.py:87 -msgid "Norwegian" -msgstr "NorveÅ¡ki" - -#: conf/global_settings.py:88 -msgid "Norwegian Bokmal" -msgstr "NorveÅ¡ki Bokmal" - -#: conf/global_settings.py:89 -msgid "Norwegian Nynorsk" -msgstr "NorveÅ¡ki Nynorsk" - -#: conf/global_settings.py:90 -msgid "Punjabi" -msgstr "Pendžabljanin" - -#: conf/global_settings.py:91 -msgid "Polish" -msgstr "Poljski" - -#: conf/global_settings.py:92 -msgid "Portuguese" -msgstr "Portugalski" - -#: conf/global_settings.py:93 -msgid "Brazilian Portuguese" -msgstr "Brazilski portugalski" - -#: conf/global_settings.py:94 -msgid "Romanian" -msgstr "Rumunjski" - -#: conf/global_settings.py:95 -msgid "Russian" -msgstr "Ruski" - -#: conf/global_settings.py:96 -msgid "Slovak" -msgstr "SlovaÄki" - -#: conf/global_settings.py:97 -msgid "Slovenian" -msgstr "Slovenski" - -#: conf/global_settings.py:98 -msgid "Albanian" -msgstr "Albanski" - -#: conf/global_settings.py:99 -msgid "Serbian" -msgstr "Srpski" - -#: conf/global_settings.py:100 -msgid "Serbian Latin" -msgstr "Latinski srpski" - -#: conf/global_settings.py:101 -msgid "Swedish" -msgstr "Å vedski" - -#: conf/global_settings.py:102 -msgid "Tamil" -msgstr "Tamilski" - -#: conf/global_settings.py:103 -msgid "Telugu" -msgstr "TeluÅ¡ki" - -#: conf/global_settings.py:104 -msgid "Thai" -msgstr "Thai (tajlandski)" - -#: conf/global_settings.py:105 -msgid "Turkish" -msgstr "Turski" - -#: conf/global_settings.py:106 -msgid "Ukrainian" -msgstr "Ukrajinski" - -#: conf/global_settings.py:107 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:108 -msgid "Vietnamese" -msgstr "Vijetnamski" - -#: conf/global_settings.py:109 -msgid "Simplified Chinese" -msgstr "Pojednostavljeni kineski" - -#: conf/global_settings.py:110 -msgid "Traditional Chinese" -msgstr "Tradicionalni kineski" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Unesite ispravnu vrijednost." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Izgleda da je URL neispravan." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Unesite ispravan URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Unesite ispravnu e-mail adresu." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Unesite ispravan 'slug' koji se sastoji samo od slova, brojeva, povlaka ili " -"crtica." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Unesite ispravnu IPv4 adresu." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Unesite samo brojeve razdvojene zarezom." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Osigurajte da ova vrijednost ima %(limit_value)s (trenutno je %(show_value)" -"s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Osigurajte da je ova vrijednost manja ili jednaka %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Osigurajte da je ova vrijednost veća ili jednaka %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Osigurajte da ova vrijednost ima najmanje %(limit_value)d znakova (ima %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Osigurajte da ova vrijednost ima najviÅ¡e %(limit_value)d znakova (ima %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(field_name)s mora biti jedinstven pojam za %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s sa navedenim %(field_label)s već postoji." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "i" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Vrijednost %r nije ispravan izbor." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Ovo polje ne može biti null." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Ovo polje ne može biti prazno." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Polje tipa: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Cijeli broj" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Vrijednost mora biti cijeli broj." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Vrijednost mora biti True ili False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (True ili False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Slova (do %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Cijeli brojevi odvojeni zarezom" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Datum (bez vremena/sati)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Unesite ispravan datum u formatu YYYY-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Neispravan datum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Unesite ispravan datum/vrijeme u formatu YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Datum (sa vremenom/satima)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Vrijednost mora biti decimalan broj." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Decimalni broj" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mail adresa" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Put do datoteke" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Vrijednost mora biti float." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Broj s pomiÄnim zarezom (floating point number)" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Big (8 byte) integer" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP adresa" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Vrijednost mora biti None, True ili False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (True, False ili None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Vrijeme" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Unesite ispravno vrijeme formata HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML tekst" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Model %(model)s sa pk %(pk)r ne postoji." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Foreign Key (type determined by related field)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "One-to-one relationship" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Many-to-many relationship" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Držite \"Control\", ili \"Command\" na Mac-u, da bi odabrali viÅ¡e od jednog " -"objekta." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Unos za ovo polje je obavezan." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Unesite cijeli broj." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Unesite broj." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Osigurajte da ukupno nema viÅ¡e od %s numeriÄkih znakova." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Osigurajte da ukupno nema viÅ¡e od %s decimalnih mjesta." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" -"Osigurajte da ukupno nema viÅ¡e od %s numeriÄkih znakova prije decimalne " -"toÄke." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Unesite ispravan datum." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Unesite ispravno vrijeme." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Unesite ispravan datum/vrijeme." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Datoteka nije poslana. Provjerite 'encoding type' forme." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Datoteka nije poslana." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Poslana datoteka je prazna." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Osigurajte da ova datoteka ima najviÅ¡e %(max)d znakova (trenutno ima %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Molimo Vas da poÅ¡aljete ili datoteku ili oznaÄite izbor, a ne oboje." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Upload-ajte ispravnu sliku. Datoteka koju ste upload-ali ili nije slika ili " -"je oÅ¡teÄena." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Odaberite iz ponuÄ‘enog. %(value)s nije ponuÄ‘en kao opcija." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Unesite listu vrijednosti." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Redoslijed:" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "IzbriÅ¡i" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Ispravite duplicirane podatke za %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Molimo ispravite duplicirane podatke za %(field)s, koji moraju biti " -"jedinstveni." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Molimo ispravite duplicirane podatke za %(field_name)s koji moraju biti " -"jedinstveni za %(lookup)s u %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Molimo ispravite duplicirane vrijednosti ispod." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "The inline foreign key did not match the parent instance primary key." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Izaberite ispravnu opciju. Ta opcija nije jedna od dostupnih opcija." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Odaberite iz ponuÄ‘enog. %s nije ponuÄ‘en kao opcija." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" nije ispravna vrijednost za primarni kluÄ." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Trenutno" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Promijeni" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Isprazni" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Nepoznat pojam" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Da" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ne" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "da,ne,možda" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d byte-a" -msgstr[2] "%(size)d byte-a" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "popodne" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "ujutro" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "popodne" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "ujutro" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "ponoć" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "podne" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Ponedjeljak" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Utorak" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Srijeda" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "ÄŒetvrtak" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Petak" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Subota" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Nedjelja" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Pon" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Uto" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Sri" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "ÄŒet" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Pet" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sub" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Ned" - -#: utils/dates.py:18 -msgid "January" -msgstr "SijeÄanj" - -#: utils/dates.py:18 -msgid "February" -msgstr "VeljaÄa" - -#: utils/dates.py:18 -msgid "March" -msgstr "Ožujak" - -#: utils/dates.py:18 -msgid "April" -msgstr "Travanj" - -#: utils/dates.py:18 -msgid "May" -msgstr "Svibanj" - -#: utils/dates.py:18 -msgid "June" -msgstr "Lipanj" - -#: utils/dates.py:19 -msgid "July" -msgstr "Srpanj" - -#: utils/dates.py:19 -msgid "August" -msgstr "Kolovoz" - -#: utils/dates.py:19 -msgid "September" -msgstr "Rujan" - -#: utils/dates.py:19 -msgid "October" -msgstr "Listopad" - -#: utils/dates.py:19 -msgid "November" -msgstr "Studeni" - -#: utils/dates.py:20 -msgid "December" -msgstr "Prosinac" - -#: utils/dates.py:23 -msgid "jan" -msgstr "sij." - -#: utils/dates.py:23 -msgid "feb" -msgstr "velj." - -#: utils/dates.py:23 -msgid "mar" -msgstr "ožu." - -#: utils/dates.py:23 -msgid "apr" -msgstr "tra." - -#: utils/dates.py:23 -msgid "may" -msgstr "svi." - -#: utils/dates.py:23 -msgid "jun" -msgstr "lip." - -#: utils/dates.py:24 -msgid "jul" -msgstr "srp." - -#: utils/dates.py:24 -msgid "aug" -msgstr "kol." - -#: utils/dates.py:24 -msgid "sep" -msgstr "ruj." - -#: utils/dates.py:24 -msgid "oct" -msgstr "lis." - -#: utils/dates.py:24 -msgid "nov" -msgstr "stu." - -#: utils/dates.py:24 -msgid "dec" -msgstr "pro." - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Sij." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Velj." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Ožu." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Tra." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Svi." - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Lip." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Srp." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Kol." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Ruj." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Lis." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Stu." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Pro." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "sijeÄnja" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "veljaÄe" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "ožujka" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "travnja" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "svibnja" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "lipnja" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "srpnja" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "kolovoza" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "rujna" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "listopada" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "studenoga" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "prosinca" - -#: utils/text.py:136 -msgid "or" -msgstr "ili" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "godina" -msgstr[1] "godine" -msgstr[2] "godine" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mjesec" -msgstr[1] "mjeseci" -msgstr[2] "mjeseci" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "tjedan" -msgstr[1] "tjedna" -msgstr[2] "tjedna" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dan" -msgstr[1] "dani" -msgstr[2] "dana" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "sat" -msgstr[1] "sati" -msgstr[2] "sata" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuta" -msgstr[1] "minute" -msgstr[2] "minute" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuta" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:578 -msgid "DATE_FORMAT" -msgstr "j. N Y." - -#: utils/translation/trans_real.py:579 -msgid "DATETIME_FORMAT" -msgstr "j. N Y. G:i T" - -#: utils/translation/trans_real.py:580 -msgid "TIME_FORMAT" -msgstr "G:i" - -#: utils/translation/trans_real.py:601 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y." - -#: utils/translation/trans_real.py:602 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s je uspjeÅ¡no kreirano." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s je uspjeÅ¡no promijenjeno." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s je izbrisano." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Nije navedena godina" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Nije naveden mjesec" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Nije naveden dan" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Tjedan nije odreÄ‘en" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Nije dostupno: %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"%(verbose_name_plural)s nije dostupno jer je %(class_name)s.allow_future " -"False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Neispravan datum '%(datestr)s' za format '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "%(verbose_name)s - pretragom nisu pronaÄ‘eni rezultati za upit" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Stranica nije 'zadnja', niti se može pretvoriti u cijeli broj." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Neispravna stranica (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Prazna lista i '%(class_name)s.allow_empty' je False." diff --git a/lib/python2.7/site-packages/django/conf/locale/hr/__init__.py b/lib/python2.7/site-packages/django/conf/locale/hr/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/hr/formats.py b/lib/python2.7/site-packages/django/conf/locale/hr/formats.py deleted file mode 100644 index ceaad57ee..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/hr/formats.py +++ /dev/null @@ -1,47 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. E Y.' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = 'j. E Y. H:i' -YEAR_MONTH_FORMAT = 'F Y.' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'j.m.Y.' -SHORT_DATETIME_FORMAT = 'j.m.Y. H:i' -FIRST_DAY_OF_WEEK = 1 - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', # '2006-10-25' - '%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.' - '%d. %m. %Y.', '%d. %m. %y.', # '25. 10. 2006.', '25. 10. 06.' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%d.%m.%Y. %H:%M:%S', # '25.10.2006. 14:30:59' - '%d.%m.%Y. %H:%M', # '25.10.2006. 14:30' - '%d.%m.%Y.', # '25.10.2006.' - '%d.%m.%y. %H:%M:%S', # '25.10.06. 14:30:59' - '%d.%m.%y. %H:%M', # '25.10.06. 14:30' - '%d.%m.%y.', # '25.10.06.' - '%d. %m. %Y. %H:%M:%S', # '25. 10. 2006. 14:30:59' - '%d. %m. %Y. %H:%M', # '25. 10. 2006. 14:30' - '%d. %m. %Y.', # '25. 10. 2006.' - '%d. %m. %y. %H:%M:%S', # '25. 10. 06. 14:30:59' - '%d. %m. %y. %H:%M', # '25. 10. 06. 14:30' - '%d. %m. %y.', # '25. 10. 06.' -) - -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo deleted file mode 100644 index 5702bc590..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/hu/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/hu/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/hu/LC_MESSAGES/django.po deleted file mode 100644 index 70830d7e0..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/hu/LC_MESSAGES/django.po +++ /dev/null @@ -1,1160 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:08-0400\n" -"PO-Revision-Date: 2011-03-05 16:58+0000\n" -"Last-Translator: szilveszter \n" -"Language-Team: Hungarian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arab" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "azerbajdzsáni" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bolgár" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengáli" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnyák" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalán" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Cseh" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Walesi" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Dán" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Német" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Görög" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Angol" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Brit angol" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spanyol" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentin spanyol" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "mexikói spanyol" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Észt" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baszk " - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Perzsa" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finn" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Francia" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Fríz" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Ãr" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Gall" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Héber" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Horvát" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Magyar" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonéz" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Izlandi" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Olasz" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japán" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Grúz" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreai" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Litván" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Lett" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Macedón" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malajálam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongol" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Holland" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norvég" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "BokmÃ¥l norvég" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Nynorsk norvég" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Lengyel" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugál" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brazíliai portugál" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Román" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Orosz" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Szlovák" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Szlovén" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albán" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Szerb" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Latin betűs szerb" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Svéd" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thai" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Török" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrán" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnámi" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Egyszerű kínai" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Hagyományos kínai" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Adjon meg egy érvényes értéket." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Ez a hivatkozás törött linknek tűnik." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Adjon meg egy érvényes URL-t." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Ãrjon be egy érvényes e-mail címet." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Az URL barát cím csak betűket, számokat, aláhúzásokat és kötÅ‘jeleket " -"tartalmazhat." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Ãrjon be egy érvényes IPv4 címet." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Csak számokat adjon meg, vesszÅ‘vel elválasztva." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Bizonyosodjon meg arról, hogy az érték %(limit_value)s (jelenleg: %" -"(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Bizonyosodjon meg arról, hogy az érték %(limit_value)s, vagy kisebb." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Bizonyosodjon meg arról, hogy az érték %(limit_value)s, vagy nagyobb." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Bizonyosodjon meg arról, hogy ez az érték legalább %(limit_value)d karaktert " -"tartalmaz (jelenlegi hossza: %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Bizonyosodjon meg arról, hogy ez az érték legfeljebb %(limit_value)d " -"karaktert tartalmaz (jelenlegi hossza: %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(field_name)s egyedi kell hogy legyen %(lookup)s alapján a dátum mezÅ‘n: %" -"(date_field)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "Már létezik %(model_name)s ilyennel: %(field_label)s." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "és" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "%r érték érvénytelen." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Ez a mezÅ‘ nem lehet nulla." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Ez a mezÅ‘ nem lehet üres." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "MezÅ‘típus: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Egész" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Az értéknek egész számnak kell lennie." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Az értéknek igaznak (True) vagy hamisnak (False) kell lennie." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Logikai (True vagy False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Karakterlánc (%(max_length)s hosszig)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "VesszÅ‘vel elválasztott egészek" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Dátum (idÅ‘ nélkül)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Ãrjon be egy érvényes dátumot 'ÉÉÉÉ-HH-NN' alakban." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Érvénytelen dátum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Ãrjon be egy érvényes dátumot/idÅ‘t 'ÉÉÉÉ-HH-NN ÓÓ-PP[:MP[.MILLIS]] alakban." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Dátum (idÅ‘vel)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Az értéknek decimálisnak kell lennie." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Tizes számrendszerű (decimális) szám" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mail cím" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Elérési út" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Ennek az értéknek lebegÅ‘pontos számnak kell lennie." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "LebegÅ‘pontos szám" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Nagy egész szám (8 bájtos)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP cím" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "" -"Az értéknek semminek (None), igaznak (True), vagy hamisnak (False) kell " -"lennie." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Logikai (True, False vagy None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Szöveg" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "IdÅ‘" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Ãrjon be egy érvényes idÅ‘t 'ÓÓ:PP[:MP[:MILLIS]]' alakban." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML szöveg" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "%(model)s modell %(pk)r elsÅ‘dleges kulccsal nem létezik." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Idegen kulcs (típusa a kapcsolódó mezÅ‘tÅ‘l függ)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Egy-egy kapcsolat" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Több-több kapcsolat" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Tartsa lenyomva a \"Control\"-t (vagy Mac-en a \"Command\"-ot) több elem " -"kiválasztásához." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Ennek a mezÅ‘nek a megadása kötelezÅ‘." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Adjon meg egy egész számot." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Adj meg egy számot." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Bizonyosodjon meg arról, hogy nincs ennél több számjegy: %s." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Bizonyosodjon meg arról, hogy nincs ennél több tizedesjegy: %s." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" -"Bizonyosodjon meg arról, hogy nincs ennél több számjegy a tizedesvesszÅ‘ " -"elÅ‘tt: %s." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Adjon meg egy érvényes dátumot." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Adjon meg egy érvényes idÅ‘t." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Adjon meg egy érvényes dátumot/idÅ‘t." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Nem küldött el fájlt. EllenÅ‘rizze a kódolás típusát az űrlapon." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Semmilyen fájl sem került feltöltésre." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "A küldött fájl üres." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Bizonyosodjon meg arról, hogy a fájlnév legfeljebb %(max)d karakterbÅ‘l áll " -"(jelenlegi hossza: %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Küldjön egy új fájlt, vagy jelölje be a törlés négyzetet, de ne mindkettÅ‘t " -"egyszerre." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Töltsön fel egy érvényes képfájlt. A feltöltött fájl nem kép volt, vagy " -"megsérült." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Válasszon érvényes elemet. '%(value)s' nincs az elérhetÅ‘ lehetÅ‘ségek között." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Adja meg értékek egy listáját." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Sorrend" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Törlés" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Javítsa a mezÅ‘höz tartozó duplikált adatokat: %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Javítsa a mezÅ‘höz tartozó duplikált adatokat: %(field)s (egyedinek kell " -"lenniük)." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Javítsa a mezÅ‘höz tartozó duplikált adatokat: %(field_name)s (egyedinek kell " -"lenniük %(lookup)s alapján a dátum mezÅ‘n: %(date_field)s)." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Javítsa az alábbi duplikált értékeket." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"A beágyazott idegen kulcs nem egyezik meg a szülÅ‘ példány elsÅ‘dleges " -"kulcsával." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Válasszon érvényes elemet. Az Ön választása nincs az elérhetÅ‘ lehetÅ‘ségek " -"között." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Válasszon érvényes elemet. %s nincs az elérhetÅ‘ lehetÅ‘ségek között." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" egy érvénytelen elsÅ‘dleges kulcs érték." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Jelenleg" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Módosítás" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Törlés" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Ismeretlen" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Igen" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nem" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "igen,nem,talán" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bájt" -msgstr[1] "%(size)d bájt" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "du" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "de" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "DU" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "DE" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "éjfél" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "dél" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "hétfÅ‘" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "kedd" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "szerda" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "csütörtök" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "péntek" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "szombat" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "vasárnap" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "hét" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "kedd" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "sze" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "csüt" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "pén" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "szo" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "vas" - -#: utils/dates.py:18 -msgid "January" -msgstr "január" - -#: utils/dates.py:18 -msgid "February" -msgstr "február" - -#: utils/dates.py:18 -msgid "March" -msgstr "március" - -#: utils/dates.py:18 -msgid "April" -msgstr "április" - -#: utils/dates.py:18 -msgid "May" -msgstr "május" - -#: utils/dates.py:18 -msgid "June" -msgstr "június" - -#: utils/dates.py:19 -msgid "July" -msgstr "július" - -#: utils/dates.py:19 -msgid "August" -msgstr "augusztus" - -#: utils/dates.py:19 -msgid "September" -msgstr "szeptember" - -#: utils/dates.py:19 -msgid "October" -msgstr "október" - -#: utils/dates.py:19 -msgid "November" -msgstr "november" - -#: utils/dates.py:20 -msgid "December" -msgstr "december" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "febr" - -#: utils/dates.py:23 -msgid "mar" -msgstr "márc" - -#: utils/dates.py:23 -msgid "apr" -msgstr "ápr" - -#: utils/dates.py:23 -msgid "may" -msgstr "máj" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jún" - -#: utils/dates.py:24 -msgid "jul" -msgstr "júl" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "szept" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "febr." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "márc." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "ápr." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "máj." - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "jún." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "júl." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "aug." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "szept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "dec." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "január" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "február" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "március" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "április" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "május" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "június" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "július" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "augusztus" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "szeptember" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "október" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "november" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "december" - -#: utils/text.py:136 -msgid "or" -msgstr "vagy" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "év" -msgstr[1] "év" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "hónap" -msgstr[1] "hónap" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "hét" -msgstr[1] "hét" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "nap" -msgstr[1] "nap" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "óra" -msgstr[1] "óra" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "perc" -msgstr[1] "perc" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "perc" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "Y. F j." - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "Y. F j., H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "Y. F j." - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "Y. F j." - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s sikeresen létrehozva." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s sikeresen frissítve." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s törölve." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Nincs év megadva" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Nincs hónap megadva" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Nincs nap megadva" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Nincs hét megadva" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Nincsenek elérhetÅ‘ %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"JövÅ‘beli %(verbose_name_plural)s nem elérhetÅ‘k, mert %(class_name)s." -"allow_future értéke False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" -"'%(datestr)s' érvénytelen a meghatározott formátum alapján: '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Nincs a keresési feltételeknek megfelelÅ‘ %(verbose_name)s" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Az oldal nem 'last', vagy nem lehet egésszé alakítani." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Érvénytelen oldal (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Ãœres lista, és '%(class_name)s.allow_empty' értéke False." diff --git a/lib/python2.7/site-packages/django/conf/locale/hu/__init__.py b/lib/python2.7/site-packages/django/conf/locale/hu/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/hu/formats.py b/lib/python2.7/site-packages/django/conf/locale/hu/formats.py deleted file mode 100644 index db9fb8551..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/hu/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'Y. F j.' -TIME_FORMAT = 'G:i:s' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -MONTH_DAY_FORMAT = 'F j.' -SHORT_DATE_FORMAT = 'Y.m.d.' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = u' ' # Non-breaking space -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo deleted file mode 100644 index f6a175003..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/id/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/id/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/id/LC_MESSAGES/django.po deleted file mode 100644 index 96e93c7a4..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/id/LC_MESSAGES/django.po +++ /dev/null @@ -1,1146 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: rodin \n" -"Language-Team: Indonesian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arab" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azerbaijani" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgaria" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengali" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnia" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalan" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Ceska" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Wales" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Denmark" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Jerman" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Yunani" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Inggris" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Inggris Britania" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spanyol" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Spanyol Argentina" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Spanyol Meksiko" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estonia" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Basque" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persia" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finlandia" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Perancis" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisia" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irlandia" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galicia" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Ibrani" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroasia" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Hungaria" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonesia" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandia" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italia" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Jepang" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgia" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Korea" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Lithuania" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Latvia" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Makedonia" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongolia" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Belanda" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norwegia" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norwegia Bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norwegia Nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polandia" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugis" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Portugis Brazil" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Romania" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Rusia" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovakia" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slovenia" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albania" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbia" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbia Latin" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Swedia" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thailand" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turki" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrainia" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnam" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Cina Sederhana" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Cina Tradisionil" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Masukkan nilai yang valid." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "URL ini tampaknya merupakan tautan rusak." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Masukkan URL yang valid." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Masukkan alamat e-mail yang valid." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Masukkan 'slug' yang terdiri dari huruf, bilangan, garis bawah, atau tanda " -"minus." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Masukkan alamat IPv4 yang valid." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Hanya masukkan angka yang dipisahkan dengan koma." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Pastikan nilai ini %(limit_value)s (saat ini %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Pastikan nilai ini lebih kecil dari atau sama dengan %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Pastikan nilai ini lebih besar dari atau sama dengan %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Pastikan nilai ini memiliki sedikitnya %(limit_value)d karakter (saat ini %" -"(show_value)d karakter)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Pastikan nilai ini tidak memiliki lebih dari %(limit_value)d karakter (saat " -"ini %(show_value)d karakter)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s harus unik untuk %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s dengan %(field_label)s telah ada." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "dan" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Nilai %r bukan pilihan yang valid." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Field ini tidak boleh null." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Field ini tidak boleh kosong." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Field dengan tipe: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Bilangan Asli" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Nilai ini harus berupa bilangan asli." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Nilai ini harus salah satu dari True atau False" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Nilai Boolean (Salah satu dari True atau False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "String (maksimum %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Bilangan asli yang dipisahkan dengan koma" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Tanggal (tanpa waktu)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Masukkan tanggal valid dalam format YYYY-MM-DD" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Tanggal tidak valid: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Masukkan tanggal/waktu yang valid dalam format YYYY-MM-DD HH:MM[:ss[.uuuuuu]]" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Tanggal (dengan waktu)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Nilai ini harus berupa bilangan desimal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Bilangan desimal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Alamat email" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Lokasi berkas" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Nilai ini harus berupa bilangan pecahan." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Bilangan 'floating point'" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Bilangan asli raksasa (8 byte)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Alamat IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Nilai harus berupa salah satu dari None, True, atau False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (Salah satu dari True, False, atau None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Teks" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Waktu" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Masukkan waktu yang valid dalam format HH:MM[:ss[.uuuuuu]]" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Teks XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Model %(model)s dengan pk %(pk)r tidak ada." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Kunci Asing (tipe tergantung dari bidang yang berkaitan)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Hubungan satu-ke-satu" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Hubungan banyak-ke-banyak" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Tekan \"Control\", atau \"Command\" pada Mac untuk memilih lebih dari satu." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Bidang ini tidak boleh kosong." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Masukkan keseluruhan angka bilangan." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Masukkan sebuah bilangan." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Pastikan jumlah angka pada bilangan tidak melebihi %s angka." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Pastikan bilangan tidak memiliki lebih dari %s angka desimal." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" -"Pastikan jumlah angka sebelum desimal pada bilangan tidak memiliki lebih " -"dari %s angka." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Masukkan tanggal yang valid." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Masukkan waktu yang valid." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Masukkan tanggal/waktu yang valid." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Tidak ada berkas yang dikirimkan. Periksa tipe pengaksaraan formulir." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Tidak ada berkas yang dikirimkan." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Berkas yang dikirimkan kosong." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Pastikan nama berkas ini tidak melebihi %(max)d karakter (saat ini %(length)" -"d karakter)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Pilih antara mengirimkan berkas atau menghapus tanda centang pada kotak " -"centang" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Unggah gambar yang valid. Berkas yang Anda unggah bukan merupakan berkas " -"gambar atau gambarnya rusak." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Masukkan pilihan yang valid. %(value)s bukan salah satu dari pilihan yang " -"tersedia." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Masukkan beberapa nilai." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Urutan" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Hapus" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Perbaiki data ganda untuk %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Perbaiki data ganda untuk %(field)s yang nilainya harus unik." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Perbaiki data ganda untuk %(field_name)s yang nilainya harus unik untuk " -"pencarian %(lookup)s pada %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Perbaiki nilai ganda di bawah ini." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Kunci asing 'inline' tidak cocok dengan kunci utama 'instance' milik induk." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Masukkan pilihan yang valid. Pilihan tersebut bukan salah satu dari pilihan " -"yang tersedia." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" -"Masukkan pilihan yang valid. %s bukan salah satu pilihan yang tersedia." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" bukan nilai yang benar untuk kunci utama." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Saat ini" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Ubah" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Hapus" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Tidak diketahui" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ya" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Tidak" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ya,tidak,mungkin" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bita" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "tengah malam" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "siang" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Senin" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Selasa" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Rabu" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Kamis" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Jumat" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Sabtu" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Minggu" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Sen" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Sel" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Rab" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Kam" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Jum" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sab" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Min" - -#: utils/dates.py:18 -msgid "January" -msgstr "Januari" - -#: utils/dates.py:18 -msgid "February" -msgstr "Februari" - -#: utils/dates.py:18 -msgid "March" -msgstr "Maret" - -#: utils/dates.py:18 -msgid "April" -msgstr "April" - -#: utils/dates.py:18 -msgid "May" -msgstr "Mei" - -#: utils/dates.py:18 -msgid "June" -msgstr "Juni" - -#: utils/dates.py:19 -msgid "July" -msgstr "Juli" - -#: utils/dates.py:19 -msgid "August" -msgstr "Agustus" - -#: utils/dates.py:19 -msgid "September" -msgstr "September" - -#: utils/dates.py:19 -msgid "October" -msgstr "Oktober" - -#: utils/dates.py:19 -msgid "November" -msgstr "November" - -#: utils/dates.py:20 -msgid "December" -msgstr "Desember" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mei" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "agu" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "des" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Maret" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Mei" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Juni" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Juli" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Agu" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Sep." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Des." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Januari" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Februari" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Maret" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Mei" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Juni" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Juli" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Agustus" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "September" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Oktober" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "November" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Desember" - -#: utils/text.py:136 -msgid "or" -msgstr "atau" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "tahun" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "bulan" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "minggu" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "hari" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "jam" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "menit" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "menit" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j N Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j N Y, G.i.s" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "G.i.s" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s berhasil dibuat." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s berhasil diperbarui." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s telah dihapus." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Tidak ada tahun dipilih" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Tidak ada bulan dipilih" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Tidak ada hari dipilih" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Tidak ada minggu dipilih" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Tidak ada %(verbose_name_plural)s tersedia" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"%(verbose_name_plural)s di masa depan tidak tersedia karena %(class_name)s." -"allow_future bernilai False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Teks tanggal tidak valid '%(datestr)s' dalam format '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Tidak ada %(verbose_name)s yang cocok dengan kueri" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Laman bukan yang 'terakhir' atau juga tidak dapat dikonversikan ke bilangan " -"bulat." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Laman tidak valid (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Daftar kosong dan '%(class_name)s.allow_empty' bernilai False." diff --git a/lib/python2.7/site-packages/django/conf/locale/id/__init__.py b/lib/python2.7/site-packages/django/conf/locale/id/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/id/formats.py b/lib/python2.7/site-packages/django/conf/locale/id/formats.py deleted file mode 100644 index d60976211..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/id/formats.py +++ /dev/null @@ -1,47 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j N Y' -DATETIME_FORMAT = "j N Y, G.i.s" -TIME_FORMAT = 'G.i.s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'd-m-Y' -SHORT_DATETIME_FORMAT = 'd-m-Y G.i.s' -FIRST_DAY_OF_WEEK = 1 #Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d-%m-%y', '%d/%m/%y', # '25-10-09', 25/10/09' - '%d-%m-%Y', '%d/%m/%Y', # '25-10-2009', 25/10/2009' - '%d %b %Y', # '25 Oct 2006', - '%d %B %Y', # '25 October 2006' -) - -TIME_INPUT_FORMATS = ( - '%H.%M.%S', # '14.30.59' - '%H.%M', # '14.30' -) - -DATETIME_INPUT_FORMATS = ( - '%d-%m-%Y %H.%M.%S', # '25-10-2009 14.30.59' - '%d-%m-%Y %H.%M', # '25-10-2009 14.30' - '%d-%m-%Y', # '25-10-2009' - '%d-%m-%y %H.%M.%S', # '25-10-09' 14.30.59' - '%d-%m-%y %H.%M', # '25-10-09' 14.30' - '%d-%m-%y', # '25-10-09'' - '%m/%d/%y %H.%M.%S', # '10/25/06 14.30.59' - '%m/%d/%y %H.%M', # '10/25/06 14.30' - '%m/%d/%y', # '10/25/06' - '%m/%d/%Y %H.%M.%S', # '25/10/2009 14.30.59' - '%m/%d/%Y %H.%M', # '25/10/2009 14.30' - '%m/%d/%Y', # '10/25/2009' -) - -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo deleted file mode 100644 index d06254651..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/is/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/is/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/is/LC_MESSAGES/django.po deleted file mode 100644 index 983a3e18a..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/is/LC_MESSAGES/django.po +++ /dev/null @@ -1,1147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: haffi67 \n" -"Language-Team: Icelandic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabíska" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Aserbaídsjíska" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Búlgarska" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalska" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosníska" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalónska" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tékkneska" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Velska" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Danska" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Þýska" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Gríska" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Enska" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Bresk enska" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spænska" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentínsk spænska" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Mexíkósk Spænska" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Eistland" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskneska" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persneska" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finnska" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Franska" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frísneska" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Ãrska" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galíska" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebreska" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindí" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Króatíska" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Ungverska" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indónesíska" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Ãslenska" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Ãtalska" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japanska" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgíska" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Kmeríska" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannadanska" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Kóreska" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Litháenska" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Lettneska" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Makedónska" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malajalamska" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongólska" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Hollenska" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norska" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norska bókmál" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Nýnorska" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Púndjabíska" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Pólska" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portúgalska" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brasilísk Portúgalska" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rúmenska" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Rússneska" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slóvaska" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slóvenska" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanska" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbneska" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbnesk latína" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Sænska" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamílska" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telúgúska" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Tælenska" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Tyrkneska" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Úkraínska" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Úrdú" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Víetnamska" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Einfölduð kínverska " - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Hefðbundin kínverska" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Sláðu inn gilt gildi." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Síðan á þessari slóð lítur út fyrir að skila villu." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Sláðu inn gilt veffang (URL)." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Sláðu inn gilt tölvupóstfang." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Settu inn gildan vefslóðartitil sem samanstendur af latneskum bókstöfum, " -"númerin, undirstrikum og bandstrikum." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Sláðu inn gilda IPv4 tölu." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Skrifaðu einungis tölur aðskildar með kommum." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Gakktu úr skugga um að gildi sé %(limit_value)s (það er %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"Gakktu úr skugga um að gildið sé minna en eða jafnt og %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"Gakktu úr skugga um að gildið sé stærra en eða jafnt og %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Gakktu úr skugga um að þetta gildi hafi a.m.k. %(limit_value)d stafi (it has " -"%(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Gakktu úr skugga um að þetta gildi hafi í mesta lagi %(limit_value)d stafi " -"(it has %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(field_name)s verður að vera einkvæmt fyrir %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s með þetta %(field_label)s er nú þegar til." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "og" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Gildið %r er ógilt." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Þessi reitur getur ekki haft tómgildi (null)." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Þessi reitur má ekki vera tómur." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Reitur af gerð: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Heiltala" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Þetta gildi verður að vera heil tala." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Þetta gildi verður að vera Satt eða Ósatt." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boole-gildi (True eða False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Strengur (mest %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Heiltölur aðgreindar með kommum" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Dagsetning (án tíma)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Sláðu inn gilda dagsetningu á YYYY-MM-DD sniði." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ógild dagsetning: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Sláðu inn gilda dagsetningu/tíma í ÃÃÃÃ-MM-DD KK:MM[:ss[.uuuuuu]] sniði." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Dagsetning (með tíma)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Þetta gildi verður að vera tugatala (decimal number)." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Tugatala" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Tölvupóstfang" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Skjalaslóð" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Þetta gildi verður að vera fleytitala" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Fleytitala (floating point number)" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Stór (8 bæta) heiltala" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP tala" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Þetta gildi verður að vera annaðhvort None, True eða False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boole-gildi (True, False eða None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Texti" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Tími" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Sláðu inn gildan tíma á KK:MM sniði." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "Veffang" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML texti" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Módel %(model)s með lykil %(pk)r er ekki til." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Ytri lykill (Gerð ákveðin af skyldum reit)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Einn-á-einn samband." - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Margir-til-margra samband." - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Haltu inni „Control“, eða „Command“ á Mac til þess að velja fleira en eitt." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Þennan reit þarf að fylla út." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Sláðu inn heila tölu." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Sláðu inn heila tölu." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Gildið má ekki hafa fleiri en %s tölur." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Gildið má ekki hafa meira en %s tugatölustafi (decimal places)." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Gildið má ekki hafa fleiri en %s tölur fyrir tugabrotskil." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Sláðu inn gilda dagsetningu." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Sláðu inn gilda tímasetningu." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Sláðu inn gilda dagsetningu ásamt tíma." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Engin skrá var send. Athugaðu kótunartegund á forminu (encoding type)." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Engin skrá var send." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Innsend skrá er tóm." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "Gildið má ekki hafa fleiri en %(max)d stafi (gildið hefur %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Vinsamlegast sendu annað hvort inn skrá eða merktu í boxið, ekki bæði." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Halaðu upp gildri myndskrá. Skráin sem þú halaðir upp var annað hvort gölluð " -"eða ekki mynd." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Veldu gildan valmöguleika. %(value)s er ekki eitt af gildum valmöguleikum." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Sláðu inn lista af gildum." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Röð" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Eyða" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Vinsamlegast leiðréttu tvítekin gögn í reit %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Vinsamlegast lagfærðu gögn í reit %(field)s, sem verða að vera einstök." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Vinsamlegast leiðréttu tvítekin gögn í reit %(field_name)s sem verða að vera " -"einstök fyrir %(lookup)s í %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Vinsamlegast lagfærðu tvítöldu gögnin fyrir neðan." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Ytri lykill virðist ekki passa við aðallykil eiganda." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Veldu gildan valmöguleika. Valið virðist ekki vera eitt af gildum " -"valmöguleikum." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Veldu gildan valmöguleika. %s er ekki einn af gildum valmöguleikum." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" er ekki gilt sem lykill." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Eins og er:" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Breyta" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Hreinsa" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Óþekkt" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Já" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nei" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "já,nei,kannski" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bæti" -msgstr[1] "%(size)d bæti" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "eftirmiðdegi" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "morgun" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "Eftirmiðdegi" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "Morgun" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "miðnætti" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "hádegi" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "mánudagur" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "þriðjudagur" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "miðvikudagur" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "fimmtudagur" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "föstudagur" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "laugardagur" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "sunnudagur" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Mán" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Þri" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Mið" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Fim" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Fös" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Lau" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Sun" - -#: utils/dates.py:18 -msgid "January" -msgstr "janúar" - -#: utils/dates.py:18 -msgid "February" -msgstr "febrúar" - -#: utils/dates.py:18 -msgid "March" -msgstr "mars" - -#: utils/dates.py:18 -msgid "April" -msgstr "apríl" - -#: utils/dates.py:18 -msgid "May" -msgstr "maí" - -#: utils/dates.py:18 -msgid "June" -msgstr "júní" - -#: utils/dates.py:19 -msgid "July" -msgstr "júlí" - -#: utils/dates.py:19 -msgid "August" -msgstr "ágúst" - -#: utils/dates.py:19 -msgid "September" -msgstr "september" - -#: utils/dates.py:19 -msgid "October" -msgstr "október" - -#: utils/dates.py:19 -msgid "November" -msgstr "nóvember" - -#: utils/dates.py:20 -msgid "December" -msgstr "desember" - -#: utils/dates.py:23 -msgid "jan" -msgstr "Jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "maí" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jún" - -#: utils/dates.py:24 -msgid "jul" -msgstr "júl" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ágú" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nóv" - -#: utils/dates.py:24 -msgid "dec" -msgstr "des" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Mars" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Apríl" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Maí" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Júní" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Júlí" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Ãg." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nóv." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Des." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Janúar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Febrúar" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Mars" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Apríl" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Maí" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Júní" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Júlí" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Ãgúst" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "September" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Október" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Nóvember" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Desember" - -#: utils/text.py:136 -msgid "or" -msgstr "eða" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "ár" -msgstr[1] "ár" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mánuður" -msgstr[1] "mánuðir" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "vika" -msgstr[1] "vikur" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dagur" -msgstr[1] "dagar" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "klukkutími" -msgstr[1] "klukkutímar" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "mínúta" -msgstr[1] "mínútur" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "mínútur" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j. N Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. N Y, H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "j. N Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. N Y" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s var fært inn." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s var uppfært." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s var eytt." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Ekkert ár tilgreint" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Enginn mánuður tilgreindur" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Enginn dagur tilgreindur" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Engin vika tilgreind" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Ekkert %(verbose_name_plural)s í boði." - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Framtíðar %(verbose_name_plural)s ekki í boði því %(class_name)s." -"allow_future er Ósatt." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Ógilt snið dagsetningar \"%(datestr)s\" gefið sniðið \"%(format)s\"" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Ekkert %(verbose_name)s sem uppfyllir skilyrði" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Þetta er hvorki síðasta síða, né er hægt að breyta í heiltölu." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Ógild síða (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Tómur listi og '%(class_name)s.allow_empty er Ósatt." diff --git a/lib/python2.7/site-packages/django/conf/locale/is/__init__.py b/lib/python2.7/site-packages/django/conf/locale/is/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/is/formats.py b/lib/python2.7/site-packages/django/conf/locale/is/formats.py deleted file mode 100644 index e7f3418fb..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/is/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. F Y' -TIME_FORMAT = 'H:i:s' -# DATETIME_FORMAT = -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'j.n.Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo deleted file mode 100644 index 0c1dfc4ef..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/it/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/it/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/it/LC_MESSAGES/django.po deleted file mode 100644 index ba5fd5d27..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/it/LC_MESSAGES/django.po +++ /dev/null @@ -1,1148 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-08 19:35+0000\n" -"Last-Translator: teknico \n" -"Language-Team: Italian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "arabo" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azero" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "bulgaro" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengali" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosniaco" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "catalano" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ceco" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "gallese" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "danese" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "tedesco" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "greco" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "inglese" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "inglese britannico" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "spagnolo" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "spagnolo argentino" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Spagnolo messicano" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "estone" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "basco" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "persiano" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "finlandese" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "francese" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "frisone" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "irlandese" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "galiziano" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ebraico" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "croato" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ungherese" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "indonesiano" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "islandese" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "italiano" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "giapponese" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "georgiano" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "coreano" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "lituano" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "lettone" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "macedone" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "mongolo" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "olandese" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "norvegese" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "norvegese bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "norvegese nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "punjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "polacco" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "portoghese" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "brasiliano portoghese" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "rumeno" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "russo" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "slovacco" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "sloveno" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "albanese" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "serbo" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "serbo latino" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "svedese" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "tailandese" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "turco" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ucraino" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "vietnamita" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "cinese semplificato" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "cinese tradizionale" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Inserisci un valore valido." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Questa URL non sembra funzionare." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Inserisci una URL valida." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Inserisci un indirizzo e-mail valido." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Inserisci uno 'slug' valido contenente lettere, cifre, sottolineati o " -"trattini." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Inserisci un indirizzo IPv4 valido." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Inserisci solo cifre separate da virgole." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Assicurati che questo valore sia %(limit_value)s (ora è %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Assicurati che questo valore sia minore o uguale a %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Assicuratii che questo valore sia maggiore o uguale a %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Assicurati che questo valore contenga almeno %(limit_value)d caratteri (ne " -"ha %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Assicuratii che questo valore non contenga più di %(limit_value)d caratteri " -"(ne ha %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s deve essere unico per %(lookup)s %(date_field)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s con questo %(field_label)s esiste già." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "e" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Il valore %r non è una scelta valida." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Questo campo non può essere nullo." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Questo campo non può essere vuoto." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Campo di tipo: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Intero" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Questo valore deve essere un intero." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Questo valore deve essere True o False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Booleano (True o False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Stringa (fino a %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Interi separati da virgole" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Data (senza ora)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Inserisci una data valida in formato AAAA-MM-GG." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Data non valida: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Inserisci una data/ora valida nel formato AAAA-MM-GG OO:MM[ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Data (con ora)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Questo valore deve essere un numero decimale." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Numero decimale" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Indirizzo e-mail" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Percorso di file" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Questo valore deve essere un numero a virgola mobile." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Numero decimale" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Intero grande (8 byte)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Indirizzo IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Questo valore deve essere None, True o False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Booleano (True, False o None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Testo" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Ora" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Inserisci un'ora valida nel formato OO:MM[ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Testo XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Il modello %(model)s con chiave primaria %(pk)r non esiste." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Foreign Key (tipo determinato dal campo collegato)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Relazione uno a uno" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Relazione molti a molti" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Tieni premuto \"Control\", o \"Command\" su Mac, per selezionarne più di uno." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Questo campo è obbligatorio." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Inserisci un numero intero." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Inserisci un numero." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Assicurati che non vi siano più di %s cifre in totale." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Assicurati che non vi siano più di %s cifre decimali." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Assicurati che non vi siano più di %s cifre prima della virgola." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Inserisci una data valida." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Inserisci un'ora valida." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Inserisci una data/ora valida." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"Non è stato inviato alcun file. Verifica il tipo di codifica sulla form." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Nessun file è stato inviato." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Il file inviato è vuoto." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Assicurati che questo nome di file non contenga più di %(max)d caratteri (ne " -"ha %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"È possibile inviare un file o selezionare la casella \"svuota\", ma non " -"entrambi." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Carica un'immagine valida. Il file caricato non è un'immagine o è corrotto." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Scegli un'opzione valida. %(value)s non compare tra quelle disponibili." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Inserisci una lista di valori." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ordine" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Cancella" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Correggi i dati duplicati di %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Correggi i dati duplicati di %(field)s, che deve essere unico." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Correggi i dati duplicati di %(field_name)s che deve essere unico/a per %" -"(lookup)s in %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Correggi i dati duplicati qui sotto." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"La foreign key inline non concorda con la chiave primaria dell'istanza padre." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Scegli un'opzione valida. La scelta effettuata non compare tra quelle " -"disponibili." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Scegli un'opzione valida. %s non compare tra quelle disponibili." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" non è un valore valido per una chiave primaria." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Attualmente" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Modifica" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Svuota" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Sconosciuto" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Sì" - -#: forms/widgets.py:548 -msgid "No" -msgstr "No" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "sì,no,forse" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d byte" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "mezzanotte" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "mezzogiorno" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "lunedì" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "martedì" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "mercoledì" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "giovedì" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "venerdì" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "sabato" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "domenica" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "lun" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "mar" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "mer" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "gio" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "ven" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "sab" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "dom" - -#: utils/dates.py:18 -msgid "January" -msgstr "gennaio" - -#: utils/dates.py:18 -msgid "February" -msgstr "febbraio" - -#: utils/dates.py:18 -msgid "March" -msgstr "marzo" - -#: utils/dates.py:18 -msgid "April" -msgstr "aprile" - -#: utils/dates.py:18 -msgid "May" -msgstr "maggio" - -#: utils/dates.py:18 -msgid "June" -msgstr "giugno" - -#: utils/dates.py:19 -msgid "July" -msgstr "luglio" - -#: utils/dates.py:19 -msgid "August" -msgstr "agosto" - -#: utils/dates.py:19 -msgid "September" -msgstr "settembre" - -#: utils/dates.py:19 -msgid "October" -msgstr "ottobre" - -#: utils/dates.py:19 -msgid "November" -msgstr "novembre" - -#: utils/dates.py:20 -msgid "December" -msgstr "dicembre" - -#: utils/dates.py:23 -msgid "jan" -msgstr "gen" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mag" - -#: utils/dates.py:23 -msgid "jun" -msgstr "giu" - -#: utils/dates.py:24 -msgid "jul" -msgstr "lug" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ago" - -#: utils/dates.py:24 -msgid "sep" -msgstr "set" - -#: utils/dates.py:24 -msgid "oct" -msgstr "ott" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dic" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Gen." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Mar." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Apr." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Mag." - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Giu." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Lug." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Ago." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Set." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Ott." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dic." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Gennaio" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Febbraio" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Marzo" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Aprile" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Maggio" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Giugno" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Luglio" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Agosto" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Settembre" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Ottobre" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Novembre" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Dicembre" - -#: utils/text.py:136 -msgid "or" -msgstr "o" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "anno" -msgstr[1] "anni" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mese" -msgstr[1] "mesi" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "settimana" -msgstr[1] "settimane" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "giorno" -msgstr[1] "giorni" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "ora" -msgstr[1] "ore" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minuti" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuti" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j F Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j F Y, H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "Y F" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s creato/a correttamente." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s aggiornato/a correttamente." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s cancellato/a." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Anno non specificato" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Mese non specificato" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Giorno non specificato" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Settimana non specificata" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Nessun %(verbose_name_plural)s disponibile" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"%(verbose_name_plural)s futuri/e non disponibili/e poichè %(class_name)s." -"allow_future è False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Data non valida '%(datestr)s' con il formato '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Trovato nessun %(verbose_name)s corrispondente alla query" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "La pagina non è 'ultima', né può essere convertita in un int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Pagina non valida (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Elenco vuoto e '%(class_name)s.allow_empty' è False." diff --git a/lib/python2.7/site-packages/django/conf/locale/it/__init__.py b/lib/python2.7/site-packages/django/conf/locale/it/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/it/formats.py b/lib/python2.7/site-packages/django/conf/locale/it/formats.py deleted file mode 100644 index 55531da0e..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/it/formats.py +++ /dev/null @@ -1,46 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'd F Y' # 25 Ottobre 2006 -TIME_FORMAT = 'H:i:s' # 14:30:59 -DATETIME_FORMAT = 'l d F Y H:i:s' # Mercoledì 25 Ottobre 2006 14:30:59 -YEAR_MONTH_FORMAT = 'F Y' # Ottobre 2006 -MONTH_DAY_FORMAT = 'j/F' # 10/2006 -SHORT_DATE_FORMAT = 'd/M/Y' # 25/12/2009 -SHORT_DATETIME_FORMAT = 'd/M/Y H:i:s' # 25/10/2009 14:30:59 -FIRST_DAY_OF_WEEK = 1 # Lunedì - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%Y/%m/%d', # '2008-10-25', '2008/10/25' - '%d-%m-%Y', '%d/%m/%Y', # '25-10-2006', '25/10/2006' - '%d-%m-%y', '%d/%m/%y', # '25-10-06', '25/10/06' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%d-%m-%Y %H:%M:%S', # '25-10-2006 14:30:59' - '%d-%m-%Y %H:%M', # '25-10-2006 14:30' - '%d-%m-%Y', # '25-10-2006' - '%d-%m-%y %H:%M:%S', # '25-10-06 14:30:59' - '%d-%m-%y %H:%M', # '25-10-06 14:30' - '%d-%m-%y', # '25-10-06' - '%d/%m/%Y %H:%M:%S', # '25/10/2006 14:30:59' - '%d/%m/%Y %H:%M', # '25/10/2006 14:30' - '%d/%m/%Y', # '25/10/2006' - '%d/%m/%y %H:%M:%S', # '25/10/06 14:30:59' - '%d/%m/%y %H:%M', # '25/10/06 14:30' - '%d/%m/%y', # '25/10/06' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo deleted file mode 100644 index 5f5573d12..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ja/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po deleted file mode 100644 index 4c285dfe5..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ja/LC_MESSAGES/django.po +++ /dev/null @@ -1,1139 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: t2y \n" -"Language-Team: Japanese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "アラビア語" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "ブルガリア語" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "ベンガル語" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "ボスニア語" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "カタロニア語" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ãƒã‚§ã‚³èªž" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "ウェールズ語" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "デンマーク語" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "ドイツ語" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "ギリシャ語" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "英語(米国)" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "英語(英国)" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "スペイン語" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "アルゼンãƒãƒ³ã‚¹ãƒšã‚¤ãƒ³èªž" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "エストニア語" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "ãƒã‚¹ã‚¯èªž" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "ペルシア語" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "フィンランド語" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "フランス語" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "フリジア語" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "アイルランド語" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "ガリシア語" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ヘブライ語" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "ヒンディー語" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "クロアãƒã‚¢èªž" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ãƒãƒ³ã‚¬ãƒªãƒ¼èªž" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "インドãƒã‚·ã‚¢èªž" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "アイスランド語" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "イタリア語" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "日本語" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "グルジア語" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "クメール語" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "カンナダ語" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "韓国語" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "リトアニア語" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "ラトビア語" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "マケドニア語" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "マラヤーラム語" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "モンゴル語" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "オランダ語" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "ノルウェー語" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "ノルウェーã®ãƒ–ークモール" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "ノルウェーã®ãƒ‹ãƒ¼ãƒŽã‚·ãƒ¥ã‚¯" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "パンジャブ語" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "ãƒãƒ¼ãƒ©ãƒ³ãƒ‰èªž" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "ãƒãƒ«ãƒˆã‚¬ãƒ«èªž" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "ブラジルãƒãƒ«ãƒˆã‚¬ãƒ«èªž" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "ルーマニア語" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "ロシア語" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "スロãƒã‚­ã‚¢èªž" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "スロヴェニア語" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "アルãƒãƒ‹ã‚¢èªž" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "セルビア語" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "セルビア語ラテン文字" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "スウェーデン語" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "タミル語" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "テルグ語" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "タイ語" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "トルコ語" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ウクライナ語" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "ベトナム語" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "簡体字中国語" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "ç¹ä½“字中国語" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "値を正ã—ã入力ã—ã¦ãã ã•ã„。" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "ã“ã®URLã¯ãƒªãƒ³ã‚¯ãŒå£Šã‚Œã¦ã„ã¾ã™ã€‚" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "URLã‚’æ­£ã—ã入力ã—ã¦ãã ã•ã„。" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "有効ãªãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’入力ã—ã¦ãã ã•ã„。" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "slug ã«ã¯åŠè§’ã®è‹±æ•°å­—ã€ã‚¢ãƒ³ãƒ€ãƒ¼ã‚¹ã‚³ã‚¢ã€ãƒã‚¤ãƒ•ãƒ³ä»¥å¤–ã¯ä½¿ç”¨ã§ãã¾ã›ã‚“。" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "有効ãªIPアドレス (IPv4) を入力ã—ã¦ãã ã•ã„。" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "カンマ区切りã®æ•°å­—ã ã‘を入力ã—ã¦ãã ã•ã„。" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"ã“ã®å€¤ã¯ %(limit_value)s ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“(実際ã«ã¯ %(show_value)s ã§ã—" -"ãŸ) 。" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "ã“ã®å€¤ã¯ %(limit_value)s 以下ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "ã“ã®å€¤ã¯ %(limit_value)s 以上ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"%(limit_value)d 字以上ã§å…¥åŠ›ã—ã¦ãã ã•ã„(実際ã«ã¯ %(show_value)d 文字ã§ã—" -"ãŸ)。" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"%(limit_value)d 字以下ã§å…¥åŠ›ã—ã¦ãã ã•ã„(実際ã«ã¯ %(show_value)d 文字ã§ã—" -"ãŸ)。" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(date_field)s %(lookup)s ã§ã¯ %(field_name)s ãŒãƒ¦ãƒ‹ãƒ¼ã‚¯ã§ã‚ã‚‹å¿…è¦ãŒã‚ã‚Šã¾" -"ã™ã€‚" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "ã“ã® %(field_label)s ã‚’æŒã£ãŸ %(model_name)s ãŒæ—¢ã«å­˜åœ¨ã—ã¾ã™ã€‚" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ã¨" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "%r ã¯æœ‰åŠ¹ãªé¸æŠžè‚¢ã§ã¯ã‚ã‚Šã¾ã›ã‚“。" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "ã“ã®ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ã«ã¯ NULL を指定ã§ãã¾ã›ã‚“。" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "ã“ã®ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ã¯ç©ºã§ã¯ã„ã‘ã¾ã›ã‚“。" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "タイプ㌠%(field_type)s ã®ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "æ•´æ•°" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "値ã¯æ•´æ•°ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "値ã¯çœŸ: True ã¾ãŸã¯å½: False ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "ブール値 (真: True ã¾ãŸã¯å½: False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "文字列 ( %(max_length)s å­—ã¾ã§ )" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "カンマ区切りã®æ•´æ•°" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "日付" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "YYYY-MM-DDå½¢å¼ã§æ—¥ä»˜ã‚’入力ã—ã¦ãã ã•ã„。" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "無効ãªæ—¥ä»˜: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "YYYY-MM-DD HH:MM[:ss[.uuuuuu]]å½¢å¼ã§æ—¥æ™‚を入力ã—ã¦ãã ã•ã„。" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "日時" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "値ã¯æ•´æ•°ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "10 進数 (å°æ•°å¯)" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "メールアドレス" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "ファイルã®å ´æ‰€" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "値ã¯æµ®å‹•å°æ•°ç‚¹æ•°ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "浮動å°æ•°ç‚¹" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "大ããª(8ãƒã‚¤ãƒˆ)æ•´æ•°" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP アドレス" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "値ã¯ã€ç©º: Noneã€çœŸ: True ã¾ãŸã¯å½: False ã§ãªã‘ã‚Œã°ãªã‚Šã¾ã›ã‚“。" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "ブール値 (真: True ã€å½: False ã¾ãŸã¯ None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "テキスト" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "時刻" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "HH:MM[:ss[.uuuuuu]]å½¢å¼ã§æ™‚刻を入力ã—ã¦ãã ã•ã„。" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XMLテキスト" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "主キー㌠%(pk)r ã§ã‚ã‚‹ %(model)s モデルã¯å­˜åœ¨ã—ã¾ã›ã‚“。" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "外部キー(åž‹ã¯é–¢é€£ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ã«ã‚ˆã£ã¦æ±ºã¾ã‚Šã¾ã™)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "1対1ã®é–¢é€£" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "多対多ã®é–¢é€£" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"複数é¸æŠžã™ã‚‹ã¨ãã«ã¯ Control キーを押ã—ãŸã¾ã¾é¸æŠžã—ã¦ãã ã•ã„。Mac 㯠" -"Command キーを使ã£ã¦ãã ã•ã„" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "ã“ã®ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ã¯å¿…é ˆã§ã™ã€‚" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "整数を入力ã—ã¦ãã ã•ã„。" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "整数を入力ã—ã¦ãã ã•ã„。" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "整数部ã¨å°‘数部を併ã›ã¦ %s æ¡ã¾ã§ã§å…¥åŠ›ã—ã¦ä¸‹ã•ã„。" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "少数部㯠%s æ¡ã¾ã§ã§å…¥åŠ›ã—ã¦ä¸‹ã•ã„。" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "整数部㯠%s æ¡ã¾ã§ã§å…¥åŠ›ã—ã¦ä¸‹ã•ã„。" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "日付を正ã—ã入力ã—ã¦ãã ã•ã„。" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "時間を正ã—ã入力ã—ã¦ãã ã•ã„。" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "日付/時間を正ã—ã入力ã—ã¦ãã ã•ã„。" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"ファイルãŒå–å¾—ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚formã®encoding typeを確èªã—ã¦ãã ã•ã„。" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "ファイルãŒé€ä¿¡ã•ã‚Œã¦ã„ã¾ã›ã‚“。" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "入力ã•ã‚ŒãŸãƒ•ã‚¡ã‚¤ãƒ«ã¯ç©ºã§ã™ã€‚" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"ファイルå㯠%(max)d 字以上ã§å…¥åŠ›ã—ã¦ãã ã•ã„( %(length)d 文字入力ã•ã‚Œã¾ã—" -"ãŸ)。" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"ファイルを投稿ã™ã‚‹ã‹ã€ã‚¯ãƒªã‚¢ãƒã‚§ãƒƒã‚¯ãƒœãƒƒã‚¯ã‚¹ã‚’ãƒã‚§ãƒƒã‚¯ã™ã‚‹ã‹ã©ã¡ã‚‰ã‹ã‚’é¸æŠžã—" -"ã¦ãã ã•ã„。両方ã¨ã‚‚è¡Œã£ã¦ã¯ã„ã‘ã¾ã›ã‚“。" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"ç”»åƒã‚’アップロードã—ã¦ãã ã•ã„。アップロードã—ãŸãƒ•ã‚¡ã‚¤ãƒ«ã¯ç”»åƒã§ãªã„ã‹ã€ã¾ãŸ" -"ã¯å£Šã‚Œã¦ã„ã¾ã™ã€‚" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "æ­£ã—ãé¸æŠžã—ã¦ãã ã•ã„。 %(value)s ã¯å€™è£œã«ã‚ã‚Šã¾ã›ã‚“。" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "リストを入力ã—ã¦ãã ã•ã„。" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "並ã³å¤‰ãˆ" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "削除" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "%(field)s ã®é‡è¤‡ã—ãŸãƒ‡ãƒ¼ã‚¿ã‚’修正ã—ã¦ãã ã•ã„。" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"%(field)s ã®é‡è¤‡ã—ãŸãƒ‡ãƒ¼ã‚¿ã‚’修正ã—ã¦ãã ã•ã„。ã“ã®ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ã¯ãƒ¦ãƒ‹ãƒ¼ã‚¯ã§ã‚ã‚‹" -"å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"%(field_name)s ã®é‡è¤‡ã—ãŸãƒ‡ãƒ¼ã‚¿ã‚’修正ã—ã¦ãã ã•ã„。%(date_field)s %(lookup)s " -"ã§ã¯ %(field_name)s ãŒãƒ¦ãƒ‹ãƒ¼ã‚¯ã§ã‚ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "下記ã®é‡è¤‡ã—ãŸãƒ‡ãƒ¼ã‚¿ã‚’修正ã—ã¦ãã ã•ã„。" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "インライン外部キーãŒè¦ªã‚¤ãƒ³ã‚¹ã‚¿ãƒ³ã‚¹ã®ä¸»ã‚­ãƒ¼ã¨ä¸€è‡´ã—ã¾ã›ã‚“。" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "æ­£ã—ãé¸æŠžã—ã¦ãã ã•ã„。é¸æŠžã—ãŸã‚‚ã®ã¯å€™è£œã«ã‚ã‚Šã¾ã›ã‚“。" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "æ­£ã—ãé¸æŠžã—ã¦ãã ã•ã„。 %s ã¯å€™è£œã«ã‚ã‚Šã¾ã›ã‚“。" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ã¯ãƒ—ライマリキーã¨ã—ã¦ç„¡åŠ¹ãªå€¤ã§ã™ã€‚" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "ç¾åœ¨" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "変更" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "クリア" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "ä¸æ˜Ž" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "ã¯ã„" - -#: forms/widgets.py:548 -msgid "No" -msgstr "ã„ã„ãˆ" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ã¯ã„,ã„ã„ãˆ,ãŸã¶ã‚“" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d ãƒã‚¤ãƒˆ" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "0時" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "12時" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "月曜日" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "ç«æ›œæ—¥" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "水曜日" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "木曜日" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "金曜日" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "土曜日" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "日曜日" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "月" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "ç«" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "æ°´" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "木" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "金" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "土" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "æ—¥" - -#: utils/dates.py:18 -msgid "January" -msgstr "1月" - -#: utils/dates.py:18 -msgid "February" -msgstr "2月" - -#: utils/dates.py:18 -msgid "March" -msgstr "3月" - -#: utils/dates.py:18 -msgid "April" -msgstr "4月" - -#: utils/dates.py:18 -msgid "May" -msgstr "5月" - -#: utils/dates.py:18 -msgid "June" -msgstr "6月" - -#: utils/dates.py:19 -msgid "July" -msgstr "7月" - -#: utils/dates.py:19 -msgid "August" -msgstr "8月" - -#: utils/dates.py:19 -msgid "September" -msgstr "9月" - -#: utils/dates.py:19 -msgid "October" -msgstr "10月" - -#: utils/dates.py:19 -msgid "November" -msgstr "11月" - -#: utils/dates.py:20 -msgid "December" -msgstr "12月" - -#: utils/dates.py:23 -msgid "jan" -msgstr "1月" - -#: utils/dates.py:23 -msgid "feb" -msgstr "2月" - -#: utils/dates.py:23 -msgid "mar" -msgstr "3月" - -#: utils/dates.py:23 -msgid "apr" -msgstr "4月" - -#: utils/dates.py:23 -msgid "may" -msgstr "5月" - -#: utils/dates.py:23 -msgid "jun" -msgstr "6月" - -#: utils/dates.py:24 -msgid "jul" -msgstr "7月" - -#: utils/dates.py:24 -msgid "aug" -msgstr "8月" - -#: utils/dates.py:24 -msgid "sep" -msgstr "9月" - -#: utils/dates.py:24 -msgid "oct" -msgstr "10月" - -#: utils/dates.py:24 -msgid "nov" -msgstr "11月" - -#: utils/dates.py:24 -msgid "dec" -msgstr "12月" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "1月" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "2月" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "3月" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "4月" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "5月" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "6月" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "7月" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "8月" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "9月" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "10月" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "11月" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "12月" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "1月" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "2月" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "3月" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "4月" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "5月" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "6月" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "7月" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "8月" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "9月" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "10月" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "11月" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "12月" - -#: utils/text.py:136 -msgid "or" -msgstr "ã¾ãŸã¯" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "å¹´" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "ヶ月" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "週間" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "æ—¥" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "時間" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "分" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "分" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "Y/m/d" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "Y/m/d H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "Y/m/d" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "m/d" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s を作æˆã—ã¾ã—ãŸã€‚" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s ã‚’æ›´æ–°ã—ã¾ã—ãŸã€‚" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr " %(verbose_name)s を削除ã—ã¾ã—ãŸã€‚" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/ja/__init__.py b/lib/python2.7/site-packages/django/conf/locale/ja/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/ja/formats.py b/lib/python2.7/site-packages/django/conf/locale/ja/formats.py deleted file mode 100644 index ce9d1acb9..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ja/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'Yå¹´n月jæ—¥' -TIME_FORMAT = 'G:i:s' -DATETIME_FORMAT = 'Yå¹´n月jæ—¥G:i:s' -YEAR_MONTH_FORMAT = 'Yå¹´n月' -MONTH_DAY_FORMAT = 'n月jæ—¥' -SHORT_DATE_FORMAT = 'Y/m/d' -SHORT_DATETIME_FORMAT = 'Y/m/d G:i:s' -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo deleted file mode 100644 index 9da9cc547..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ka/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po deleted file mode 100644 index 82bc039d4..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ka/LC_MESSAGES/django.po +++ /dev/null @@ -1,1135 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: avsd05 \n" -"Language-Team: Georgian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "áƒáƒ áƒáƒ‘ული" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "ბულგáƒáƒ áƒ£áƒšáƒ˜" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "ბენგáƒáƒšáƒ˜áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "ბáƒáƒ¡áƒœáƒ˜áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "კáƒáƒ¢áƒáƒšáƒáƒœáƒ£áƒ áƒ˜" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ჩეხური" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "უელსური" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "დáƒáƒœáƒ˜áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "გერმáƒáƒœáƒ£áƒšáƒ˜" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "ბერძნული" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ინგლისური" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "ბრიტáƒáƒœáƒ”თის ინგლისური" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ესპáƒáƒœáƒ£áƒ áƒ˜" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "áƒáƒ áƒ’ენტინის ესპáƒáƒœáƒ£áƒ áƒ˜" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "ესტáƒáƒœáƒ£áƒ áƒ˜" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "ბáƒáƒ¡áƒ™áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "სპáƒáƒ áƒ¡áƒ£áƒšáƒ˜" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ფინური" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "ფრáƒáƒœáƒ’ული" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "ფრისიული" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ირლáƒáƒœáƒ“იური" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "გáƒáƒšáƒ˜áƒªáƒ˜áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ებრáƒáƒ£áƒšáƒ˜" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "ჰინდი" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "ხáƒáƒ áƒ•áƒáƒ¢áƒ˜áƒ£áƒšáƒ˜" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "უნგრული" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "ინდáƒáƒœáƒ”ზიური" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "ისლáƒáƒœáƒ“იური" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "იტáƒáƒšáƒ˜áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "იáƒáƒžáƒáƒœáƒ£áƒ áƒ˜" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "ქáƒáƒ áƒ—ული" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "ხმერული" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "კáƒáƒœáƒœáƒáƒ“áƒ" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "კáƒáƒ áƒ”ული" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "ლიტვური" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "ლáƒáƒ¢áƒ•áƒ˜áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "მáƒáƒ™áƒ”დáƒáƒœáƒ˜áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "მáƒáƒšáƒáƒ˜áƒ–იური" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "მáƒáƒœáƒ¦áƒáƒšáƒ£áƒ áƒ˜" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "ჰáƒáƒšáƒáƒœáƒ“იური" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "ნáƒáƒ áƒ•áƒ”გიული" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "ნáƒáƒ áƒ•áƒ”გიული-ბáƒáƒ™áƒ›áƒáƒšáƒ˜" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "ნáƒáƒ áƒ•áƒ”გიული-ნინáƒáƒ áƒ¡áƒ™áƒ˜" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "პუნჯáƒáƒ‘ი" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "პáƒáƒšáƒáƒœáƒ£áƒ áƒ˜" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "პáƒáƒ áƒ¢áƒ£áƒ’áƒáƒšáƒ˜áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "ბრáƒáƒ–ილიური პáƒáƒ áƒ¢áƒ£áƒ’áƒáƒšáƒ˜áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "რუმინული" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "რუსული" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "სლáƒáƒ•áƒáƒ™áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "სლáƒáƒ•áƒ”ნიური" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "áƒáƒšáƒ‘áƒáƒœáƒ£áƒ áƒ˜" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "სერბული" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "სერბული (ლáƒáƒ—ინური)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "შვედური" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "თáƒáƒ›áƒ˜áƒšáƒ£áƒ áƒ˜" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "ტელუგუ" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "ტáƒáƒ˜" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "თურქული" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "უკრáƒáƒ˜áƒœáƒ£áƒšáƒ˜" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "ვიეტნáƒáƒ›áƒ£áƒ áƒ˜" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "გáƒáƒ›áƒáƒ áƒ¢áƒ˜áƒ•áƒ”ბული ჩინური" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "ტრáƒáƒ“იციული ჩინური" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ მნიშვნელáƒáƒ‘áƒ." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "რáƒáƒ’áƒáƒ áƒª ჩáƒáƒœáƒ¡, URL áƒáƒ áƒ˜áƒ¡ გáƒáƒ¬áƒ§áƒ•áƒ”ტილი ბმული." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ი." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ 'slug'-მნიშვნელáƒáƒ‘áƒ, რáƒáƒ›áƒ”ლიც შეიცáƒáƒ•áƒ¡ მხáƒáƒšáƒáƒ“ áƒáƒ¡áƒáƒ”ბს, ციფრებს, " -"ხáƒáƒ–გáƒáƒ¡áƒ›áƒ˜áƒ¡ ნიშნებს დრდეფისებს." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ IPv4 მისáƒáƒ›áƒáƒ áƒ—ი." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "შეიყვáƒáƒœáƒ”თ მხáƒáƒšáƒáƒ“ მძიმეებით გáƒáƒ›áƒáƒ§áƒáƒ¤áƒ˜áƒšáƒ˜ ციფრები." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "მნიშვნელáƒáƒ‘რუნდრიყáƒáƒ¡ %(limit_value)s (იგი áƒáƒ áƒ˜áƒ¡ %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "მნიშვნელáƒáƒ‘რუნდრიყáƒáƒ¡ %(limit_value)s-ზე ნáƒáƒ™áƒšáƒ”ბი áƒáƒœ ტáƒáƒšáƒ˜." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "მნიშვნელáƒáƒ‘რუნდრიყáƒáƒ¡ %(limit_value)s-ზე მეტი áƒáƒœ ტáƒáƒšáƒ˜." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"მნიშვნელáƒáƒ‘რუნდრშეიცáƒáƒ•áƒ“ეს სულ მცირე %(limit_value)d სიმბáƒáƒšáƒáƒ¡ (იგი შეიცáƒáƒ•áƒ¡ %" -"(show_value)d-ს)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"მნიშვნელáƒáƒ‘რუნდრშეიცáƒáƒ•áƒ“ეს áƒáƒ áƒáƒ£áƒ›áƒ”ტეს %(limit_value)d სიმბáƒáƒšáƒáƒ¡ (იგი შეიცáƒáƒ•áƒ¡ %" -"(show_value)d-ს)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s უნიკáƒáƒšáƒ£áƒ áƒ˜ უნდრიყáƒáƒ¡ %(date_field)s-თვის %(lookup)s-ზე." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s მáƒáƒªáƒ”მული %(field_label)s-ით უკვე áƒáƒ áƒ¡áƒ”ბáƒáƒ‘ს." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "დáƒ" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "მნიშვნელáƒáƒ‘რ%r áƒáƒ  áƒáƒ áƒ˜áƒ¡ დáƒáƒ¡áƒáƒ¨áƒ•áƒ”ბი." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "ეს ველი áƒáƒ  შეიძლებრიყáƒáƒ¡ null." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "ეს ველი áƒáƒ  შეიძლებრიყáƒáƒ¡ ცáƒáƒ áƒ˜áƒ”ლი." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "ველის ტიპი: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "მთელი" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "ეს მნიშვნელáƒáƒ‘რუნდრიყáƒáƒ¡ მთელი." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "ეს მნიშვნელáƒáƒ‘რუნდრიყáƒáƒ¡ True áƒáƒœ False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "ლáƒáƒ’იკური (True áƒáƒœ False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "სტრიქáƒáƒœáƒ˜ (%(max_length)s სიმბáƒáƒšáƒáƒ›áƒ“ე)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "მძიმით გáƒáƒ›áƒáƒ§áƒáƒ¤áƒ˜áƒšáƒ˜ მთელი რიცხვები" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "თáƒáƒ áƒ˜áƒ¦áƒ˜ (დრáƒáƒ˜áƒ¡ გáƒáƒ áƒ”შე)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ თáƒáƒ áƒ˜áƒ¦áƒ˜ YYYY-MM-DD ფáƒáƒ áƒ›áƒáƒ¢áƒ¨áƒ˜." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "áƒáƒ áƒáƒ¡áƒ¬áƒáƒ áƒ˜ თáƒáƒ áƒ˜áƒ¦áƒ˜: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ თáƒáƒ áƒ˜áƒ¦áƒ˜ დრდრრYYYY-MM-DD HH:MM ფáƒáƒ áƒ›áƒáƒ¢áƒ¨áƒ˜." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "თáƒáƒ áƒ˜áƒ¦áƒ˜ (დრáƒáƒ¡áƒ—áƒáƒœ ერთáƒáƒ“)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "ეს მნიშვნელáƒáƒ‘რუნდრიყáƒáƒ¡ áƒáƒ—áƒáƒ‘ითი რიცხვი." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "áƒáƒ—áƒáƒ‘ითი რიცხვი" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ელ. ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ი" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "გზრფáƒáƒ˜áƒšáƒ˜áƒ¡áƒáƒ™áƒ”ნ" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "მნიშვნელáƒáƒ‘რუნდრიყáƒáƒ¡ ნáƒáƒ¢áƒ£áƒ áƒáƒšáƒ£áƒ áƒ˜ რიცხვი" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "რიცხვი მცáƒáƒªáƒáƒ•áƒ˜ წერტილით" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "დიდი მთელი (8-ბáƒáƒ˜áƒ¢áƒ˜áƒáƒœáƒ˜)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP-მისáƒáƒ›áƒáƒ áƒ—ი" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "ეს მნიშვნელáƒáƒ‘რუნდრიყáƒáƒ¡ None, True áƒáƒœ False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "ლáƒáƒ’იკური (True, False áƒáƒœ None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ტექსტი" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "დრáƒ" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ დრრHH:MM ფáƒáƒ áƒ›áƒáƒ¢áƒ¨áƒ˜." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML ტექსტი" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "მáƒáƒ“ელი %(model)s პირველáƒáƒ“ი გáƒáƒ¡áƒáƒ¦áƒ”ბით %(pk)r áƒáƒ  áƒáƒ áƒ¡áƒ”ბáƒáƒ‘ს." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "გáƒáƒ áƒ” გáƒáƒ¡áƒáƒ¦áƒ”ბი (ტიპი გáƒáƒœáƒ˜áƒ¡áƒáƒ–ღვრებრდáƒáƒ™áƒáƒ•áƒ¨áƒ˜áƒ áƒ”ბული ველის ტიპით)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "კáƒáƒ•áƒ¨áƒ˜áƒ áƒ˜ ერთი-ერთტáƒáƒœ" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "კáƒáƒ•áƒ¨áƒ˜áƒ áƒ˜ მრáƒáƒ•áƒáƒšáƒ˜-მრáƒáƒ•áƒáƒšáƒ—áƒáƒœ" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"დáƒáƒáƒ­áƒ˜áƒ áƒ”თ \"Control\", áƒáƒœ \"Command\" Mac-ზე, ერთზე მეტი მნიშვნელáƒáƒ‘ის " -"áƒáƒ¡áƒáƒ áƒ©áƒ”ვáƒáƒ“." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "ეს ველი áƒáƒ£áƒªáƒ˜áƒšáƒ”ბელიáƒ." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "შეიყვáƒáƒœáƒ”თ მთელი რიცხვი" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "შეიყვáƒáƒœáƒ”თ რიცხვი." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "დáƒáƒ áƒ¬áƒ›áƒ£áƒœáƒ“ით, რáƒáƒ› მნიშვნელáƒáƒ‘რ%s თáƒáƒœáƒ áƒ˜áƒ’ს áƒáƒ  áƒáƒ¦áƒ”მáƒáƒ¢áƒ”ბáƒ." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "დáƒáƒ áƒ¬áƒ›áƒ£áƒœáƒ“ით, რáƒáƒ› წილáƒáƒ“ი ნáƒáƒ¬áƒ˜áƒšáƒ˜ %s თáƒáƒœáƒ áƒ˜áƒ’ს áƒáƒ  áƒáƒ¦áƒ”მáƒáƒ¢áƒ”ბáƒ." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "დáƒáƒ áƒ¬áƒ›áƒ£áƒœáƒ“ით, რáƒáƒ› მთელი ნáƒáƒ¬áƒ˜áƒšáƒ˜ %s თáƒáƒœáƒ áƒ˜áƒ’ს áƒáƒ  áƒáƒ¦áƒ”მáƒáƒ¢áƒ”ბáƒ." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ თáƒáƒ áƒ˜áƒ¦áƒ˜." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ დრáƒ." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "შეიყვáƒáƒœáƒ”თ სწáƒáƒ áƒ˜ თáƒáƒ áƒ˜áƒ¦áƒ˜ დრდრáƒ." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"ფáƒáƒ˜áƒšáƒ˜ áƒáƒ  იყრგáƒáƒ›áƒáƒ’ზáƒáƒ•áƒœáƒ˜áƒšáƒ˜. შეáƒáƒ›áƒáƒ¬áƒ›áƒ”თ კáƒáƒ“ირების ტიპი მáƒáƒªáƒ”მული ფáƒáƒ áƒ›áƒ˜áƒ¡áƒáƒ—ვის." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "ფáƒáƒ˜áƒšáƒ˜ áƒáƒ  იყრგáƒáƒ›áƒáƒ’ზáƒáƒ•áƒœáƒ˜áƒšáƒ˜." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "გáƒáƒ›áƒáƒ’ზáƒáƒ•áƒœáƒ˜áƒšáƒ˜ ფáƒáƒ˜áƒšáƒ˜ ცáƒáƒ áƒ˜áƒ”ლიáƒ." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"ფáƒáƒ˜áƒšáƒ˜áƒ¡ სáƒáƒ®áƒ”ლი უნდრშედგებáƒáƒ“ეს áƒáƒ áƒáƒ£áƒ›áƒ”ტეს %(max)d სიმბáƒáƒšáƒáƒ¡áƒáƒ’áƒáƒœ (იგი შეიცáƒáƒ•áƒ¡ %" -"(length)d-ს)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "áƒáƒœ გáƒáƒ›áƒáƒ’ზáƒáƒ•áƒœáƒ”თ ფáƒáƒ˜áƒšáƒ˜, áƒáƒœ მáƒáƒœáƒ˜áƒ¨áƒœáƒ”თ \"წáƒáƒ¨áƒšáƒ˜áƒ¡\" დრáƒáƒ¨áƒ." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"áƒáƒ¢áƒ•áƒ˜áƒ áƒ—ეთ დáƒáƒ¡áƒáƒ¨áƒ•áƒ”ბი გáƒáƒ›áƒáƒ¡áƒáƒ®áƒ£áƒšáƒ”ბáƒ. თქვენს მიერ გáƒáƒ›áƒáƒ’ზáƒáƒ•áƒœáƒ˜áƒšáƒ˜ ფáƒáƒ˜áƒšáƒ˜ áƒáƒœ áƒáƒ  áƒáƒ áƒ˜áƒ¡ " -"გáƒáƒ›áƒáƒ¡áƒáƒ®áƒ£áƒšáƒ”ბáƒ, áƒáƒœ დáƒáƒ–იáƒáƒœáƒ”ბულიáƒ." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ დáƒáƒ¡áƒáƒ¨áƒ•áƒ”ბი მნიშვნელáƒáƒ‘áƒ. %(value)s დáƒáƒ¡áƒáƒ¨áƒ•áƒ”ბი áƒáƒ  áƒáƒ áƒ˜áƒ¡." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "შეიყვáƒáƒœáƒ”თ მნიშვნელáƒáƒ‘ების სიáƒ." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "დáƒáƒšáƒáƒ’ებáƒ" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "წáƒáƒ•áƒ¨áƒáƒšáƒáƒ—" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "გთხáƒáƒ•áƒ—, შეáƒáƒ¡áƒ¬áƒáƒ áƒáƒ— დუბლირებული მáƒáƒœáƒáƒªáƒ”მები %(field)s-თვის." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"გთხáƒáƒ•áƒ—, შეáƒáƒ¡áƒ¬áƒáƒ áƒáƒ— დუბლირებული მნიშვნელáƒáƒ‘რ%(field)s ველისთვის, რáƒáƒ›áƒ”ლიც უნდრ" -"იყáƒáƒ¡ უნიკáƒáƒšáƒ£áƒ áƒ˜." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"გთხáƒáƒ•áƒ—, შეáƒáƒ¡áƒ¬áƒáƒ áƒáƒ— დუბლირებული მნიშვნელáƒáƒ‘რ%(field_name)s ველისთვის, რáƒáƒ›áƒ”ლიც " -"უნდრიყáƒáƒ¡ უნიკáƒáƒšáƒ£áƒ áƒ˜ %(lookup)s-ზე, %(date_field)s-თვის." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "გთხáƒáƒ•áƒ—, შეáƒáƒ¡áƒ¬áƒáƒ áƒáƒ— დუბლირებული მნიშვნელáƒáƒ‘ები." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "გáƒáƒ áƒ” გáƒáƒ¡áƒáƒ¦áƒ”ბის მნიშვნელáƒáƒ‘რმშáƒáƒ‘ლის პირველáƒáƒ“ გáƒáƒ¡áƒáƒ¦áƒ”ბს áƒáƒ  ემთხვევáƒ." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ დáƒáƒ¡áƒáƒ¨áƒ•áƒ”ბი მნიშვნელáƒáƒ‘áƒ. ეს áƒáƒ áƒ©áƒ”ვáƒáƒœáƒ˜ დáƒáƒ¡áƒáƒ¨áƒ•áƒ”ბი áƒáƒ  áƒáƒ áƒ˜áƒ¡." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ დáƒáƒ¡áƒáƒ¨áƒ•áƒ”ბი მნიშვნელáƒáƒ‘áƒ. %s დáƒáƒ¡áƒáƒ¨áƒ•áƒ”ბი áƒáƒ  áƒáƒ áƒ˜áƒ¡." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" áƒáƒ  áƒáƒ áƒ˜áƒ¡ დáƒáƒ¡áƒáƒ¨áƒ•áƒ”ბი მნიშვნელáƒáƒ‘რპირველáƒáƒ“ი გáƒáƒ¡áƒáƒ¦áƒ”ბისáƒáƒ—ვის." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "áƒáƒ›áƒŸáƒáƒ›áƒáƒ“" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "შეცვლáƒ" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "წáƒáƒ¨áƒšáƒ" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "გáƒáƒ£áƒ áƒ™áƒ•áƒ”ველი" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "კი" - -#: forms/widgets.py:548 -msgid "No" -msgstr "áƒáƒ áƒ" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "კი,áƒáƒ áƒ,შესáƒáƒ«áƒšáƒáƒ" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d ბáƒáƒ˜áƒ¢áƒ˜" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s კბ" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s მბ" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s გბ" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s ტბ" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s პბ" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "შუáƒáƒ¦áƒáƒ›áƒ”" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "შუáƒáƒ“ღე" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "áƒáƒ áƒ¨áƒáƒ‘áƒáƒ—ი" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "სáƒáƒ›áƒ¨áƒáƒ‘áƒáƒ—ი" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "áƒáƒ—ხშáƒáƒ‘áƒáƒ—ი" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "ხუთშáƒáƒ‘áƒáƒ—ი" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "პáƒáƒ áƒáƒ¡áƒ™áƒ”ვი" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "შáƒáƒ‘áƒáƒ—ი" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "კვირáƒ" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "áƒáƒ áƒ¨" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "სáƒáƒ›" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "áƒáƒ—ხ" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "ხუთ" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "პáƒáƒ " - -#: utils/dates.py:11 -msgid "Sat" -msgstr "შáƒáƒ‘" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "კვრ" - -#: utils/dates.py:18 -msgid "January" -msgstr "იáƒáƒœáƒ•áƒáƒ áƒ˜" - -#: utils/dates.py:18 -msgid "February" -msgstr "თებერვáƒáƒšáƒ˜" - -#: utils/dates.py:18 -msgid "March" -msgstr "მáƒáƒ áƒ¢áƒ˜" - -#: utils/dates.py:18 -msgid "April" -msgstr "áƒáƒžáƒ áƒ˜áƒšáƒ˜" - -#: utils/dates.py:18 -msgid "May" -msgstr "მáƒáƒ˜áƒ¡áƒ˜" - -#: utils/dates.py:18 -msgid "June" -msgstr "ივნისი" - -#: utils/dates.py:19 -msgid "July" -msgstr "ივლისი" - -#: utils/dates.py:19 -msgid "August" -msgstr "áƒáƒ’ვისტáƒ" - -#: utils/dates.py:19 -msgid "September" -msgstr "სექტემბერი" - -#: utils/dates.py:19 -msgid "October" -msgstr "áƒáƒ¥áƒ¢áƒáƒ›áƒ‘ერი" - -#: utils/dates.py:19 -msgid "November" -msgstr "ნáƒáƒ”მბერი" - -#: utils/dates.py:20 -msgid "December" -msgstr "დეკემბერი" - -#: utils/dates.py:23 -msgid "jan" -msgstr "იáƒáƒœ" - -#: utils/dates.py:23 -msgid "feb" -msgstr "თებ" - -#: utils/dates.py:23 -msgid "mar" -msgstr "მáƒáƒ " - -#: utils/dates.py:23 -msgid "apr" -msgstr "áƒáƒžáƒ " - -#: utils/dates.py:23 -msgid "may" -msgstr "მáƒáƒ˜" - -#: utils/dates.py:23 -msgid "jun" -msgstr "ივნ" - -#: utils/dates.py:24 -msgid "jul" -msgstr "ივლ" - -#: utils/dates.py:24 -msgid "aug" -msgstr "áƒáƒ’ვ" - -#: utils/dates.py:24 -msgid "sep" -msgstr "სექ" - -#: utils/dates.py:24 -msgid "oct" -msgstr "áƒáƒ¥áƒ¢" - -#: utils/dates.py:24 -msgid "nov" -msgstr "ნáƒáƒ”" - -#: utils/dates.py:24 -msgid "dec" -msgstr "დეკ" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "იáƒáƒœ." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "თებ." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "მáƒáƒ ." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "áƒáƒžáƒ ." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "მáƒáƒ˜" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "ივნ." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "ივლ." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "áƒáƒ’ვ." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "სექტ." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "áƒáƒ¥áƒ¢." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "ნáƒáƒ”მ." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "დეკ." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "იáƒáƒœáƒ•áƒáƒ áƒ˜" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "თებერვáƒáƒšáƒ˜" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "მáƒáƒ áƒ¢áƒ˜" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "áƒáƒžáƒ áƒ˜áƒšáƒ˜" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "მáƒáƒ˜áƒ¡áƒ˜" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "ივნისი" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "ივლისი" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "áƒáƒ’ვისტáƒ" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "სექტემბერი" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "áƒáƒ¥áƒ¢áƒáƒ›áƒ‘ერი" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "ნáƒáƒ”მბერი" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "დეკემბერი" - -#: utils/text.py:136 -msgid "or" -msgstr "áƒáƒœ" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "წელი" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "თვე" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "კვირáƒ" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "დღე" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "სáƒáƒáƒ—ი" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "წუთი" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "წუთი" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "d.m.Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "d.m.Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "d.m.Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "d.m.Y" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s წáƒáƒ áƒ›áƒáƒ¢áƒ”ბით შეიქმნáƒ." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s წáƒáƒ áƒ›áƒáƒ¢áƒ”ბით შეიცვáƒáƒšáƒ." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s წáƒáƒ˜áƒ¨áƒáƒšáƒ." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/ka/__init__.py b/lib/python2.7/site-packages/django/conf/locale/ka/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/ka/formats.py b/lib/python2.7/site-packages/django/conf/locale/ka/formats.py deleted file mode 100644 index 5117e4aa0..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ka/formats.py +++ /dev/null @@ -1,47 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'l, j F, Y' -TIME_FORMAT = 'h:i:s a' -DATETIME_FORMAT = 'j F, Y h:i:s a' -YEAR_MONTH_FORMAT = 'F, Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j.M.Y' -SHORT_DATETIME_FORMAT = 'j.M.Y H:i:s' -FIRST_DAY_OF_WEEK = 1 # (Monday) - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' - # '%d %b %Y', '%d %b, %Y', '%d %b. %Y', # '25 Oct 2006', '25 Oct, 2006', '25 Oct. 2006' - # '%d %B %Y', '%d %B, %Y', # '25 October 2006', '25 October, 2006' - # '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%d.%m.%y %H:%M:%S', # '25.10.06 14:30:59' - '%d.%m.%y %H:%M', # '25.10.06 14:30' - '%d.%m.%y', # '25.10.06' - '%m/%d/%Y %H:%M:%S', # '10/25/2006 14:30:59' - '%m/%d/%Y %H:%M', # '10/25/2006 14:30' - '%m/%d/%Y', # '10/25/2006' - '%m/%d/%y %H:%M:%S', # '10/25/06 14:30:59' - '%m/%d/%y %H:%M', # '10/25/06 14:30' - '%m/%d/%y', # '10/25/06' -) -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = " " -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo deleted file mode 100644 index a743415e2..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/km/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/km/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/km/LC_MESSAGES/django.po deleted file mode 100644 index 601e8f8e5..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/km/LC_MESSAGES/django.po +++ /dev/null @@ -1,1119 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: km\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ភាសាអារ៉ាប់" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "ភាសាបáŸáž¡áž¶ážšáž»ážŸáŸ’ស" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ភាសាឆáŸáž€" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "ភាសាអ៊ុយក្រែន" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "ភាសាដាណឺម៉ាក" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "ភាសាអាល្លឺម៉ង់" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "ភាសាហ្កែលិគ" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ភាសាអង់គ្លáŸážŸ" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ភាសាអáŸážŸáŸ’ប៉ាញ" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ភាសាហ្វាំងឡង់" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "ភាសាបារាំង" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "ភាសាហ្កែលិគ" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ភាសាហáŸáž”្រិ" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ភាសាហុងគ្រី" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "ភាសាអ៉ីស្លង់" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ភាសាអ៊ីážáž¶áž›áž¸" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ភាសាជប៉ុន" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "ភាសាហ្វាំងឡង់" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "ភាសានáŸážšážœáŸ‚ស" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "ភាសារូម៉ានី" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "ភាសាรัរូស្ស៉ី" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "ភាសាស្លូវ៉ាគី" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "ភាសាស្លូវ៉ានី" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "ភាសាស៊ុយអែដ" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "ភាសាážáž¶áž˜áž¸áž›" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "ភាសាទួរគី" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ភាសាអ៊ុយក្រែន" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "ភាសាចិនសាមញ្ញ" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "ភាសាចិនបុរាណ" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "សូមបំពáŸáž‰áž¢áŸŠáž¸áž˜áŸ‚áž›" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "បំពáŸáž‰ážáŸ‚áž›áŸážáž áž¾áž™áž•áŸ’ážáž¶áž…់ចáŸáž‰áž–ីគ្នាដោយសញ្ញាក្បៀស។" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "áž“áž·áž„" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "ចាំបាច់បំពáŸáž‰áž‘ិន្ននáŸáž™áž€áž“្លែងនáŸáŸ‡áŸ”" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "ចំនួនពិáž(Integer)" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "ážáŸ†áž›áŸƒáž“áŸáŸ‡ážáŸ’រូវážáŸ‚ជាចំនួនលáŸážáŸ”" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "ážáŸ†áž›áŸƒáž¢áž¶áž…ជា True ឬ False។" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (អាច​ជា True រឺ False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "ចំនួនពិáž(Integer) ដែលផ្ážáž¶áž…់ចáŸáž‰áž–ីគ្នាដោយ​ក្បៀស" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "កាល​បរិច្ឆáŸáž‘ (Date) (មិនមានសរសáŸážšáž˜áŸ‰áŸ„áž„)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "សូមបំពáŸáž‰áž€áž¶áž›áž”រិច្ឆáŸáž‘ក្នុងទំរង់ជា YYYY-MM-DD ។" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "កាល​បរិច្ឆáŸáž‘ (Date) (មានសរសáŸážšáž˜áŸ‰áŸ„áž„)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "ចំនួនទសភាគ (Decimal)" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "អ៊ីម៉ែល" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "ផ្លូវទៅកាន់ឯកសារ" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "áž›áŸážÂ IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (អាចជា True​ រឺ False រឺ None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "អážáŸ’ážáž”áž‘" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "áž–áŸáž›ážœáŸáž›áž¶" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "អាសáŸáž™ážŠáŸ’ឋានគáŸáž áž‘ំពáŸážš(URL)" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "អážáŸ’ážáž”ទ XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"សូមចុចប៉ូážáž»áž“ \"Control\", ឬ \"Command\" ចំពោះកុំព្យូទáŸážš Mac, ដើម្បីជ្រើសរើសច្រើនជាងមួយ។" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "ចាំបាច់បំពáŸáž‰áž‘ិន្ននáŸáž™áž€áž“្លែងនáŸáŸ‡áŸ”" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "បំពáŸáž‰áž…ំនួនទាំងអស់។" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "មិនមានឯកសារážáŸ’រូវបានជ្រើសរើស។ សូមពិនិážáŸ’យប្រភáŸáž‘ឯកសារម្ážáž„ទៀážáŸ”" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "ពុំមានឯកសារ។​" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "រូបភាពដែលទាញយកមិនážáŸ’រឹមážáŸ’រូវ ប្រហែលជាមិនមែនជារូបភាព ឬកáŸáž‡áž¶Â ážšáž¼áž”ភាពážáž¼áž…។" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "លប់" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "ផ្លាស់ប្ážáž¼ážš" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "មិន​ដឹង" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "យល់ព្រម" - -#: forms/widgets.py:548 -msgid "No" -msgstr "មិនយល់ព្រម" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "យល់ព្រម មិនយល់ព្រម​ ប្រហែល" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "áž…áŸáž“្ទ" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "អង្គារ" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "ពុធ" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "ព្រហស្បážáž·áŸ" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "សុក្រ" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "សៅរáŸ" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "អាទិážáŸ’áž™" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "" - -#: utils/dates.py:18 -msgid "January" -msgstr "មករា" - -#: utils/dates.py:18 -msgid "February" -msgstr "កុម្ភៈ" - -#: utils/dates.py:18 -msgid "March" -msgstr "មិនា" - -#: utils/dates.py:18 -msgid "April" -msgstr "មáŸážŸáž¶" - -#: utils/dates.py:18 -msgid "May" -msgstr "ឧសភា" - -#: utils/dates.py:18 -msgid "June" -msgstr "មិážáž»áž“ា" - -#: utils/dates.py:19 -msgid "July" -msgstr "កក្កដា" - -#: utils/dates.py:19 -msgid "August" -msgstr "សីហា" - -#: utils/dates.py:19 -msgid "September" -msgstr "កញ្ញា" - -#: utils/dates.py:19 -msgid "October" -msgstr "ážáž»áž›áž¶" - -#: utils/dates.py:19 -msgid "November" -msgstr "វិច្ឆិកា" - -#: utils/dates.py:20 -msgid "December" -msgstr "ធ្នូ" - -#: utils/dates.py:23 -msgid "jan" -msgstr "មករា" - -#: utils/dates.py:23 -msgid "feb" -msgstr "កុម្ភះ" - -#: utils/dates.py:23 -msgid "mar" -msgstr "មិនា" - -#: utils/dates.py:23 -msgid "apr" -msgstr "មáŸážŸáž¶" - -#: utils/dates.py:23 -msgid "may" -msgstr "ឧសភា" - -#: utils/dates.py:23 -msgid "jun" -msgstr "មិážáž»áž“ា" - -#: utils/dates.py:24 -msgid "jul" -msgstr "កក្កដា" - -#: utils/dates.py:24 -msgid "aug" -msgstr "សីហា" - -#: utils/dates.py:24 -msgid "sep" -msgstr "កញ្ញា" - -#: utils/dates.py:24 -msgid "oct" -msgstr "ážáž»áž›áž¶" - -#: utils/dates.py:24 -msgid "nov" -msgstr "វិច្ឆិកា" - -#: utils/dates.py:24 -msgid "dec" -msgstr "ធ្នូ" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "" - -#: utils/text.py:136 -msgid "or" -msgstr "" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "ឆ្នាំ" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "ážáŸ‚" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "សប្ážáž¶áž áŸ" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "ážáŸ’ងៃ" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "ម៉ោង" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "នាទី" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr "" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "ážáŸ’ងៃទី j ​ážáŸ‚ N ឆ្នាំ Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "ážáŸ’ងៃទី j ​ážáŸ‚ N ឆ្នាំ Y ម៉ោង P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "ម៉ោង P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "ážáŸ‚ F ឆ្នាំ Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "ážáŸ’ងៃទី​​ j ážáŸ‚ F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "The %(verbose_name)s បានផ្លាស់ប្ážáž¼ážšážŠáŸ„យជោគជáŸáž™áŸ”" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "The %(verbose_name)s​ បានលប់។ " - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/km/__init__.py b/lib/python2.7/site-packages/django/conf/locale/km/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/km/formats.py b/lib/python2.7/site-packages/django/conf/locale/km/formats.py deleted file mode 100644 index 70afa27c1..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/km/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j ážáŸ‚ F ឆ្នាំ Y' -TIME_FORMAT = 'G:i:s' -DATETIME_FORMAT = 'j ážáŸ‚ F ឆ្នាំ Y, G:i:s' -# YEAR_MONTH_FORMAT = -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j M Y' -SHORT_DATETIME_FORMAT = 'j M Y, G:i:s' -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/kn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/kn/LC_MESSAGES/django.mo deleted file mode 100644 index 3a6cb0ff6..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/kn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po deleted file mode 100644 index 96231e355..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/kn/LC_MESSAGES/django.po +++ /dev/null @@ -1,1122 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-05 19:14+0000\n" -"Last-Translator: ramkrsna \n" -"Language-Team: Kannada \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kn\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ಅರೇಬಿಕà³" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "ಆಜೆರà³à²¬à³ˆà²œà²¨à²¿" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "ಬಲà³à²—ರಿಯನà³" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "ಬೆಂಗಾಲಿ" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "ಬೋಸà³à²¨à²¿à²¯à²¨à³" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "ಕà³à²¯à²¾à²Ÿà²²à²¨à³" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "à²à³†à²•à³" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "ವೆಲà³à²·à³" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "ಡà³à²¯à²¾à²¨à²¿à²·à³" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "ಜರà³à²®à²¨à³" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "ಗà³à²°à³€à²•à³" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ಇಂಗà³à²²à²¿à²·à³" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "ಬà³à²°à²¿à²Ÿà²¿à²¶à³ ಇಂಗà³à²²à²¿à²·à³" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ಸà³à²ªà³à²¯à²¾à²¨à²¿à²·à³" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "ಅರà³à²—ೆನà³à²¤à²¿à²¨ ಸà³à²ªà²¾à²¨à²¿à²·à³" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "ಮೆಕà³à²¸à²¿à²•à²¨à³ ಸà³à²ªà²¾à²¨à²¿à²·à³" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "ಎಷà³à²Ÿà³‹à²¨à²¿à²¯à²¾à²¨à³" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "ಬಾಸà³à²•à³†" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "ಪೆರà³à²¸à²¿à²¯à²¨à³" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ಫಿನà³à²¨à²¿à²¶à³" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "ಫà³à²°à³†à²‚ಚà³" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "ಫರಿಸಿಯನà³" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ಇರಿಶà³" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "ಗà³à²¯à²¾à²²à²¿à²¶à²¿à²¯à²¨à³" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ಹೀಬà³à²°à³‚" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "ಹಿಂದಿ" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "ಕà³à²°à³Šà²¯à³‡à²¸à²¿à²¯à²¨à³" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ಹಂಗೇರಿಯನà³" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "ಇಂಡೋನೆಸಿಯನೠ" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "à²à²¸à³â€à²²à³à²¯à²¾à²‚ಡಿಕà³" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ಇಟಾಲಿಯನà³" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ಜಪಾನೀಸà³" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "ಜಾರà³à²œà³†à²¯à²¾à²¨à³ " - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "ಕನà³à²¨à²¡" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "ಕೊರಿಯನà³" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "ಲಿತà³à²Žà²¨à²¿à²¯à²¾à²¨à³ " - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "ಲತà³à²µà²¿à²¯à²¨à³" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "ಮಸಡೊನಿಯನà³" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "ಮಲಯಾಳಂ" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "ಮೊಂಗೊಲಿಯನà³" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "ಡಚà³" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "ನಾರà³à²µà³‡à²œà²¿à²¯à²¨à³" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "ಪಂಜಾಬಿ" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "ಪೋಲಿಷà³" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "ಪೋರà³à²¤à³à²—ೀಸೆ" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "ಬà³à²°à³à²°à²œà³€à²²à²¿à²…ನೠಪೋರà³à²¤à³à²—ೀಸೆ" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "ರೋಮೇನಿಯನà³" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "ರಶಿಯನà³" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "ಸà³à²²à³‹à²µà²¾à²•à³" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "ಸà³à²²à³‹à²µà³‡à²¨à²¿à²¯à²¨à³" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "ಅಲà³à²¬à³†à²¨à²¿à²…ನೠ" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "ಸೆರà³à²¬à²¿à²¯à²¨à³" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "ಸೆರà³à²¬à²¿à²¯à²¨à³ ಲಟಿನà³" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "ಸà³à²µà³€à²¡à²¿à²·à³" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "ತಮಿಳà³" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "ತೆಲà³à²—à³" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "ತಯೀ" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "ಟರà³à²•à²¿à²¶à³" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ಯà³à²•à³à²°à³‡à²¨à²¿à²¯à²¨à³" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "ಉರà³à²¦à³" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "ವಿಎತà³à²¨à²‚ಮಿಸಿ" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "ಸರಳೀಕೃತ ಚೈನೀಸà³" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "ಸಂಪà³à²°à²¦à²¾à²¯à²¿à²• ಚೈನೀಸೠ" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "ಕà³à²°à²®à²¬à²¦à³à²§ ಮೌಲà³à²¯ ಬರೆಯಿರಿ" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "ಕà³à²°à²®à²¬à²¦à³à²§ ವಿ-ವಿಳಾಸವೊಂದನà³à²¨à³ ಇಲà³à²²à²¿ ಬರೆಯಿರಿ" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "ಅಲà³à²ªà²µà²¿à²°à²¾à²®(,)ಗಳಿಂದ ಬೇರà³à²ªà²Ÿà³à²Ÿ ಅಂಕೆಗಳನà³à²¨à³ ಮಾತà³à²° ಬರೆಯಿರಿ." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ಮತà³à²¤à³" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "ಈ ಅಂಶವನà³à²¨à³ ಖಾಲಿ ಬಿಡà³à²µà²‚ತಿಲà³à²²." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "ಸಂಖà³à²¯à³†" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "ಈ ಬೆಲೆಯೠಪೂರà³à²£ ಸಂಖà³à²¯à³† ಇರಬೇಕà³." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "ಈ ಬೆಲೆಯೠಹೌದೠಅಥವಾ ಇಲà³à²² ಇರಬೇಕà³." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "ಬೂಲಿಯನà³( ನಿಜ ಅಥವಾ ಸà³à²³à³à²³à³)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "ಅಲà³à²ªà²µà²¿à²°à²¾à²®(,) ದಿಂದ ಬೇರà³à²ªà²Ÿà³à²Ÿ ಸಂಖà³à²¯à³†à²—ಳà³" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "ದಿನಾಂಕ (ಸಮಯರಹಿತ)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "ಸರಿಯಾದ ದಿನಾಂಕವನà³à²¨à³ ವವವವ-ತಿತಿ-ದಿದಿ ರೀತಿಗೆ ಹೊಂದà³à²µà²‚ತೆ ಸೂಚಿಸಿರಿ." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "ದಿನಾಂಕ(ಸಮಯದೊಂದಿಗೆ)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "ಕೊಟà³à²Ÿ ಸಂಖà³à²¯à³† ದಶಾಂಶದ ಕà³à²°à²®à²¦à²²à³à²²à²¿ ಇರ ಬೇಕà³" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "ದಶಮಾನ ಸಂಖà³à²¯à³†" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ವಿ-ಅಂಚೆ ವಿಳಾಸ" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "ಕಡತದ ಸà³à²¥à²¾à²¨à²ªà²¥" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "ಕೊಟà³à²Ÿ ಸಂಖà³à²¯à³† ಫà³à²²à³‹à²Ÿà³ ಕà³à²°à²®à²¦à²²à³à²²à²¿ ಇರ ಬೇಕೠ" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "ಬೃಹತೠ(à³® byte) ಇಡೀ ಅಂಕೆ " - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP ವಿಳಾಸ" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "ಕೊಟà³à²Ÿ ಮಹತà³à²µ ನಿಜ ಅಥವಾ ಸà³à²³à³à²³à³ ಅಥವಾ ಯಾವà³à²¦à³‚ ಅಲà³à²² ಕà³à²°à²®à²¦à²²à³à²²à²¿ ಇರ ಬೇಕೠ" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "ಬೂಲಿಯನà³( ನಿಜ ಅಥವಾ ಸà³à²³à³à²³à³ ಅಥವಾ ಯಾವà³à²¦à³‚ ಅಲà³à²²)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ಪಠà³à²¯" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "ಸಮಯ" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML ಪಠà³à²¯" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"ಒಂದಕà³à²•à²¿à²‚ತ ಹೆಚà³à²šà²¨à³à²¨à³ ಆಯà³à²¦à³à²•à³Šà²³à³à²³à²²à³ ಮà³à²¯à²¾à²•à³ ಗಣಕದ ಮೇಲೆ \"ಕಂಟà³à²°à³‹à²²à³\", ಅಥವಾ \"ಕಮà³à²¯à²¾à²‚ಡà³\" ಅನà³à²¨à³ " -"ಒತà³à²¤à²¿ ಹಿಡಿಯಿರಿ." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "ಈ ಅಂಶ ಅಗತà³à²¯." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "ಪೂರà³à²£à²¾à²‚ಕವೊಂದನà³à²¨à³ ಬರೆಯಿರಿ" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "ಸಂಖà³à²¯à³†à²¯à²¨à³à²¨à³ ಬರೆಯಿರಿ " - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "ಸರಿಯಾದ ದಿನಾಂಕ ಬರೆಯಿರಿ" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "ಸರಿಯಾದ ಸಮಯ ಬರೆಯಿರಿ" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "ಸರಿಯಾದ ದಿನಾಂಕ/ವೇಳೆ ಬರೆಯಿರಿ" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "ಯಾವದೇ ಕಡತವನà³à²¨à³‚ ಸಲà³à²²à²¿à²¸à²²à²¾à²—ಿಲà³à²².ನಮೂನೆಯ ಮೇಲಿನ ಸಂಕೇತೀಕರಣ ಬಗೆಯನà³à²¨à³ ಪರೀಕà³à²·à²¿à²¸à²¿." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "ಯಾವದೇ ಕಡತವನà³à²¨à³‚ ಸಲà³à²²à²¿à²¸à²²à²¾à²—ಿ" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "ಸಲà³à²²à²¿à²¸à²²à²¾à²¦ ಕಡತ ಖಾಲಿ ಇದೆ." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"ಸರಿಯಾದ ಚಿತà³à²°à²µà²¨à³à²¨à³ à²à²°à²¿à²¸à²¿. ನೀವೠà²à²°à²¿à²¸à²¿à²¦ ಕಡತವೠಚಿತà³à²°à²µà²²à³à²² ಅಥವಾ ಅದೠಕೆಟà³à²Ÿà³ ಹೋಗಿರà³à²µ " -"ಚಿತà³à²°. " - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "ರೀತಿ" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "ಅಳಿಸಿಹಾಕಿ" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "ಸಲà³à²µà²³à²¿" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "ಬದಲಿಸಿ/ಬದಲಾವಣೆ" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ಮà³à²•à³à²¤à²—ೊಳಿಸà³" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "ಗೊತà³à²¤à²¿à²²à³à²²(ದ/ದà³à²¦à³)" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "ಹೌದà³" - -#: forms/widgets.py:548 -msgid "No" -msgstr "ಇಲà³à²²" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ಹೌದà³,ಇಲà³à²²,ಇರಬಹà³à²¦à³" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s ಕೆಬಿ" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s ಯಂಬಿ " - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s ಜಿಬಿ" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s ಟಿಬಿ" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s ಪಿಬಿ" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "ಮಧà³à²¯à²°à²¾à²¤à³à²°à²¿" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "ಸರಿಹಗಳೠ" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "ಸೋಮವಾರ" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "ಮಂಗಳವಾರ" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "ಬà³à²§à²µà²¾à²°" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "ಗà³à²°à³à²µà²¾à²°" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "ಶà³à²•à³à²°à²µà²¾à²°" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "ಶನಿವಾರ" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "ರವಿವಾರ" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "ಸೋಮ" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "ಮಂಗಳ" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "ಬà³à²§" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "ಗà³à²°à³" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "ಶà³à²•à³à²°" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "ಶನಿ" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ರವಿ" - -#: utils/dates.py:18 -msgid "January" -msgstr "ಜನವರಿ" - -#: utils/dates.py:18 -msgid "February" -msgstr "ಫೆಬà³à²°à³à²µà²°à²¿" - -#: utils/dates.py:18 -msgid "March" -msgstr "ಮಾರà³à²šà³" - -#: utils/dates.py:18 -msgid "April" -msgstr "ಎಪà³à²°à²¿à²²à³" - -#: utils/dates.py:18 -msgid "May" -msgstr "ಮೇ" - -#: utils/dates.py:18 -msgid "June" -msgstr "ಜೂನà³" - -#: utils/dates.py:19 -msgid "July" -msgstr "ಜà³à²²à³ˆ" - -#: utils/dates.py:19 -msgid "August" -msgstr "ಆಗಸà³à²Ÿà³" - -#: utils/dates.py:19 -msgid "September" -msgstr "ಸೆಪà³à²Ÿà³†à²‚ಬರà³" - -#: utils/dates.py:19 -msgid "October" -msgstr "ಅಕà³à²Ÿà³‹à²¬à²°à³" - -#: utils/dates.py:19 -msgid "November" -msgstr "ನವೆಂಬರà³" - -#: utils/dates.py:20 -msgid "December" -msgstr "ಡಿಸೆಂಬರà³" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ಜನವರಿ" - -#: utils/dates.py:23 -msgid "feb" -msgstr "ಫೆಬà³à²°à²µà²°à²¿" - -#: utils/dates.py:23 -msgid "mar" -msgstr "ಮಾರà³à²šà³" - -#: utils/dates.py:23 -msgid "apr" -msgstr "à²à²ªà³à²°à²¿à²²à³" - -#: utils/dates.py:23 -msgid "may" -msgstr "ಮೇ" - -#: utils/dates.py:23 -msgid "jun" -msgstr "ಜೂನà³" - -#: utils/dates.py:24 -msgid "jul" -msgstr "ಜà³à²²à³ˆ" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ಆಗಸà³à²Ÿà³" - -#: utils/dates.py:24 -msgid "sep" -msgstr "ಸೆಪà³à²Ÿà³†à²‚ಬರà³" - -#: utils/dates.py:24 -msgid "oct" -msgstr "ಅಕà³à²Ÿà³‹à²¬à²°à³" - -#: utils/dates.py:24 -msgid "nov" -msgstr "ನವೆಂಬರà³" - -#: utils/dates.py:24 -msgid "dec" -msgstr "ಡಿಸೆಂಬರà³" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "ಜà³à²¯à²¨à³ " - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "ಪೇಬà³" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "ಮಾರà³à²šà³" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "à²à²ªà³à²°à²¿à²²à³" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "ಮೇ" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "ಜೂನà³" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "ಜà³à²²à³ˆ" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "ಆಗಸà³à²Ÿà³" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "ಸೆಪà³à²Ÿà³†" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "ಅಕà³à²Ÿà³‹à²¬à²°à³" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "ನವೆಂಬರà³" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "ಡಿಸೆಂಬರà³" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "" - -#: utils/text.py:136 -msgid "or" -msgstr "" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr "" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "N j, Y, P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr " %(verbose_name)s ಅನà³à²¨à³ ಯಶಸà³à²µà²¿à²¯à²¾à²—ಿ ನಿರà³à²®à²¿à²¸à²²à²¾à²¯à²¿à²¤à³." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr " %(verbose_name)s ಅನà³à²¨à³ ಯಶಸà³à²µà²¿à²¯à²¾à²—ಿ ಮಾರà³à²ªà²¡à²¿à²¸à²²à²¾à²¯à²¿à²¤à³." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr " %(verbose_name)s ಅನà³à²¨à³ ತೆಗೆದà³à²¹à²¾à²•à²²à²¾à²¯à²¿à²¤à³" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "ಅಸಿಂಧà³à²µà²¾à²¦ ಪà³à²Ÿ (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/kn/__init__.py b/lib/python2.7/site-packages/django/conf/locale/kn/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/kn/formats.py b/lib/python2.7/site-packages/django/conf/locale/kn/formats.py deleted file mode 100644 index 2af6f83a3..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/kn/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' -TIME_FORMAT = 'h:i:s A' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j M Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -# DECIMAL_SEPARATOR = -# THOUSAND_SEPARATOR = -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo deleted file mode 100644 index e20a20906..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ko/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po deleted file mode 100644 index ede8a919c..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ko/LC_MESSAGES/django.po +++ /dev/null @@ -1,1135 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-06 03:47+0000\n" -"Last-Translator: mixe \n" -"Language-Team: Korean \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ì•„ëžì–´" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "아제르바ì´ìž”ì–´" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "불가리어" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "방글ë¼ë°ì‹œì–´" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "보스니아어" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "카탈로니아어" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "체코어" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "웨ì¼ì¦ˆì–´" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "ë´ë§ˆí¬ì–´" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "ë…ì¼ì–´" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "그리스어" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ì˜ì–´" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "ì˜ì–´ (ì˜êµ­)" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "스페ì¸ì–´" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "아르헨티나 스페ì¸ì–´" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "멕시컨 스페ì¸ì–´" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "ì—스토니아어" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "바스í¬ì–´" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "페르시아어" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "핀란드어" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "프랑스어" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "프리슬란트어" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ì•„ì¼ëžœë“œì–´" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "갈리시아어" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "히브리어" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "힌ë‘ì–´" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "í¬ë¡œì•„í‹°ì•„ì–´" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "í—가리어" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "ì¸ë„네시아어" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "ì•„ì´ìŠ¬ëž€ë“œì–´" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ì´íƒˆë¦¬ì•„ì–´" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ì¼ë³¸ì–´" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "조지아어" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "í¬ë©”르어" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "칸나다어" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "한국어" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "리투아니아어" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "ë¼íŠ¸ë¹„ì•„ì–´" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "마케ë„니아어" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "ë§ë ˆì´ì§€ì•„ì–´" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "몽고어" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "네ëœëž€ë“œì–´" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "노르웨ì´ì–´" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "노르웨ì´ì–´ (ë³´í¬ëª°)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "노르웨ì´ì–´ (뉘노르스í¬)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "펀ìžë¸Œì–´" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "í´ëž€ë“œì–´" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "í¬ë¥´íˆ¬ê°ˆì–´" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "브ë¼ì§ˆ í¬ë¥´íˆ¬ê°ˆì–´" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "루마니아어" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "러시아어" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "슬로바키아어" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "슬로베니아어" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "알바니아어" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "세르비아어" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "세르비아어" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "스웨ë´ì–´" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "타밀어" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "텔루구어" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "태국어" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "터키어" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ìš°í¬ë¼ì´ë‚˜ì–´" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "우르드어" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "베트남어" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "중국어 ê°„ì²´" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "중국어 번체" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "올바른 ê°’ì„ ìž…ë ¥í•˜ì„¸ìš”." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "해당 URLì˜ ë§í¬ê°€ 잘못 ë˜ì–´ 있습니다." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "올바른 URLì„ ìž…ë ¥í•˜ì„¸ìš”." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "올바른 ì´ë©”ì¼ ì£¼ì†Œë¥¼ 입력하세요." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "문ìž, 숫ìž, '_', '-'만 가능합니다." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "올바른 IPv4 주소를 입력하세요." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "콤마로 êµ¬ë¶„ëœ ìˆ«ìžë§Œ 입력하세요." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"%(limit_value)s ì•ˆì˜ ê°’ì„ ìž…ë ¥í•´ 주세요. (입력하신 ê°’ì€ %(show_value)s입니" -"다.)" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "%(limit_value)s ì´í•˜ì˜ ê°’ì„ ìž…ë ¥í•´ 주세요." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "%(limit_value)s ì´ìƒì˜ ê°’ì„ ìž…ë ¥í•´ 주세요." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"%(limit_value)dê¸€ìž ì´ìƒ 입력해 주세요. (입력하신 ë‚´ìš©ì€ %(show_value)d글ìžìž…" -"니다.)" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"%(limit_value)dê¸€ìž ì´í•˜ë¡œ 입력해 주세요. (입력하신 ë‚´ìš©ì€ %(show_value)d글ìž" -"입니다)" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(field_name)s(ì€)는 반드시 %(date_field)s %(lookup)sì— ëŒ€í•´ 유ì¼í•´ì•¼ 합니다." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)sì˜ %(field_label)s(ì€)는 ì´ë¯¸ 존재합니다." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ë˜í•œ" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "%rì€ ì˜¬ë°”ë¥¸ ì„ íƒì‚¬í•­ì´ 아닙니다." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "ì´ í•„ë“œëŠ” null ê°’ì€ ì‚¬ìš©í•  수 없습니다. " - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "ì´ í•„ë“œëŠ” null ê°’ì€ ì‚¬ìš©í•  수 없습니다. " - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "%(field_type)s í˜•ì‹ í•„ë“œ" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "정수" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "정수 ê°’ì„ ì‚¬ìš©í•˜ì„¸ìš”." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "True ë˜ëŠ” False ê°’ì„ ì‚¬ìš©í•˜ì„¸ìš”." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "boolean(ì°¸ ë˜ëŠ” 거짓)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "문ìžì—´(%(max_length)s 글ìžê¹Œì§€)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "정수(콤마로 구분)" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "날짜(시간 제외)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "날짜는 YYYY-MM-DD 형ì‹ìœ¼ë¡œ 입력하세요." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "날짜가 부ì ì ˆí•©ë‹ˆë‹¤.: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "날짜/ì‹œê°ì„ YYYY-MM-DD HH:MM[:ss[.uuuuuu]] 형ì‹ìœ¼ë¡œ 입력하세요." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "날짜(시간 í¬í•¨)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "십진수 실수(decimal) ê°’ì„ ì‚¬ìš©í•˜ì„¸ìš”." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "10진수" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ì´ë©”ì¼ ì£¼ì†Œ" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "íŒŒì¼ ê²½ë¡œ" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "부ë™ì†Œìˆ˜ì  실수(float) ê°’ì„ ì‚¬ìš©í•´ 주세요." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "부ë™ì†Œìˆ˜ì  숫ìž" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "í° ì •ìˆ˜ (8 byte)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP 주소" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "None, True ë˜ëŠ” False ê°’ì„ ì‚¬ìš©í•˜ì„¸ìš”." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "boolean (ì°¸, 거짓 ë˜ëŠ” none)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "í…스트" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "ì‹œê°" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "ì‹œê°ì€ HH:MM[:ss[.uuuuuu]] 형ì‹ìœ¼ë¡œ 입력하세요." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML í…스트" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Primary key %(pk)rì— ëŒ€í•œ ëª¨ë¸ %(model)sê°€ 존재하지 않습니다." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "외래 키 (ì—°ê´€ í•„ë“œì— ì˜í•´ í˜•ì‹ ê²°ì •)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "ì¼ëŒ€ì¼ 관계" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "다대다 관계" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"복수 ì„ íƒ ì‹œì—는 \"Control\" 키를 누른 ìƒíƒœì—ì„œ ì„ íƒí•´ 주세요.(Macì€ " -"\"Command\" 키)" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "필수 항목입니다." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "정수를 입력하세요." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "숫ìžë¥¼ 입력하세요." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "ì „ì²´ ìžë¦¿ìˆ˜ê°€ %s 개를 넘지 ì•Šë„ë¡ í•´ì£¼ì„¸ìš”." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "ì „ì²´ 유효ìžë¦¬ 개수가 %s 개를 넘지 ì•Šë„ë¡ í•´ì£¼ì„¸ìš”." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "ì†Œìˆ«ì  ì•žì˜ ìžë¦¿ìˆ˜ê°€ %s 개를 넘지 ì•Šë„ë¡ í•´ì£¼ì„¸ìš”." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "올바른 날짜를 입력하세요." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "올바른 ì‹œê°ì„ 입력하세요." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "올바른 날짜/ì‹œê°ì„ 입력하세요." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "등ë¡ëœ 파ì¼ì´ 없습니다. ì¸ì½”딩 형ì‹ì„ 확ì¸í•˜ì„¸ìš”." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "파ì¼ì´ 전송ë˜ì§€ 않았습니다." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "입력하신 파ì¼ì€ 빈 파ì¼ìž…니다." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"íŒŒì¼ ì´ë¦„ì€ %(max)d ê¸€ìž ì´í•˜ë¡œ 입력해 주세요. (입력하신 ë‚´ìš©ì€ %(length)d ìž" -"입니다)" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "파ì¼ì„ 보내거나 취소 ì²´í¬ë°•ìŠ¤ë¥¼ ì²´í¬í•˜ì„¸ìš”. ë˜ëŠ” 둘다 비워ë‘세요." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"올바른 ì´ë¯¸ì§€ë¥¼ 업로드하세요. 업로드하신 파ì¼ì€ ì´ë¯¸ì§€ 파ì¼ì´ 아니거나 파ì¼" -"ì´ ê¹¨ì ¸ 있습니다." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "올바르게 ì„ íƒí•´ 주세요. %(value)s (ì´)ê°€ ì„ íƒê°€ëŠ¥í•­ëª©ì— 없습니다." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "리스트를 입력하세요." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "순서:" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "ì‚­ì œ" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "%(field)sì˜ ì¤‘ë³µëœ ë°ì´í„°ë¥¼ ê³ ì³ì£¼ì„¸ìš”." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "%(field)sì˜ ì¤‘ë³µëœ ë°ì´í„°ë¥¼ ê³ ì³ì£¼ì„¸ìš”. 유ì¼í•œ ê°’ì´ì–´ì•¼ 합니다." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"%(field_name)sì˜ ê°’ì€ %(date_field)sì˜ %(lookup)sì— ëŒ€í•´ 유ì¼í•´ì•¼ 합니다. 중" -"ë³µëœ ë°ì´í„°ë¥¼ ê³ ì³ì£¼ì„¸ìš”." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "ì•„ëž˜ì˜ ì¤‘ë³µëœ ê°’ë“¤ì„ ê³ ì³ì£¼ì„¸ìš”." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "부모 오브ì íŠ¸ì˜ primary key와 inline foreign keyê°€ 맞지 않습니다." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "올바르게 ì„ íƒí•´ 주세요. ì„ íƒí•˜ì‹  ê²ƒì´ ì„ íƒê°€ëŠ¥í•­ëª©ì— 없습니다." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "올바르게 ì„ íƒí•´ 주세요. %s (ì´)ê°€ ì„ íƒê°€ëŠ¥í•­ëª©ì— 없습니다." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\"ì€ primary keyë¡œ ì í•©í•˜ì§€ 않습니다." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "현재" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "변경" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "취소" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "ì•Œ 수 없습니다." - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "예" - -#: forms/widgets.py:548 -msgid "No" -msgstr "아니오" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "예,아니오,아마ë„" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d ë°”ì´íŠ¸" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "오후" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "오전" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "오후" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "오전" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "ìžì •" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "정오" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "월요ì¼" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "화요ì¼" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "수요ì¼" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "목요ì¼" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "금요ì¼" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "토요ì¼" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "ì¼ìš”ì¼" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "월요ì¼" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "화요ì¼" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "수요ì¼" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "목요ì¼" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "금요ì¼" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "토요ì¼" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ì¼ìš”ì¼" - -#: utils/dates.py:18 -msgid "January" -msgstr "1ì›”" - -#: utils/dates.py:18 -msgid "February" -msgstr "2ì›”" - -#: utils/dates.py:18 -msgid "March" -msgstr "3ì›”" - -#: utils/dates.py:18 -msgid "April" -msgstr "4ì›”" - -#: utils/dates.py:18 -msgid "May" -msgstr "5ì›”" - -#: utils/dates.py:18 -msgid "June" -msgstr "6ì›”" - -#: utils/dates.py:19 -msgid "July" -msgstr "7ì›”" - -#: utils/dates.py:19 -msgid "August" -msgstr "8ì›”" - -#: utils/dates.py:19 -msgid "September" -msgstr "9ì›”" - -#: utils/dates.py:19 -msgid "October" -msgstr "10ì›”" - -#: utils/dates.py:19 -msgid "November" -msgstr "11ì›”" - -#: utils/dates.py:20 -msgid "December" -msgstr "12ì›”" - -#: utils/dates.py:23 -msgid "jan" -msgstr "1ì›”" - -#: utils/dates.py:23 -msgid "feb" -msgstr "2ì›”" - -#: utils/dates.py:23 -msgid "mar" -msgstr "3ì›”" - -#: utils/dates.py:23 -msgid "apr" -msgstr "4ì›”" - -#: utils/dates.py:23 -msgid "may" -msgstr "5ì›”" - -#: utils/dates.py:23 -msgid "jun" -msgstr "6ì›”" - -#: utils/dates.py:24 -msgid "jul" -msgstr "7ì›”" - -#: utils/dates.py:24 -msgid "aug" -msgstr "8ì›”" - -#: utils/dates.py:24 -msgid "sep" -msgstr "9ì›”" - -#: utils/dates.py:24 -msgid "oct" -msgstr "10ì›”" - -#: utils/dates.py:24 -msgid "nov" -msgstr "11ì›”" - -#: utils/dates.py:24 -msgid "dec" -msgstr "12ì›”" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "1" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "2" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "3" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "4" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "5" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "6" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "7" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "8" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "9" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "10" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "11ì›”" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "12ì›”" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "1ì›”" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "2ì›”" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "3ì›”" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "4ì›”" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "5ì›”" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "6ì›”" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "7ì›”" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "8ì›”" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "9ì›”" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "10ì›”" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "11ì›”" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "12ì›”" - -#: utils/text.py:136 -msgid "or" -msgstr "ë˜ëŠ”" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "ë…„" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "개월" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "주" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "ì¼" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "시간" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "분" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "분" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d%(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d%(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "Yë…„ nì›” jì¼" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "Yë…„ nì›” jì¼ H:i:s" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i:s" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "Yë…„ nì›”" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "nì›” jì¼" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s(ì´)ê°€ ìƒì„±ë˜ì—ˆìŠµë‹ˆë‹¤." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s(ì´)ê°€ 수정ë˜ì—ˆìŠµë‹ˆë‹¤." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s(ì´)ê°€ ì‚­ì œë˜ì—ˆìŠµë‹ˆë‹¤." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "ë…„ë„ê°€ 없습니다." - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "ì›”ì´ ì—†ìŠµë‹ˆë‹¤." - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "날짜가 없습니다." - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "주가 없습니다." - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr " %(verbose_name_plural)s를 사용할 수 없습니다." - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Future 모듈 %(verbose_name_plural)sì„ ì‚¬ìš©í•  수 없습니다. %(class_name)s." -"allow_futureê°€ False 입니다." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "날짜 문ìžì—´ '%(datestr)s'ì´ í‘œì¤€ í˜•ì‹ '%(format)s'ê³¼ 다릅니다." - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "쿼리 ê²°ê³¼ì— %(verbose_name)sê°€ 없습니다." - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "'마지막' 페ì´ì§€ê°€ 아니거나, 정수형으로 변환할 수 없습니다." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "ìž˜ëª»ëœ íŽ˜ì´ì§€ (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "빈 리스트ì´ê³  '%(class_name)s.allow_empty'ê°€ False입니다." diff --git a/lib/python2.7/site-packages/django/conf/locale/ko/__init__.py b/lib/python2.7/site-packages/django/conf/locale/ko/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/ko/formats.py b/lib/python2.7/site-packages/django/conf/locale/ko/formats.py deleted file mode 100644 index af6539293..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ko/formats.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'Yë…„ nì›” jì¼' -TIME_FORMAT = 'A g:i:s' -DATETIME_FORMAT = 'Yë…„ nì›” jì¼ g:i:s A' -YEAR_MONTH_FORMAT = 'Yë…„ Fì›”' -MONTH_DAY_FORMAT = 'Fì›” jì¼' -SHORT_DATE_FORMAT = 'Y-n-j.' -SHORT_DATETIME_FORMAT = 'Y-n-j H:i' -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' - # '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006' - # '%d %b %Y', '%d %b, %Y', # '25 Oct 2006', '25 Oct, 2006' - # '%B %d %Y', '%B %d, %Y', # 'October 25 2006', 'October 25, 2006' - # '%d %B %Y', '%d %B, %Y', # '25 October 2006', '25 October, 2006' - '%Yë…„ %mì›” %dì¼', # '2006ë…„ 10ì›” 25ì¼', with localized suffix. -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' - '%Hì‹œ %M분 %Sì´ˆ', # '14ì‹œ 30분 59ì´ˆ' - '%Hì‹œ %M분', # '14ì‹œ 30분' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%m/%d/%Y %H:%M:%S', # '10/25/2006 14:30:59' - '%m/%d/%Y %H:%M', # '10/25/2006 14:30' - '%m/%d/%Y', # '10/25/2006' - '%m/%d/%y %H:%M:%S', # '10/25/06 14:30:59' - '%m/%d/%y %H:%M', # '10/25/06 14:30' - '%m/%d/%y', # '10/25/06' - - '%Yë…„ %mì›” %dì¼ %Hì‹œ %M분 %Sì´ˆ', # '2006ë…„ 10ì›” 25ì¼ 14ì‹œ 30분 59ì´ˆ' - '%Yë…„ %mì›” %dì¼ %Hì‹œ %M분', # '2006ë…„ 10ì›” 25ì¼ 14ì‹œ 30분' -) - -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo deleted file mode 100644 index 2f16b3567..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/lt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/lt/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/lt/LC_MESSAGES/django.po deleted file mode 100644 index 336668ae5..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/lt/LC_MESSAGES/django.po +++ /dev/null @@ -1,1154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-05 20:14+0000\n" -"Last-Translator: lauris \n" -"Language-Team: Lithuanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabų" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "AzerbaidžanieÄių" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgarų" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalų" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnių" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalonų" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ÄŒekų" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Velso" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Danų" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "VokieÄių" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Graikų" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Anglų" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Britų Anglų" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Ispanų" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "ArgentinieÄių Ispanų" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "MeksikieÄių Ispanų" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estų" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskų" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persų" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Suomių" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "PrancÅ«zų" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Fryzų" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Airių" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galų" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebrajų" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroatų" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Vengrų" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonecijos" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandų" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italų" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japonų" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Gruzinų" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmerų" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Dravidų" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "KorÄ—jieÄių" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Lietuvių" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Latvių" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Makedonų" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malajalių" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongolų" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Olandų" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norvegų" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norvegų Bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norvegų Nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Pandžabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Lenkų" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Protugalų" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brazilijos Portugalų" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rumunų" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Rusų" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovakų" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "SlovÄ—nų" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanų" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbų" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbų Lotynų" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Å vedų" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamilų" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugų" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Tailando" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turkų" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "UkrainieÄių" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "VietnamieÄių" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Supaprastinta kinų" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "TradicinÄ— kinų" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Ä®veskite tinkamÄ… reikÅ¡mÄ™." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "URL adresas atrodo sugadintas." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Ä®veskite tinkamÄ… URL adresÄ…." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Ä®veskite tinkamÄ… e-mailÄ…." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Å iÄ… reikÅ¡mÄ™ gali sudaryti tik raidÄ—s, skaiÄiai, pabraukimo arba paprasto " -"brÅ«kÅ¡nio simboliai." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Ä®veskite validų IPv4 adresÄ…." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Ä®veskite skaitmenis atskirtus kableliais." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Ä®sitikinkite, kad reikÅ¡mÄ™ sudaro %(limit_value)s simbolių (dabar yra %" -"(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Ä®sitikinkite, kad reikÅ¡mÄ— yra mažesnÄ— arba lygi %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Ä®sitikinkite, kad reikÅ¡mÄ— yra didesnÄ— arba lygi %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ä®sitikinkite, kad reikÅ¡mÄ™ sudaro bent %(limit_value)d simboliai (dabar %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ä®sitikinkite, kad reikÅ¡mÄ—s ilgis mažesnis nei %(limit_value)d simboliai " -"(dabar %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s privalo bÅ«ti unikalus %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s su Å¡iuo %(field_label)s jau egzistuoja." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ir" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "ReikÅ¡mÄ—s %r rinktis negalima." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Å is laukas negali bÅ«ti null." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "LaukÄ… privaloma užpildyti." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Lauko tipas: %(field_type)s " - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Sveikas skaiÄius" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Å i reikÅ¡me turi bÅ«ti sveikas skaiÄius." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Å i reikÅ¡mÄ— turi bÅ«ti True arba False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "LoginÄ— reikÅ¡mÄ— (True arba False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "EilutÄ— (ilgis iki %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Kableliais atskirti sveikieji skaiÄiai" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Data (be laiko)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Ä®veskite datÄ… YYYY-MM-DD formatu." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Netinkama data: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Ä®veskite datÄ…/laikÄ… YYYY-MM-DD HH:MM[:ss[.milisekunes]] formatu." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Data (su laiku)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Å i reikÅ¡mÄ— privalo bÅ«ti deÅ¡imtainis skaiÄius." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "DeÅ¡imtainis skaiÄius" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "El. paÅ¡to adresas" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Kelias iki failo" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Å i reikÅ¡mÄ— privalo bÅ«ti realus skaiÄius." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Slankaus kablelio skaiÄius" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Didelis (8 baitų) sveikas skaiÄius" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP adresas" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Å i reikÅ¡mÄ— turi bÅ«ti None, True arba False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "LoginÄ— reikÅ¡mÄ— (True, False arba None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekstas" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Laikas" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Ä®veskite laikÄ… HH:MM[:ss[.uuuuuu]] formatu." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML tekstas" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Modelis %(model)s su pirminiu raktu %(pk)r neegzistuoja." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "IÅ¡orinis raktas (tipas nustatomas susijusiame lauke)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "SÄ…ryÅ¡is vienas su vienu" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "SÄ…ryÅ¡is daug su daug" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Nuspauskite \"Control\", arba \"Command\" Mac kompiuteriuose, kad pasirinkti " -"daugiau nei vienÄ…." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Å is laukas yra privalomas." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Ä®veskite pilnÄ… skaiÄių." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Ä®veskite skaiÄių." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Užtikrinkite, kad visumoje nÄ—ra daugiau skaitmenų nei %s." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Užtikrinkite, kad deÅ¡imtainių reikÅ¡mių nÄ—ra daugiau nei %s." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Užtikrinkite, kad skaitmenų prieÅ¡ keblelį nÄ—ra daugiau nei %s." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Ä®veskite tinkamÄ… datÄ…." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Ä®veskite tinkamÄ… laikÄ…." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Ä®veskite tinkamÄ… datÄ…/laikÄ…." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Nebuvo nurodytas failas. Patikrinkite formos koduotÄ™." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Failas nebuvo nurodytas." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Nurodytas failas yra tuÅ¡Äias." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Ä®sitikinkite, kad reikÅ¡mÄ™ sudaro daugiausia %(max)d simbolių (dabar %(length)" -"d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Nurodykite failÄ… arba pažymÄ—kite iÅ¡valyti. Abu pasirinkimai negalimi." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Atsiųskite tinkamÄ… paveiksliukÄ…. Failas, kurį siuntÄ—te nebuvo paveiksliukas, " -"arba buvo sugadintas." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Nurodykite tinkamÄ… reikÅ¡mÄ™. %(value)s nÄ—ra galimas pasirinkimas." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Ä®veskite reikÅ¡mių saraÅ¡Ä…." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Nurodyti" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "IÅ¡trinti" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Pataisykite pasikartojanÄius duomenis laukui %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Pataisykite pasikartojanÄius duomenis laukui %(field)s. Duomenys privalo " -"bÅ«ti unikalÅ«s." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Pataisykite pasikartojanÄius duomenis laukui %(field_name)s. Duomenys " -"privalo bÅ«ti unikalÅ«s %(lookup)s peržiÅ«roms per %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Pataisykite žemiau esanÄias pasikartojanÄias reikÅ¡mes." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "IÅ¡orinis raktas neatitinka tÄ—vinio objekto pirminio rakto." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Pasirinkite tinkamÄ… reikÅ¡mÄ™. Parinkta reikÅ¡mÄ— nÄ—ra galima." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Pasirinkite tinkamÄ…. %s nÄ—ra vienas(-a) iÅ¡ galimų." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" nÄ—ra pirminiam raktui tinkama reikÅ¡mÄ—." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Å iuo metu" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Pakeisti" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "IÅ¡valyti" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Nežinomas" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Taip" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ne" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "taip,ne,galbÅ«t" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d baitas" -msgstr[1] "%(size)d baitai" -msgstr[2] "%(size)d baitai" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "vidurnaktis" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "vidurdienis" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Pirmadienis" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Antradienis" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "TreÄiadienis" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Ketvirtadienis" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Penktadienis" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Å eÅ¡tadienis" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Sekmadienis" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Pr" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "A" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "T" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "K" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "P" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Å " - -#: utils/dates.py:11 -msgid "Sun" -msgstr "S" - -#: utils/dates.py:18 -msgid "January" -msgstr "Sausis" - -#: utils/dates.py:18 -msgid "February" -msgstr "Vasaris" - -#: utils/dates.py:18 -msgid "March" -msgstr "Kovas" - -#: utils/dates.py:18 -msgid "April" -msgstr "Balandis" - -#: utils/dates.py:18 -msgid "May" -msgstr "Gegužė" - -#: utils/dates.py:18 -msgid "June" -msgstr "Birželis" - -#: utils/dates.py:19 -msgid "July" -msgstr "Liepa" - -#: utils/dates.py:19 -msgid "August" -msgstr "RugpjÅ«tis" - -#: utils/dates.py:19 -msgid "September" -msgstr "RugsÄ—jis" - -#: utils/dates.py:19 -msgid "October" -msgstr "Spalis" - -#: utils/dates.py:19 -msgid "November" -msgstr "Lapkritis" - -#: utils/dates.py:20 -msgid "December" -msgstr "Gruodis" - -#: utils/dates.py:23 -msgid "jan" -msgstr "sau" - -#: utils/dates.py:23 -msgid "feb" -msgstr "vas" - -#: utils/dates.py:23 -msgid "mar" -msgstr "kov" - -#: utils/dates.py:23 -msgid "apr" -msgstr "bal" - -#: utils/dates.py:23 -msgid "may" -msgstr "geg" - -#: utils/dates.py:23 -msgid "jun" -msgstr "bir" - -#: utils/dates.py:24 -msgid "jul" -msgstr "lie" - -#: utils/dates.py:24 -msgid "aug" -msgstr "rugp" - -#: utils/dates.py:24 -msgid "sep" -msgstr "rugs" - -#: utils/dates.py:24 -msgid "oct" -msgstr "spa" - -#: utils/dates.py:24 -msgid "nov" -msgstr "lap" - -#: utils/dates.py:24 -msgid "dec" -msgstr "grd" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Sau." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Vas." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Kovas" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Balandis" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Gegužė" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Birželis" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Liepa" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Rugp." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Rugs." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Spa." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Lap." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Grd." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Sausis" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Vasaris" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Kovas" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Balandis" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Gegužė" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Birželis" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Liepa" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "RugpjÅ«tis" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "RugsÄ—jis" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Spalis" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Lapkritis" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Gruodis" - -#: utils/text.py:136 -msgid "or" -msgstr "arba" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "metai" -msgstr[1] "metai" -msgstr[2] "metai" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mÄ—nuo" -msgstr[1] "mÄ—nesiai" -msgstr[2] "mÄ—nesiai" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "savaitÄ—" -msgstr[1] "savaitÄ—s" -msgstr[2] "savaitÄ—s" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "diena" -msgstr[1] "dienos" -msgstr[2] "dienos" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "valanda" -msgstr[1] "valandos" -msgstr[2] "valandos" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutÄ—" -msgstr[1] "minutÄ—s" -msgstr[2] "minutÄ—s" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutÄ—s" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "DATE_FORMAT" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "DATETIME_FORMAT" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "TIME_FORMAT" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "YEAR_MONTH_FORMAT" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "MONTH_DAY_FORMAT" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s sÄ—kmingai sukurtas." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s sÄ—kmingai atnaujintas." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s buvo iÅ¡trintas." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Nenurodyti metai" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Nenurodytas mÄ—nuo" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Nenurodyta diena" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Nenurodyta savaitÄ—" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "NÄ—ra %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Ateities %(verbose_name_plural)s nÄ—ra prieinami, nes %(class_name)s." -"allow_future yra False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Data '%(datestr)s' neatitinka formato '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Atitinkantis užklausÄ… %(verbose_name)s nerastas" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Puslapis nÄ—ra 'paskutinis', taip pat negali bÅ«ti paverstas į sveikÄ… skaiÄių." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Neegzistuojantis puslapis (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "TuÅ¡Äias sÄ…raÅ¡as ir '%(class_name)s.allow_empty' yra False." diff --git a/lib/python2.7/site-packages/django/conf/locale/lt/__init__.py b/lib/python2.7/site-packages/django/conf/locale/lt/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/lt/formats.py b/lib/python2.7/site-packages/django/conf/locale/lt/formats.py deleted file mode 100644 index c28600b6d..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/lt/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = r'Y \m. F j \d.' -TIME_FORMAT = 'H:i:s' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -# MONTH_DAY_FORMAT = -SHORT_DATE_FORMAT = 'Y.m.d' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo deleted file mode 100644 index 38800b4e7..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/lv/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/lv/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/lv/LC_MESSAGES/django.po deleted file mode 100644 index 2ce4c9dbf..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/lv/LC_MESSAGES/django.po +++ /dev/null @@ -1,1148 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: edgars \n" -"Language-Team: Latvian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "arÄbu" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "bulgÄru" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengÄļu" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosnieÅ¡u" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "katalÄņu" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Äehu" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "velsieÅ¡u" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "dÄņu" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "vÄcu" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "grieÄ·u" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "angļu" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "LielbritÄnijas angļu" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "spÄņu" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "igauņu" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "basku" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "persieÅ¡u" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "somu" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "franÄu" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "frÄ«zu" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Ä«ru" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "galÄ«cieÅ¡u" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ebreju" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "horvÄtu" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ungÄru" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "islandieÅ¡u" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "itÄļu" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "JapÄņu" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "vÄcu" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "khmeru" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "kannÄdieÅ¡u" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "korejieÅ¡u" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "lietuvieÅ¡u" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "latvieÅ¡u" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "maÄ·edonieÅ¡u" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "holandieÅ¡u" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "norvÄ“Ä£u" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "poļu" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "portugÄļu" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "BrazÄ«lijas portugÄļu" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "rumÄņu" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "krievu" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "slovÄku" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "slovēņu" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "albÄņu" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "serbu" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "serbu latīņu" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "zviedru" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "tamilu" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "taizemieÅ¡u" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "turku" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ukraiņu" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "vjetnamieÅ¡u" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "vienkÄrÅ¡Ä Ä·Ä«nieÅ¡u" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "tradicionÄlÄ Ä·Ä«nieÅ¡u" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Ievadiet korektu vÄ“rtÄ«bu." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Å Ä« URL adrese Å¡Ä·iet bojÄta." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Ievadiet korektu URL adresi." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Ievadiet korektu e-pasta adresi." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Ievadiet korektu vÄ“rtÄ«bu, kas satur tikai burtus, numurus, apakÅ¡svÄ«tras vai " -"Å¡Ä·Ä“rssvÄ«tras." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Ievadiet korektu IPv4 adresi." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Ievadiet tikai numurus, atdalÄ«tus ar komatiem." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "NodroÅ¡iniet, ka vÄ“rtÄ«ba ir %(limit_value)s (tÄ satur %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Å ai vÄ“rtÄ«bai jabÅ«t mazÄkai vai vienÄdai ar %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "VÄ“rtÄ«bai jÄbÅ«t lielÄkai vai vienÄdai ar %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"VÄ“rtÄ«bai jÄsatur vismaz %(limit_value)d rakstu zÄ«mes (tÄ satur %(show_value)" -"d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"VÄ“rtÄ«bai jÄsatur ne vairÄk kÄ %(limit_value)d rakstu zÄ«mes (tÄ satur %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s jÄbÅ«t unikÄlam %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s ar nosaukumu %(field_label)s jau eksistÄ“." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "un" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "NederÄ«ga izvÄ“le: %r." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Å is lauks nevar neksistÄ“t (bÅ«t null)." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Å is lauks nevar bÅ«t tukÅ¡s" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Lauks ar tipu: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Vesels skaitlis" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "VÄ“rtÄ«bai ir jÄbÅ«t veselam skaitlim." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "VÄ“rtÄ«bai jÄbÅ«t True vai False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (True vai False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Simbolu virkne (lÄ«dz pat %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Ar komatu atdalÄ«ti veselie skaitļi" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Datums (bez laika)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Ievadiet korektu datumu YYYY-MM-DD formÄtÄ." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Nekorekts datums: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Ievadiet korektu datumu/laiku YYYY-MM-DD HH:MM[:ss[.uuuuuu]] formÄtÄ." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Datums (ar laiku)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "VÄ“rtÄ«bai ir jÄbÅ«t decimÄlskaitlim." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "DecimÄls skaitlis" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-pasta adrese" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Faila ceļš" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Å ai vÄ“rtÄ«bai jÄbÅ«t decimÄldaļskaitlim." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "PlÅ«stoÅ¡Ä punkta skaitlis" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Liels (8 baitu) vesels skaitlis" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP adrese" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Å ai vÄ“rtÄ«bai jÄbÅ«t None, True vai False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (jÄ, nÄ“ vai neviens)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Teksts" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Laiks" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Ievadiet korektu laiku HH:MM[:ss[.uuuuuu]] formÄtÄ" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML teksts" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Modelis %(model)s ar primÄro atslÄ“gu %(pk)r neeksistÄ“." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Ä€rÄ“jÄ atslÄ“ga (tipu nosaka lauks uz kuru attiecas)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "AttiecÄ«ba viens pret vienu" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "AttiecÄ«ba daudzi pret daudziem" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Lai iezÄ«mÄ“tu vairÄk par vienu, pieturiet \"Ctrl\" (\"Command\" uz Mac " -"datora) taustiņu." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Å is lauks ir obligÄts." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Ievadiet veselu skaitli." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Ievadiet skaitli." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "PÄrliecinieties, ka kopÄ nav vairÄk par %s cipariem." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "PÄrliecinieties, ka aiz decimÄlÄs zÄ«mes nav vairÄk par %s cipariem." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "PÄrliecinieties, ka pirms decimÄlÄs zÄ«mes nav vairÄk par %s cipariem." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Ievadiet korektu datumu." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Ievadiet korektu laiku." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Ievadiet korektu datumu/laiku." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Nav nosÅ«tÄ«ts fails. PÄrbaudiet formas kodÄ“juma tipu." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Netika nosÅ«tÄ«ts fails." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "JÅ«su nosÅ«tÄ«tais fails ir tukÅ¡s." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Faila nosaukuma garums nedrÄ«kst pÄrsniegt %(max)d rakstu zÄ«mes (tas satur %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"AugÅ¡upielÄdÄ“jiet korektu attÄ“lu. Fails, ko augÅ¡upielÄdÄ“jÄt, vai nu nav " -"attÄ“ls, vai arÄ« ir bojÄts." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "IzvÄ“lieties korektu izvÄ“li. %(value)s nav pieejamo izvēļu sarakstÄ." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Ievadiet sarakstu ar vÄ“rtÄ«bÄm." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "SakÄrtojums" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "DzÄ“st" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "LÅ«dzu izlabojiet dublicÄ“tos datus priekÅ¡ %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"LÅ«dzu izlabojiet dublicÄ“tos datus laukam %(field)s, kam jÄbÅ«t unikÄlam." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"LÅ«dzu izlabojiet dublicÄ“tos datus laukam %(field_name)s, kam jÄbÅ«t unikÄlam " -"priekÅ¡ %(lookup)s iekÅ¡ %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "LÅ«dzu izlabojiet dublicÄ“tÄs vÄ“rtÄ«bas zemÄk." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "IekļautÄ ÄrÄ“jÄ atslÄ“ga nesakrita ar vecÄka elementa primÄro atslÄ“gu" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "IzvÄ“laties pareizu izvÄ“li. JÅ«su izvÄ“lele neietilpst pieejamo sarakstÄ." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "IzvÄ“lieties pareizu izvÄ“li. %s nav pieejamo izvēļu sarakstÄ." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ir nederÄ«ga vÄ“rtÄ«ba priekÅ¡ primÄrÄs atslÄ“gas." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "IzmainÄ«t" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "NezinÄms" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "JÄ" - -#: forms/widgets.py:548 -msgid "No" -msgstr "NÄ“" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "jÄ,nÄ“,varbÅ«t" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d baits" -msgstr[1] "%(size)d baiti" -msgstr[2] "%(size)d baitu" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "pusnakts" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "dienasvidus" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "pirmdiena" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "otrdiena" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "treÅ¡diena" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "ceturdiena" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "piektdiena" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "sestdiena" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "svÄ“tdiena" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "pr" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "ot" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "tr" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "ce" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "pk" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "se" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "sv" - -#: utils/dates.py:18 -msgid "January" -msgstr "janvÄris" - -#: utils/dates.py:18 -msgid "February" -msgstr "februÄris" - -#: utils/dates.py:18 -msgid "March" -msgstr "marts" - -#: utils/dates.py:18 -msgid "April" -msgstr "aprÄ«lis" - -#: utils/dates.py:18 -msgid "May" -msgstr "maijs" - -#: utils/dates.py:18 -msgid "June" -msgstr "jÅ«nijs" - -#: utils/dates.py:19 -msgid "July" -msgstr "jÅ«lijs" - -#: utils/dates.py:19 -msgid "August" -msgstr "augusts" - -#: utils/dates.py:19 -msgid "September" -msgstr "septembris" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktobris" - -#: utils/dates.py:19 -msgid "November" -msgstr "novembris" - -#: utils/dates.py:20 -msgid "December" -msgstr "decembris" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jÅ«n" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jÅ«l" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "" - -#: utils/text.py:136 -msgid "or" -msgstr "vai" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "gads" -msgstr[1] "gadi" -msgstr[2] "gadu" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mÄ“nesis" -msgstr[1] "mÄ“neÅ¡i" -msgstr[2] "mÄ“nesu" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "nedēļa" -msgstr[1] "nedēļas" -msgstr[2] "nedēļu" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "diena" -msgstr[1] "dienas" -msgstr[2] "dienu" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "stunda" -msgstr[1] "stundas" -msgstr[2] "stundu" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minÅ«te" -msgstr[1] "minÅ«tes" -msgstr[2] "minÅ«Å¡u" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minÅ«tes" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "d.m.Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "d.m.Y H:i:s" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i:s" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "m.Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "d.m" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s tika veiksmÄ«gi izveidots." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s tika veiksmÄ«gi dzÄ“sts." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s tika dzÄ“sts." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/lv/__init__.py b/lib/python2.7/site-packages/django/conf/locale/lv/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/lv/formats.py b/lib/python2.7/site-packages/django/conf/locale/lv/formats.py deleted file mode 100644 index 316d777e8..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/lv/formats.py +++ /dev/null @@ -1,41 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = r'Y. \g\a\d\a j. F' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = r'Y. \g\a\d\a j. F, H:i:s' -YEAR_MONTH_FORMAT = r'Y. \g. F' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = r'j.m.Y' -SHORT_DATETIME_FORMAT = 'j.m.Y H:i:s' -FIRST_DAY_OF_WEEK = 1 #Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' - '%H.%M.%S', # '14.30.59' - '%H.%M', # '14.30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%d.%m.%y %H:%M:%S', # '25.10.06 14:30:59' - '%d.%m.%y %H:%M', # '25.10.06 14:30' - '%d.%m.%y %H.%M.%S', # '25.10.06 14.30.59' - '%d.%m.%y %H.%M', # '25.10.06 14.30' - '%d.%m.%y', # '25.10.06' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = u' ' # Non-breaking space -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/mk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/mk/LC_MESSAGES/django.mo deleted file mode 100644 index a477b9cc8..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/mk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po deleted file mode 100644 index 771146f6e..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/mk/LC_MESSAGES/django.po +++ /dev/null @@ -1,1151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:09-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: vvangelovski \n" -"Language-Team: Macedonian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ÐрапÑки" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "ÐзербејџанÑки" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "БугарÑки" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "БенгалÑки" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "БоÑанÑки" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "КаталанÑки" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Чешки" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Велшки" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "ДанÑки" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "ГерманÑки" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Грчки" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ÐнглиÑки" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "БританÑкиот англиÑки" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ШпанÑки" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "ÐргентинÑки ШпанÑки" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "МекÑиканÑки ШпанÑки" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "ЕÑтонÑки" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "БаÑкиÑки" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "ПерÑиÑки" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ФинÑки" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "ФранцуÑки" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "ФризиÑки" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ИрÑки" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "ГалÑки" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ЕврејÑки" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Хинди" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "ХрватÑки" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "УнгарÑки" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "ИндонезиÑки" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "ИÑландÑки" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ИталијанÑки" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ЈапонÑки" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "ГрузиÑки" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Кмер" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Канада" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "КорејÑки" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "ЛитванÑки" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "ЛатвиÑки" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "МакедонÑки" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Малајалам" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "МонголÑки" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "ХоландÑки" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Ðорвешки" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Ðорвешка bokmÃ¥l" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Ðорвешки ÐинорÑк" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Пунџаби" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "ПолÑки" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "ПортугалкÑки" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "БразилÑко португалÑки" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "РоманÑки" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "РуÑки" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Словачки" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Словенечки" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "ÐлбанÑки" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "СрпÑки" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "СрпÑки Латиница" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "ШведÑки" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Тамил" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Телугу" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "ТајландÑки" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "ТурÑки" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "УкраинÑки" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Урду" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "ВиетнамÑки" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "УпроÑтен кинеÑки" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Традиционален кинеÑки" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "ВнеÑете правилна вредноÑÑ‚." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Оваа веб адреÑа изгледа дека не е доÑтапна." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "ВнеÑете правилна веб адреÑа." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "ВнеÑeте правилна адреÑа за е-пошта." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"ВнеÑете правилно кратко име (slug) кое Ñе Ñоддржи од букви, цифри, долна " -"црта или тире." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "ВнеÑeте правилна IPv4 адреÑа." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "ВнеÑете Ñамо цифри одделени Ñо запирки." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"ОÑигурајте Ñе дека оваа вредноÑÑ‚ е %(limit_value)s (моментално е %" -"(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"ОÑигурајте Ñе дека оваа вредноÑÑ‚ е помала или еднаква Ñо %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"ОÑигурајте Ñе дека оваа вредноÑÑ‚ е поголема или еднаква Ñо %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"ОÑигурајте Ñе дека оваа вредноÑÑ‚ има најмалку %(limit_value)d знаци (има %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"ОÑигурајте Ñе дека оваа вредноÑÑ‚ има најмногу %(limit_value)d знаци (има %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s мора да биде уникатно за %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s Ñо %(field_label)s веќе поÑтои." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "и" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "ВредноÑта %r не е валиден избор." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Оваа вредноÑÑ‚ неможе да биде null." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Ова поле не може да биде празно" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Поле од тип: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Цел број" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Оваа вредноÑÑ‚ мора да биде цел број." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Оваа вредноÑÑ‚ мора да биде или точно или неточно." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Логичка (или точно или неточно)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Збор (до %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Целобројни вредноÑти одделени Ñо запирка" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Датум (без чаÑ)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "ВнеÑете правилен датум во форматот ГГГГ-ММ-ДД." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ðеправилен датум: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "ВнеÑете правилен датум/време во YYYY-MM-DD HH:MM[:ss[.uuuuuu]] формат." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Датум (Ñо чаÑ)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Оваа вредноÑÑ‚ мора да биде децимален број." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Децимален број" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ÐдреÑа на е-пошта" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Патека на датотека" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Оваа вредноÑÑ‚ мора да биде број Ñо подвижна запирка." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Децимален број" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Голем (8 бајти) цел број" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "ИП адреÑа" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Оваа вредноÑÑ‚ мора да биде празна, точно или неточно." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Логичка (точно,неточно или празно)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ТекÑÑ‚" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "ЧаÑ" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "ВнеÑете правилно време во HH:MM[:ss[.uuuuuu]] формат." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML текÑÑ‚" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Модел %(model)s Ñо примарен клуч %(pk)r не поÑтои." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Ðадворешен клуч (типот е одреден Ñпоред Ñврзаното поле)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Еден-према-еден релација" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Повеќе-према-повеќе релација" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Држете го „Control“, или „Command“ на Мекинтош, за да изберете повеќе од " -"едно." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Ова поле е задолжително." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "ВнеÑи цел број." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "ВнеÑете број." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "ОÑигурајте Ñе дека вкупно нема повеќе од %s цифри." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "ОÑигурајте Ñе дека нема повеќе од %s децимални меÑта." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "ОÑигурајте Ñе дека нема повеќе од %s цифри пред децималната запирка." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "ВнеÑете правилен датум." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "ВнеÑете правилно време." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "ВнеÑете правилен датум Ñо време." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Ðе беше пратена датотека. Проверете го типот на енкодирање на формата." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Ðе беше пратена датотека." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Пратената датотека е празна." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"ОÑигурајте Ñе дека ова име на датотека има најмногу %(max)d знаци (има %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Или прикачете датотека или оттштиклирајте го полето." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Качете валидна Ñлика. Датотеката која ја качивте или не беше Ñлика или беше " -"раÑипана датотеката." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "ВнеÑете валиден избор. %(value)s не е еден од можните избори." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "ВнеÑете лиÑта на вредноÑти." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "РедоÑлед" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Избриши" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Ве молам поправете ја дуплираната вредноÑÑ‚ за %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Ве молам поправете ја дуплираната вредноÑÑ‚ за %(field)s, која мора да биде " -"уникатна." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Ве молам поправете ја дуплираната вредноÑÑ‚ за %(field_name)s која мора да " -"биде уникатна за %(lookup)s во %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Ве молам поправете ги дуплираните вредноÑти подолу." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Ðадворешниот клуч на вгезденото поле не Ñе Ñовпаѓа Ñо примарниот клуч на " -"родителÑката инÑтанца." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Изберете правилно. Тоа не е еден од можните избори." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "ВнеÑете правилно. %s не е еден од доÑтапните вредноÑти." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" не е правилна вредноÑÑ‚ за примарен клуч." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Моментално" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Измени" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ИÑчиÑти" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Ðепознато" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Да" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ðе" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "да, не, можеби" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d бајт" -msgstr[1] "%(size)d бајти" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "попладне" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "наутро" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "попладне" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "наутро" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "полноќ" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "пладне" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Понеделник" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Вторник" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Среда" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Четврток" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Петок" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Сабота" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Ðедела" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Пон" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Вто" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Сре" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Чет" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Пет" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Саб" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Ðед" - -#: utils/dates.py:18 -msgid "January" -msgstr "Јануари" - -#: utils/dates.py:18 -msgid "February" -msgstr "Февруари" - -#: utils/dates.py:18 -msgid "March" -msgstr "Март" - -#: utils/dates.py:18 -msgid "April" -msgstr "Ðприл" - -#: utils/dates.py:18 -msgid "May" -msgstr "Мај" - -#: utils/dates.py:18 -msgid "June" -msgstr "Јуни" - -#: utils/dates.py:19 -msgid "July" -msgstr "Јули" - -#: utils/dates.py:19 -msgid "August" -msgstr "авгуÑÑ‚" - -#: utils/dates.py:19 -msgid "September" -msgstr "Септември" - -#: utils/dates.py:19 -msgid "October" -msgstr "Октомври" - -#: utils/dates.py:19 -msgid "November" -msgstr "Ðоември" - -#: utils/dates.py:20 -msgid "December" -msgstr "Декември" - -#: utils/dates.py:23 -msgid "jan" -msgstr "јан" - -#: utils/dates.py:23 -msgid "feb" -msgstr "фев" - -#: utils/dates.py:23 -msgid "mar" -msgstr "мар" - -#: utils/dates.py:23 -msgid "apr" -msgstr "апр" - -#: utils/dates.py:23 -msgid "may" -msgstr "мај" - -#: utils/dates.py:23 -msgid "jun" -msgstr "јун" - -#: utils/dates.py:24 -msgid "jul" -msgstr "јул" - -#: utils/dates.py:24 -msgid "aug" -msgstr "авг" - -#: utils/dates.py:24 -msgid "sep" -msgstr "Ñеп" - -#: utils/dates.py:24 -msgid "oct" -msgstr "окт" - -#: utils/dates.py:24 -msgid "nov" -msgstr "ное" - -#: utils/dates.py:24 -msgid "dec" -msgstr "дек" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Јан." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Фев." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Март" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Ðприл" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Мај" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Јуни" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Јули" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Ðвг." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Септ." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Окт." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Ðое." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Дек." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Јануари" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Февруари" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Март" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Ðприл" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Мај" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Јуни" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Јули" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "ÐвгуÑÑ‚" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Септември" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Октомври" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Ðоември" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Декември" - -#: utils/text.py:136 -msgid "or" -msgstr "или" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "година" -msgstr[1] "години" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "меÑец" -msgstr[1] "меÑеци" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "Ñедмица" -msgstr[1] "Ñедмици" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "ден" -msgstr[1] "дена" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "чаÑ" -msgstr[1] "чаÑа" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "минута" -msgstr[1] "минути" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "минути" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j M Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j M Y, P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "Ставка %(verbose_name)s беше уÑпешно Ñоздадена." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "Ставка %(verbose_name)s беше уÑпешно ажурирана." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "Ставка %(verbose_name)s беше избришана." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Ðе е дадена година" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Ðе е даден меÑец" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Ðе е даден ден" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Ðе е дадена недела" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Ðема доÑтапни %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Идни %(verbose_name_plural)s не Ñе доÑтапни бидејќи %(class_name)s." -"allow_future е False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Ðевалиден текÑÑ‚ за датум '%(datestr)s' даден формат '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Ðема %(verbose_name)s што Ñе Ñовпаѓа Ñо пребарувањето" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Страницата не е \"поÑледна\", ниту пак може да Ñе конвертира во еден цел " -"број." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Ðевалидна Ñтраница (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Празна лиÑта и '%(class_name)s .allow_empty' е False." diff --git a/lib/python2.7/site-packages/django/conf/locale/mk/__init__.py b/lib/python2.7/site-packages/django/conf/locale/mk/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/mk/formats.py b/lib/python2.7/site-packages/django/conf/locale/mk/formats.py deleted file mode 100644 index e217e655e..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/mk/formats.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'd F Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = 'j. F Y. H:i' -YEAR_MONTH_FORMAT = 'F Y.' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'j.m.Y.' -SHORT_DATETIME_FORMAT = 'j.m.Y. H:i' -FIRST_DAY_OF_WEEK = 1 - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.' - '%d. %m. %Y.', '%d. %m. %y.', # '25. 10. 2006.', '25. 10. 06.' - '%Y-%m-%d', # '2006-10-25' -) - -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) - -DATETIME_INPUT_FORMATS = ( - '%d.%m.%Y. %H:%M:%S', # '25.10.2006. 14:30:59' - '%d.%m.%Y. %H:%M', # '25.10.2006. 14:30' - '%d.%m.%Y.', # '25.10.2006.' - '%d.%m.%y. %H:%M:%S', # '25.10.06. 14:30:59' - '%d.%m.%y. %H:%M', # '25.10.06. 14:30' - '%d.%m.%y.', # '25.10.06.' - '%d. %m. %Y. %H:%M:%S', # '25. 10. 2006. 14:30:59' - '%d. %m. %Y. %H:%M', # '25. 10. 2006. 14:30' - '%d. %m. %Y.', # '25. 10. 2006.' - '%d. %m. %y. %H:%M:%S', # '25. 10. 06. 14:30:59' - '%d. %m. %y. %H:%M', # '25. 10. 06. 14:30' - '%d. %m. %y.', # '25. 10. 06.' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) - -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/ml/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ml/LC_MESSAGES/django.mo deleted file mode 100644 index da90b2549..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ml/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po deleted file mode 100644 index 97b71b76d..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ml/LC_MESSAGES/django.po +++ /dev/null @@ -1,1137 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:10-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: rajeesh \n" -"Language-Team: Malayalam \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "അറബികàµ" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "ബളàµâ€à´—േറിയനàµâ€" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "ബംഗാളി" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "ബോസàµà´¨à´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "കാറàµà´±à´²à´¨àµâ€" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ചെകàµ" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "വെലàµâ€à´·àµ" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "ഡാനിഷàµ" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "ജരàµâ€à´®à´¨àµâ€" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "à´—àµà´°àµ€à´•àµà´•àµ" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ഇംഗàµà´³àµ€à´·àµ" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "à´¬àµà´°à´¿à´Ÿàµà´Ÿàµ€à´·àµ ഇംഗàµà´³àµ€à´·àµ" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "à´¸àµà´ªà´¾à´¨à´¿à´·àµ" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "à´…à´°àµâ€à´œà´¨àµà´±àµ€à´¨à´¿à´¯à´¨àµâ€ à´¸àµà´ªà´¾à´¨à´¿à´·àµ" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "à´Žà´¸àµà´Ÿàµ‹à´£à´¿à´¯à´¨àµâ€ à´¸àµà´ªà´¾à´¨à´¿à´·àµ" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "ബാസàµà´•àµà´¯àµ" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "പേരàµâ€à´·àµà´¯à´¨àµâ€" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "à´«à´¿à´¨àµà´¨à´¿à´·àµ" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "à´«àµà´°àµ†à´žàµà´šàµ" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "à´«àµà´°à´¿à´¸à´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "à´à´±à´¿à´·àµ" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "ഗലിഷàµà´¯à´¨àµâ€" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ഹീബàµà´±àµ" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "ഹിനàµà´¦à´¿" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "à´•àµà´°àµŠà´¯àµ‡à´·àµà´¯à´¨àµâ€" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ഹംഗേറിയനàµâ€" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "ഇനàµà´¤àµŠà´¨àµ‡à´·àµà´¯à´¨àµâ€" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "à´à´¸àµà´²à´¾à´¨àµâ€à´¡à´¿à´•àµ" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ഇറàµà´±à´¾à´²à´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ജാപàµà´ªà´¨àµ€à´¸àµ" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "ജോരàµâ€à´œà´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "à´–àµà´®àµ‡à´°àµâ€" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "à´•à´¨àµà´¨à´¡" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "കൊറിയനàµâ€" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "ലിതàµà´µà´¾à´¨à´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "ലാറàµà´±àµà´µà´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "മാസിഡോണിയനàµâ€" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "മലയാളം" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "മംഗോളിയനàµâ€" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "à´¡à´šàµà´šàµ" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "നോരàµâ€à´µàµ€à´œà´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "നോരàµâ€à´µàµ€à´œà´¿à´¯à´¨àµâ€ ബൊകàµà´®à´¾à´²àµâ€" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "നോരàµâ€à´µàµ€à´œà´¿à´¯à´¨àµâ€ നിനോഷàµà´•àµ" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "പഞàµà´šà´¾à´¬à´¿" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "പോളിഷàµ" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "പോരàµâ€à´šàµà´—ീസàµ" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "à´¬àµà´±à´¸àµ€à´²à´¿à´¯à´¨àµâ€ പോരàµâ€à´šàµà´—ീസàµ" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "റൊമാനിയനàµâ€" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "റഷàµà´¯à´¨àµâ€" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "à´¸àµà´³àµŠà´µà´¾à´•àµ" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "à´¸àµà´³àµŠà´µàµ‡à´¨à´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "à´…à´²àµâ€à´¬àµ‡à´¨à´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "സെരàµâ€à´¬à´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "സെരàµâ€à´¬à´¿à´¯à´¨àµâ€ ലാറàµà´±à´¿à´¨àµâ€" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "à´¸àµà´µàµ€à´¡à´¿à´·àµ" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "തമിഴàµ" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "തെലàµà´™àµà´•àµ" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "തായàµ" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "à´Ÿà´°àµâ€à´•àµà´•à´¿à´·àµ" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "à´¯àµà´•àµà´°àµ‡à´¨à´¿à´¯à´¨àµâ€" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "വിയറàµà´±àµà´¨à´¾à´®àµ€à´¸àµ" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "ലഘൠചൈനീസàµ" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "പരമàµà´ªà´°à´¾à´—à´¤ ചൈനീസàµ" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "ശരിയായ മൂലàµà´¯à´‚ നലàµà´•à´£à´‚." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "à´ˆ URL നിലവിലàµà´²à´¾à´¤àµà´¤ വിലാസമാണൠകാണികàµà´•àµà´¨àµà´¨à´¤àµ." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "ശരിയായ URL നലàµà´•à´£à´‚." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "ശരിയായ à´‡-മെയിലàµâ€ വിലാസം നലàµà´•àµà´•." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "ശരിയായ à´¸àµà´³à´—ൠനലàµà´•àµà´• (à´…à´•àµà´·à´°à´™àµà´™à´³àµâ€, à´…à´•àµà´•à´™àµà´™à´³àµâ€, à´…à´£àµà´Ÿà´°àµâ€à´¸àµà´•àµ‹à´°àµâ€, ഹൈഫനàµâ€ à´Žà´¨àµà´¨à´¿à´µ മാതàµà´°à´‚ ചേരàµâ€à´¨àµà´¨à´¤àµ)." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "ശരിയായ IPv4 വിലാസം നലàµà´•à´£à´‚" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "à´…à´•àµà´•à´™àµà´™à´³àµâ€ മാതàµà´°à´‚ (കോമയിടàµà´Ÿàµ വേരàµâ€à´¤à´¿à´°à´¿à´šàµà´šà´¤àµ)" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "ഇതൠ%(limit_value)s ആവണം. (ഇപàµà´ªàµ‹à´³àµâ€ %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "ഇതൠ%(limit_value)s-à´“ അതിലàµâ€ à´•àµà´±à´µàµ‹ ആവണം" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "ഇതൠ%(limit_value)s-à´“ അതിലàµâ€ കൂടàµà´¤à´²àµ‹ ആവണം" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"ഇതിനൠà´à´±àµà´±à´µàµà´‚ à´•àµà´±à´žàµà´žà´¤àµ %(limit_value)d à´…à´•àµà´·à´°à´™àµà´™à´³àµâ€ വേണം. (ഇപàµà´ªàµ‹à´³àµâ€ %(show_value)d " -"à´…à´•àµà´·à´°à´™àµà´™à´³àµà´£àµà´Ÿàµ.)" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"ഇതിനൠപരമാവധി %(limit_value)d à´…à´•àµà´·à´°à´™àµà´™à´³àµ‡ ഉളàµà´³àµ‚ à´Žà´¨àµà´¨àµ ഉറപàµà´ªà´¾à´•àµà´•àµà´•. (ഇപàµà´ªàµ‹à´³àµâ€ %(show_value)" -"d à´…à´•àµà´·à´°à´™àµà´™à´³àµà´£àµà´Ÿàµ.)" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(date_field)s %(lookup)s-നൠ%(field_name)s ആവരàµâ€à´¤àµà´¤à´¿à´•àµà´•à´¾à´¨àµâ€ പാടിലàµà´²." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(field_label)s-ഓടൠകൂടിയ %(model_name)s നിലവിലàµà´£àµà´Ÿàµ." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ഉം" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "%r à´…à´¨àµà´¯àµ‹à´œàµà´¯à´®à´²àµà´²." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "à´ˆ കളം (ഫീലàµâ€à´¡àµ) à´’à´´à´¿à´šàµà´šà´¿à´Ÿà´°àµà´¤àµ." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "à´ˆ കളം (ഫീലàµâ€à´¡àµ) à´’à´´à´¿à´šàµà´šà´¿à´Ÿà´°àµà´¤àµ." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "%(field_type)s à´Žà´¨àµà´¨ തരതàµà´¤à´¿à´²àµà´³àµà´³ കളം (ഫീലàµâ€à´¡àµ)" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "പൂരàµâ€à´£àµà´£à´¸à´‚à´–àµà´¯" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "പൂരàµâ€à´£àµà´£à´¸à´‚à´–àµà´¯ മാതàµà´°à´‚" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "ശരിയോ തെറàµà´±àµ‹ à´Žà´¨àµà´¨àµ മാതàµà´°à´‚" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "ശരിയോ തെറàµà´±àµ‹ (True അഥവാ False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "à´¸àµà´Ÿàµà´°à´¿à´™àµà´™àµ (%(max_length)s വരെ നീളമàµà´³àµà´³à´¤àµ)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "കോമയിടàµà´Ÿàµ വേരàµâ€à´¤à´¿à´°à´¿à´šàµà´š സംഖàµà´¯à´•à´³àµâ€" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "തീയതി (സമയം വേണàµà´Ÿ)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "ശരിയായ തീയതി YYYY-MM-DD à´Žà´¨àµà´¨ മാതàµà´°àµà´•à´¯à´¿à´²àµâ€ നലàµà´•à´£à´‚." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "തെറàµà´±à´¾à´¯ തീയതി: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "ശരിയായ തീയതി/സമയം YYYY-MM-DD HH:MM[:ss[.uuuuuu]]à´Žà´¨àµà´¨ മാതàµà´°àµà´•à´¯à´¿à´²àµâ€ നലàµà´•à´£à´‚." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "തീയതി (സമയതàµà´¤àµ‹à´ŸàµŠà´ªàµà´ªà´‚)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "à´ˆ വില ദശാംശമാവണം." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "ദശാംശസംഖàµà´¯" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "à´‡-മെയിലàµâ€ വിലാസം" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "ഫയലàµâ€ à´¸àµà´¥à´¾à´¨à´‚" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "à´ˆ വില ദശാംശമാവണം." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "ദശാംശസംഖàµà´¯" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "8 ബൈറàµà´±àµ പൂരàµâ€à´£à´¸à´‚à´–àµà´¯." - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP വിലാസം" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "à´ˆ മൂലàµà´¯à´‚ None, True, False à´Žà´¨àµà´¨à´¿à´µà´¯à´¿à´²àµâ€ à´à´¤àµ†à´™àµà´•à´¿à´²àµà´‚ à´’à´¨àµà´¨à´¾à´µà´£à´‚" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "ശരിയോ തെറàµà´±àµ‹ à´Žà´¨àµà´¨àµ മാതàµà´°à´‚ (True, False, None à´Žà´¨àµà´¨à´¿à´µà´¯à´¿à´²àµâ€ à´à´¤àµ†à´™àµà´•à´¿à´²àµà´‚ à´’à´¨àµà´¨àµ)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ടെകàµà´¸àµà´±àµà´±àµ" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "സമയം" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "ശരിയായ സമയം HH:MM[:ss[.uuuuuu]] à´Žà´¨àµà´¨ മാതàµà´°àµà´•à´¯à´¿à´²àµâ€ നലàµà´•à´£à´‚." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL(വെബàµ-വിലാസം)" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML ടെകàµà´¸àµà´±àµà´±àµ" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "%(pk)r à´Žà´¨àµà´¨ pk ഉളàµà´³ %(model)s à´Žà´¨àµà´¨ മോഡലàµâ€ നിലവിലിലàµà´²." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "ഫോറിനàµâ€ കീ (ടൈപàµà´ªàµ ബനàµà´§à´ªàµà´ªàµ†à´Ÿàµà´Ÿ ഫീലàµâ€à´¡à´¿à´²àµâ€ നിനàµà´¨àµà´‚ നിരàµâ€à´£àµà´£à´¯à´¿à´•àµà´•àµà´¨àµà´¨à´¤à´¾à´£àµ)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "വണàµâ€-à´Ÿàµ-വണàµâ€ ബനàµà´§à´‚" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "മെനി-à´Ÿàµ-മെനി ബനàµà´§à´‚" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "\"Control\" à´Žà´¨àµà´¨ കീ അമരàµâ€à´¤àµà´¤à´¿à´ªàµà´ªà´¿à´Ÿà´¿à´•àµà´•àµà´•. (Macലാണെങàµà´•à´¿à´²àµâ€ \"Command\")." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "à´ˆ à´•à´³àµà´³à´¿(ഫീലàµâ€à´¡àµ) നിരàµâ€à´¬à´¨àµà´§à´®à´¾à´£àµ." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "ഒരൠപൂരàµâ€à´£à´¸à´‚à´–àµà´¯ നലàµà´•àµà´•." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "ഒരൠസംഖàµà´¯ നലàµà´•àµà´•." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "മൊതàµà´¤à´‚ %s ലേറെ à´…à´•àµà´•à´™àµà´™à´³àµâ€ ഇലàµà´²àµ†à´¨àµà´¨àµ ഉറപàµà´ªàµ വരàµà´¤àµà´¤àµà´•." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "%s ലേറെ ദശാംശസàµà´¥à´¾à´¨à´™àµà´™à´³àµâ€ ഇലàµà´²àµ†à´¨àµà´¨àµ ഉറപàµà´ªàµ വരàµà´¤àµà´¤àµà´•." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "ദശാംശബിനàµà´¦àµà´µà´¿à´¨àµ à´®àµà´®àµà´ªàµ %sലേറെ à´…à´•àµà´•à´™àµà´™à´³àµâ€ ഇലàµà´²àµ†à´¨àµà´¨àµ ഉറപàµà´ªàµ വരàµà´¤àµà´¤àµà´•." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "ശരിയായ തീയതി നലàµà´•àµà´•." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "ശരിയായ സമയം നലàµà´•àµà´•." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "ശരിയായ തീയതിയàµà´‚ സമയവàµà´‚ നലàµà´•àµà´•." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "ഫയലൊനàµà´¨àµà´‚ ലഭിചàµà´šà´¿à´Ÿàµà´Ÿà´¿à´²àµà´². ഫോമിലെ à´Žà´¨àµâ€-കോഡിംഗൠപരിശോധികàµà´•àµà´•." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "ഫയലൊനàµà´¨àµà´‚ ലഭിചàµà´šà´¿à´Ÿàµà´Ÿà´¿à´²àµà´²." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "ലഭിചàµà´š ഫയലàµâ€ ശൂനàµà´¯à´®à´¾à´£àµ." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"à´ˆ ഫയലിനàµà´±àµ† പേരൠപരമാവധി %(max)d à´…à´•àµà´·à´°à´™àµà´™à´³àµà´³àµà´³à´¤à´¾à´¯à´¿à´°à´¿à´•àµà´•à´£à´‚. (ഇപàµà´ªàµ‹à´³àµâ€ %(length)d à´…à´•àµà´·à´°à´™àµà´™à´³àµâ€ " -"ഉണàµà´Ÿàµ)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"à´’à´¨àµà´¨àµà´•à´¿à´²àµâ€ ഫയലàµâ€ സമരàµâ€à´ªàµà´ªà´¿à´•àµà´•à´£à´‚, à´…à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ à´•àµà´³à´¿à´¯à´°àµâ€ à´Žà´¨àµà´¨ ചെകàµà´¬àµ‹à´•àµà´¸àµ ടികൠചെയàµà´¯à´£à´‚. ദയവായി à´°à´£àµà´Ÿàµà´‚ " -"കൂടി ചെയàµà´¯à´°àµà´¤àµ." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"ശരിയായ à´šà´¿à´¤àµà´°à´‚ അപൠലോഡൠചെയàµà´¯àµà´•. നിങàµà´™à´³àµâ€ നലàµà´•à´¿à´¯ ഫയലàµâ€ à´’à´¨àµà´¨àµà´•à´¿à´²àµâ€ ഒരൠചിതàµà´°à´®à´²àµà´², à´…à´²àµà´²àµ†à´™àµà´•à´¿à´²àµâ€ " -"വികലമാണàµ." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "യോഗàµà´¯à´®à´¾à´¯à´¤àµ തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•. %(value)s ലഭàµà´¯à´®à´¾à´¯à´µà´¯à´¿à´²àµâ€ ഉളàµâ€à´ªàµà´ªàµ†à´Ÿàµà´¨àµà´¨à´¿à´²àµà´²." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "മൂലàµà´¯à´™àµà´™à´³àµà´Ÿàµ† പടàµà´Ÿà´¿à´•(ലിസàµà´±àµà´±àµ) നലàµà´•àµà´•." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "à´•àµà´°à´®à´‚" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "ഡിലീറàµà´±àµ" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "%(field)s-നായി നലàµà´•àµà´¨àµà´¨ വിവരം ആവരàµâ€à´¤àµà´¤à´¿à´šàµà´šà´¤àµ ദയവായി തിരàµà´¤àµà´¤àµà´•." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "%(field)s-നായി നലàµà´•àµà´¨àµà´¨ വിവരം ആവരàµâ€à´¤àµà´¤à´¿à´•àµà´•à´¾à´¨àµâ€ പാടിലàµà´². ദയവായി തിരàµà´¤àµà´¤àµà´•." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"%(date_field)s ലെ %(lookup)s നൠവേണàµà´Ÿà´¿ %(field_name)s നൠനലàµà´•àµà´¨àµà´¨ വിവരം ആവരàµâ€à´¤àµà´¤à´¿à´•àµà´•à´¾à´¨àµâ€ " -"പാടിലàµà´². ദയവായി തിരàµà´¤àµà´¤àµà´•." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "താഴെ കൊടàµà´¤àµà´¤à´µà´¯à´¿à´²àµâ€ ആവരàµâ€à´¤àµà´¤à´¨à´‚ ഒഴിവാകàµà´•àµà´•." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "ഇനàµâ€à´²àµˆà´¨à´¾à´¯à´¿ നലàµà´•à´¿à´¯ ഫോറിനàµâ€ കീ മാതàµà´°àµ വസàµà´¤àµà´µà´¿à´¨àµà´±àµ† à´ªàµà´°à´¾à´¥à´®à´¿à´• കീയàµà´®à´¾à´¯à´¿ യോജികàµà´•àµà´¨àµà´¨à´¿à´²àµà´²." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "യോഗàµà´¯à´®à´¾à´¯à´¤àµ തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•. നിങàµà´™à´³àµâ€ നലàµà´•à´¿à´¯à´¤àµ ലഭàµà´¯à´®à´¾à´¯à´µà´¯à´¿à´²àµâ€ ഉളàµâ€à´ªàµà´ªàµ†à´Ÿàµà´¨àµà´¨à´¿à´²àµà´²." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "യോഗàµà´¯à´®à´¾à´¯à´¤àµ തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•. %s തനàµà´¨à´¿à´°à´¿à´•àµà´•àµà´¨àµà´¨à´µà´¯à´¿à´²àµâ€ ഉളàµâ€à´ªàµà´ªàµ†à´Ÿàµà´¨àµà´¨à´¿à´²àµà´²." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" à´ªàµà´°à´¾à´¥à´®à´¿à´• കീ ആവാനàµâ€ à´…à´¨àµà´¯àµ‹à´œàµà´¯à´®à´¾à´¯ മൂലàµà´¯à´®à´²àµà´²." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "നിലവിലàµà´³àµà´³à´¤àµ" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "മാറàµà´±àµà´•" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "കാലിയാകàµà´•àµà´•" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "à´…à´œàµà´žà´¾à´¤à´‚" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "അതെ" - -#: forms/widgets.py:548 -msgid "No" -msgstr "à´…à´²àµà´²" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ഉണàµà´Ÿàµ, ഇലàµà´², ഉണàµà´Ÿà´¾à´¯àµ‡à´•àµà´•à´¾à´‚" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d ബൈറàµà´±àµ" -msgstr[1] "%(size)d ബൈറàµà´±àµà´•à´³àµâ€" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s കെ.ബി" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s à´Žà´‚.ബി" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s ജി.ബി" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s à´Ÿà´¿.ബി" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s പി.ബി" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "പി. à´Žà´‚ (ഉചàµà´šà´¯àµà´•àµà´•àµ ശേഷം) " - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "à´Ž. à´Žà´‚ (ഉചàµà´šà´¯àµà´•àµà´•àµ à´®àµà´®àµà´ªàµ)" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "പി. à´Žà´‚ (ഉചàµà´šà´¯àµà´•àµà´•àµ ശേഷം) " - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "à´Ž. à´Žà´‚ (ഉചàµà´šà´¯àµà´•àµà´•àµ à´®àµà´®àµà´ªàµ)" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "à´…à´°àµâ€à´§à´°à´¾à´¤àµà´°à´¿" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "ഉചàµà´š" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "തിങàµà´•à´³àµâ€" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "ചൊവàµà´µ" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "à´¬àµà´§à´¨àµâ€" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "à´µàµà´¯à´¾à´´à´‚" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "വെളàµà´³à´¿" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "ശനി" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "ഞായരàµâ€" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "തിങàµà´•à´³àµâ€" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "ചൊവàµà´µ" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "à´¬àµà´§à´¨àµâ€" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "à´µàµà´¯à´¾à´´à´‚" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "വെളàµà´³à´¿" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "ശനി" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ഞായരàµâ€" - -#: utils/dates.py:18 -msgid "January" -msgstr "ജനàµà´µà´°à´¿" - -#: utils/dates.py:18 -msgid "February" -msgstr "ഫെബàµà´°àµà´µà´°à´¿" - -#: utils/dates.py:18 -msgid "March" -msgstr "മാരàµâ€à´šàµà´šàµ" - -#: utils/dates.py:18 -msgid "April" -msgstr "à´à´ªàµà´°à´¿à´²àµâ€" - -#: utils/dates.py:18 -msgid "May" -msgstr "മേയàµ" - -#: utils/dates.py:18 -msgid "June" -msgstr "ജൂണàµâ€" - -#: utils/dates.py:19 -msgid "July" -msgstr "ജൂലൈ" - -#: utils/dates.py:19 -msgid "August" -msgstr "ആഗസàµà´¤àµ" - -#: utils/dates.py:19 -msgid "September" -msgstr "സെപàµà´¤à´‚ബരàµâ€" - -#: utils/dates.py:19 -msgid "October" -msgstr "à´’à´•àµà´Ÿàµ‹à´¬à´°àµâ€" - -#: utils/dates.py:19 -msgid "November" -msgstr "നവംബരàµâ€" - -#: utils/dates.py:20 -msgid "December" -msgstr "ഡിസംബരàµâ€" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ജനàµ." - -#: utils/dates.py:23 -msgid "feb" -msgstr "ഫെബàµà´°àµ." - -#: utils/dates.py:23 -msgid "mar" -msgstr "മാരàµâ€à´šàµà´šàµ" - -#: utils/dates.py:23 -msgid "apr" -msgstr "à´à´ªàµà´°à´¿à´²àµâ€" - -#: utils/dates.py:23 -msgid "may" -msgstr "മേയàµ" - -#: utils/dates.py:23 -msgid "jun" -msgstr "ജൂണàµâ€" - -#: utils/dates.py:24 -msgid "jul" -msgstr "ജൂലൈ" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ആഗസàµà´¤àµ" - -#: utils/dates.py:24 -msgid "sep" -msgstr "സെപàµà´Ÿà´‚." - -#: utils/dates.py:24 -msgid "oct" -msgstr "à´’à´•àµà´Ÿàµ‹." - -#: utils/dates.py:24 -msgid "nov" -msgstr "നവം." - -#: utils/dates.py:24 -msgid "dec" -msgstr "ഡിസം." - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "ജനàµ." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "ഫെബàµà´°àµ." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "മാരàµâ€à´šàµà´šàµ" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "à´à´ªàµà´°à´¿à´²àµâ€" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "മേയàµ" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "ജൂണàµâ€" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "ജൂലൈ" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "ആഗ." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "സെപàµà´¤à´‚." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "à´’à´•àµà´Ÿàµ‹." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "നവം." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "ഡിസം." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "ജനàµà´µà´°à´¿" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "ഫെബàµà´°àµà´µà´°à´¿" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "മാരàµâ€à´šàµà´šàµ" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "à´à´ªàµà´°à´¿à´²àµâ€" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "മേയàµ" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "ജൂണàµâ€" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "ജൂലൈ" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "ആഗസàµà´¤àµ" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "സെപàµà´¤à´‚ബരàµâ€" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "à´’à´•àµà´Ÿàµ‹à´¬à´°àµâ€" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "നവംബരàµâ€" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "ഡിസംബരàµâ€" - -#: utils/text.py:136 -msgid "or" -msgstr "അഥവാ" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "വരàµâ€à´·à´‚" -msgstr[1] "വരàµâ€à´·à´™àµà´™à´³àµâ€" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "മാസം" -msgstr[1] "മാസങàµà´™à´³àµâ€" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "ആഴàµà´šàµà´š" -msgstr[1] "ആഴàµà´šàµà´šà´•à´³àµâ€" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "ദിവസം" -msgstr[1] "ദിവസങàµà´™à´³àµâ€" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "മണികàµà´•àµ‚à´°àµâ€" -msgstr[1] "മണികàµà´•àµ‚à´±àµà´•à´³àµâ€" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "മിനàµà´Ÿàµà´Ÿàµ" -msgstr[1] "മിനàµà´Ÿàµà´Ÿàµà´•à´³àµâ€" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "മിനàµà´Ÿàµà´Ÿàµà´•à´³àµâ€" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "തീയതിയàµà´Ÿàµ† മാതàµà´°àµà´•" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "തീയതിയàµà´‚ സമയവàµà´‚ ചേരàµâ€à´¨àµà´¨ മാതàµà´°àµà´•" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "സമയതàµà´¤à´¿à´¨àµà´±àµ† മാതàµà´°àµà´•" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "വരàµâ€à´·à´‚-മാസം à´Žà´¨àµà´¨ മാതàµà´°àµà´•" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "മാസം-ദിവസം à´Žà´¨àµà´¨ മാതàµà´°àµà´•" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s നെ à´¸àµà´°àµà´·àµà´Ÿà´¿à´šàµà´šàµ." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s നെ മെചàµà´šà´ªàµà´ªàµ†à´Ÿàµà´¤àµà´¤à´¿." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s ഡിലീറàµà´±àµ ചെയàµà´¯à´ªàµà´ªàµ†à´Ÿàµà´Ÿàµ." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/ml/__init__.py b/lib/python2.7/site-packages/django/conf/locale/ml/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/ml/formats.py b/lib/python2.7/site-packages/django/conf/locale/ml/formats.py deleted file mode 100644 index 6cf2335f5..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ml/formats.py +++ /dev/null @@ -1,43 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'N j, Y' -TIME_FORMAT = 'P' -DATETIME_FORMAT = 'N j, Y, P' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'F j' -SHORT_DATE_FORMAT = 'm/d/Y' -SHORT_DATETIME_FORMAT = 'm/d/Y P' -FIRST_DAY_OF_WEEK = 0 # Sunday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%m/%d/%Y', '%m/%d/%y', # '2006-10-25', '10/25/2006', '10/25/06' - # '%b %d %Y', '%b %d, %Y', # 'Oct 25 2006', 'Oct 25, 2006' - # '%d %b %Y', '%d %b, %Y', # '25 Oct 2006', '25 Oct, 2006' - # '%B %d %Y', '%B %d, %Y', # 'October 25 2006', 'October 25, 2006' - # '%d %B %Y', '%d %B, %Y', # '25 October 2006', '25 October, 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%m/%d/%Y %H:%M:%S', # '10/25/2006 14:30:59' - '%m/%d/%Y %H:%M', # '10/25/2006 14:30' - '%m/%d/%Y', # '10/25/2006' - '%m/%d/%y %H:%M:%S', # '10/25/06 14:30:59' - '%m/%d/%y %H:%M', # '10/25/06 14:30' - '%m/%d/%y', # '10/25/06' -) -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -NUMBER_GROUPING = 3 - diff --git a/lib/python2.7/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo deleted file mode 100644 index 1221ad15c..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/mn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po deleted file mode 100644 index 692aea629..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/mn/LC_MESSAGES/django.po +++ /dev/null @@ -1,1149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:10-0400\n" -"PO-Revision-Date: 2011-03-10 03:30+0000\n" -"Last-Translator: Ankhbayar \n" -"Language-Team: Mongolian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Ðраб" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Ðзербажан" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Болгар" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Бенгал" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "БоÑни" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Каталан" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Чех" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "УÑльÑ" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Дани" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Герман" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Грек" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Ðнгли" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Британи Ðнгли" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ИÑпани" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Ðргентинийн ИÑпани" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "МекÑикийн ИÑпани" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "ЭÑтони" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "БаÑк" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "ПерÑ" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ФинлÑнд" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Франц" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Фриз" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Ирланд" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Галици" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ЕврÑй" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Хинди" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Хорват" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Унгар" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Индонези" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "ИÑланд" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Итали" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Япон" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Гүрж" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Кхмер" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Канад" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "СолонгоÑ" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Литва" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Латви" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Македон" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Малайз" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Монгол" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Голланд" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Ðорвеги" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Ðорвеги бокмал" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Ðорвегийн нюнорÑк" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Панжаби" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Польш" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Португал" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Бразилийн Португали" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Румын" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "ОроÑ" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Словак" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Словен" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Ðльбани" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Серби" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Серби латин" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Щвед" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Тамил" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "ТÑлүгү" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Тайланд" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Турк" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Украйн" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Урду" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Вьетнам" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Ð¥Ñтад (Ñ…ÑлбаршуулÑан) " - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Ð¥Ñтад (уламжлалт)" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Зөв утга оруулна уу." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Ð­Ð½Ñ URL Ñ…Ð¾Ð»Ð±Ð¾Ð¾Ñ Ñ…Ò¯Ñ‡Ð¸Ð½Ð³Ò¯Ð¹ ÑÑвÑл буруу байна." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Зөв, хүчинтÑй хаÑг (URL) оруулна уу." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Зөв мÑйл хаÑг оруулна уу" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Ò®ÑÑг, тоо, доогуур зурааÑ, дундуур зурааÑÐ½Ð°Ð°Ñ Ð±Ò¯Ñ€Ð´ÑÑ… зөв 'slug' оруулна уу." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Зөв IPv4 хаÑг оруулна уу. " - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Зөвхөн таÑлалаар туÑгаарлагдÑан цифр оруулна уу." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Ð­Ð½Ñ ÑƒÑ‚Ð³Ð° хамгийн ихдÑÑ %(limit_value)s байх Ñ‘Ñтой. (одоо %(show_value)s " -"байна)" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Ð­Ð½Ñ ÑƒÑ‚Ð³Ð° %(limit_value)s -Ñ Ð±Ð°Ð³Ð° ÑÑвÑл Ñ‚Ñнцүү байх Ñ‘Ñтой." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Ð­Ð½Ñ ÑƒÑ‚Ð³Ð° %(limit_value)s -Ñ Ð¸Ñ… ÑÑвÑл Ñ‚Ñнцүү байх нөхцлийг хангана уу." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ð­Ð½Ñ ÑƒÑ‚Ð³Ñ‹Ð½ Ñ‚ÑмдÑгтийн тоо %(limit_value)d -Ñ Ð±Ð°Ð³Ð° байх Ñ‘Ñтой. (одоо %" -"(show_value)d байна)" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ð­Ð½Ñ ÑƒÑ‚Ð³Ñ‹Ð½ Ñ‚ÑмдÑгтийн тоо %(limit_value)d -Ñ Ð¸Ñ… байх Ñ‘Ñтой. (одоо %" -"(show_value)d байна)" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(field_name)s талбарт давхардахгүй %(date_field)s %(lookup)s оруулна." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(field_label)s-Ñ‚Ñй %(model_name)s-ийг аль Ñ…ÑÐ´Ð¸Ð¹Ð½Ñ Ð¾Ñ€ÑƒÑƒÐ»Ñан байна." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ба" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Ð­Ð½Ñ ÑƒÑ‚Ð³Ð° %r буруу Ñонголт байна." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Ð­Ð½Ñ Ñ…ÑÑгийг хооÑон орхиж болохгүй." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Ð­Ð½Ñ Ñ…ÑÑÑг хооÑон байж болохгүй." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Талбарийн төрөл нь : %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "БүхÑл тоо" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Ð­Ð½Ñ Ð±Ò¯Ñ…Ñл тоон утга байх Ñ‘Ñтой." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Ð­Ð½Ñ True, False-ийн аль нÑг нь байх Ñ‘Ñтой. " - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (ҮнÑн худлын аль нÑг нь)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "БичвÑÑ€ (%(max_length)s хүртÑл)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "ТаÑлалаар туÑгаарлагдÑан бүхÑл тоо" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Огноо (цаггүй)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Огноогоо YYYY-MM-DD гÑÑÑн Ñ…ÑлбÑÑ€ÑÑÑ€ оруулна уу." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Буруу огноо: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Огноо/цагаа ЖЖЖЖ-СС-Ó¨Ó¨ ЦЦ:ММ[:ÑÑ[.uuuuuu]] гÑÑÑн Ñ…ÑлбÑÑ€ÑÑÑ€ оруулна уу." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Огноо (цагтай)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Ð­Ð½Ñ Ð±ÑƒÑ‚Ð°Ñ€Ñ…Ð°Ð¹ тоо байх Ñ‘Ñтой." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Ðравтын бутархайт тоо" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Цахим шуудангийн хаÑг" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Файлын зам " - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Ð­Ð½Ñ Ñ…ÑÑÑгт бутархай тоо оруулна" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Хөвөгч таÑлалтай тоо" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Том (8 байт) бүхÑл тоо" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP хаÑг" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Ð­Ð½Ñ ÑƒÑ‚Ð³Ð° None, True, False-ийн аль нÑг байх Ñ‘Ñтой." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (ҮнÑн, худал, ÑÑвÑл юу ч биш)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ТекÑÑ‚" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Цаг" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Цагийг HH:MM[:ss[.uuuuuu]] гÑÑÑн Ñ…ÑлбÑÑ€ÑÑÑ€ оруулна уу. " - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML текÑÑ‚" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr " pk %(pk)r-тай %(model)s модель байхгүй байна." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Гадаад түлхүүр (тодорхой төрлийн Ñ…Ð¾Ð»Ð±Ð¾Ð¾Ñ Ñ‚Ð°Ð»Ð±Ð°Ñ€)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "ÐÑг-нÑг холбооÑ" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Олон-олон холбооÑ" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Олон утга Ñонгохын тулд \"Control\" (Mac дÑÑÑ€ \"Command\") товчыг ашиглана." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Ð­Ð½Ñ Ñ‚Ð°Ð»Ð±Ð°Ñ€Ñ‹Ð³ бөглөх шаардлагатай." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "БүхÑл тоон утга оруулна уу." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Тоон утга оруулна уу." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Энд нийтдÑÑ %s -Ð°Ð°Ñ Ð¾Ð»Ð¾Ð½Ð³Ò¯Ð¹ цифр байх Ñ‘Ñтой." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Энд %s -Ð°Ð°Ñ Ð¾Ð»Ð¾Ð½Ð³Ò¯Ð¹ бутархайн орон байх Ñ‘Ñтой. " - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Энд бутархайн таÑÐ»Ð°Ð»Ð°Ð°Ñ Ó©Ð¼Ð½Ó© %s-Ð°Ð°Ñ Ð¾Ð»Ð¾Ð½Ð³Ò¯Ð¹ цифр байх Ñ‘Ñтой." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Зөв огноо оруулна уу." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Зөв цаг оруулна уу." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Огноо/цаг-ыг зөв оруулна уу." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Файл оруулаагүй байна. МаÑÐ³Ñ‚Ð°Ð°Ñ ÐºÐ¾Ð´Ð»Ð¾Ñ… төрлийг чагтал. " - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Файл оруулаагүй байна." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "ОруулÑан файл хооÑон байна. " - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Ð­Ð½Ñ Ñ„Ð°Ð¹Ð»Ñ‹Ð½ нÑрний урт %(length)d байна. Файлын нÑÑ€ хамгийн ихдÑÑ %(max)d " -"Ñ‚ÑмдÑгтÑÑÑ Ð±Ò¯Ñ€Ð´ÑÑ… нөхцлийг хангана уу." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"ÐÑг бол Ñонголтын чÑгтыг авах ÑÑвÑл файл оруулна уу. ЗÑÑ€Ñг Ñ…ÑÑ€Ñгжих " -"боломжгүй." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Зөв зураг оруулна уу. Таны оруулÑан файл нÑг бол зургийн файл биш ÑÑвÑл " -"гÑмтÑÑн зураг байна." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Зөв Ñонголт Ñ…Ð¸Ð¹Ð½Ñ Ò¯Ò¯. %(value)s гÑÑÑн Ñонголт байхгүй байна." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Өгөгдхүүний жагÑаалтаа оруулна уу." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "ЭрÑмбÑлÑÑ…" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "УÑтгах" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "%(field)s Ñ…ÑÑÑг дÑÑ… давхардÑан утгыг заÑварлана уу. " - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"%(field)s Ñ…ÑÑÑг дÑÑ… давхардÑан утгыг заÑварлана уу. Түүний утгууд " -"давхардахгүй байх Ñ‘Ñтой." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"%(field_name)s Ñ…ÑÑÑг дÑÑ… давхардÑан утгыг заÑварлана уу. %(date_field)s-н %" -"(lookup)s хувьд давхардахгүй байх Ñ‘Ñтой." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Доорх давхардÑан утгуудыг заÑна уу." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Inline обектийн гадаад түлхүүр ЭцÑг обектийн түлхүүртÑй таарахгүй байна. " - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Зөв Ñонголт Ñ…Ð¸Ð¹Ð½Ñ Ò¯Ò¯. Ð­Ð½Ñ ÑƒÑ‚Ð³Ð° Ñонголтонд алга." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Зөв Ñонголт хийгÑÑÑ€Ñй. %s гÑÑÑн Ñонголт байхгүй байна." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" нь primary key талбарт тохирохгүй утга байна." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Одоогийн" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "ЗаÑах" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ЦÑвÑрлÑÑ…" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Тодорхойгүй" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Тийм" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Үгүй" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "тийм,үгүй,магадгүй" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d байт" -msgstr[1] "%(size)d байт" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "шөнө дунд" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "үд дунд" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Даваа гариг" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "ÐœÑгмар гариг" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Лхагва гариг" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "ПүрÑв гариг" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "БааÑан гариг" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "БÑмба гариг" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "ÐÑм гариг" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Дав" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "ÐœÑг" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Лха" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Пүр" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Баа" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "БÑм" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ÐÑм" - -#: utils/dates.py:18 -msgid "January" -msgstr "1-Ñ€ Ñар" - -#: utils/dates.py:18 -msgid "February" -msgstr "2-Ñ€ Ñар" - -#: utils/dates.py:18 -msgid "March" -msgstr "3-Ñ€ Ñар" - -#: utils/dates.py:18 -msgid "April" -msgstr "4-Ñ€ Ñар" - -#: utils/dates.py:18 -msgid "May" -msgstr "5-Ñ€ Ñар" - -#: utils/dates.py:18 -msgid "June" -msgstr "6-Ñ€ Ñар" - -#: utils/dates.py:19 -msgid "July" -msgstr "7-Ñ€ Ñар" - -#: utils/dates.py:19 -msgid "August" -msgstr "8-Ñ€ Ñар" - -#: utils/dates.py:19 -msgid "September" -msgstr "9-Ñ€ Ñар" - -#: utils/dates.py:19 -msgid "October" -msgstr "10-Ñ€ Ñар" - -#: utils/dates.py:19 -msgid "November" -msgstr "11-Ñ€ Ñар" - -#: utils/dates.py:20 -msgid "December" -msgstr "12-Ñ€ Ñар" - -#: utils/dates.py:23 -msgid "jan" -msgstr "1-Ñ€ Ñар" - -#: utils/dates.py:23 -msgid "feb" -msgstr "2-Ñ€ Ñар" - -#: utils/dates.py:23 -msgid "mar" -msgstr "3-Ñ€ Ñар" - -#: utils/dates.py:23 -msgid "apr" -msgstr "4-Ñ€ Ñар" - -#: utils/dates.py:23 -msgid "may" -msgstr "5-Ñ€ Ñар" - -#: utils/dates.py:23 -msgid "jun" -msgstr "6-Ñ€ Ñар" - -#: utils/dates.py:24 -msgid "jul" -msgstr "7-Ñ€ Ñар" - -#: utils/dates.py:24 -msgid "aug" -msgstr "8-Ñ€ Ñар " - -#: utils/dates.py:24 -msgid "sep" -msgstr "9-Ñ€ Ñар" - -#: utils/dates.py:24 -msgid "oct" -msgstr "10-Ñ€ Ñар" - -#: utils/dates.py:24 -msgid "nov" -msgstr "11-Ñ€ Ñар" - -#: utils/dates.py:24 -msgid "dec" -msgstr "12-Ñ€ Ñар" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "1-Ñ€ Ñар." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "2-Ñ€ Ñар." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "3-Ñ€ Ñар." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "4-Ñ€ Ñар." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "5-Ñ€ Ñар." - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "6-Ñ€ Ñар." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "7-Ñ€ Ñар." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "8-Ñ€ Ñар." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "9-Ñ€ Ñар." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "10-Ñ€ Ñар." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "11-Ñ€ Ñар." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "12-Ñ€ Ñар." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Хулгана" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "ҮхÑÑ€" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Бар" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Туулай" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Луу" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Могой" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Морь" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Хонь" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Бич" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Тахиа" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Ðохой" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Гахай" - -#: utils/text.py:136 -msgid "or" -msgstr "буюу" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "жил " -msgstr[1] "жил" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "Ñар" -msgstr[1] "Ñар" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "долоо хоног" -msgstr[1] "долоо хоног" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "өдөр" -msgstr[1] "өдөр" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "цаг" -msgstr[1] "цаг" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "минут" -msgstr[1] "минут" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "минут" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "Y-m-d" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "Y-m-d, H:i:s" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "TIME_FORMAT" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "Y F" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s амжилттай Ò¯Ò¯ÑлÑÑ." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr " %(verbose_name)s амжилттай шинÑчлÑгдлÑÑ." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s уÑтлаа." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Он тодорхойлоогүй байна" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Сар тодорхойлоогүй байна" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Өдөр тодорхойлоогүй байна" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Долоо хоног тодорхойлоогүй байна" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "%(verbose_name_plural)s боломжгүй" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"%(class_name)s.allow_future нь худлаа ÑƒÑ‡Ñ€Ð°Ð°Ñ %(verbose_name_plural)s нь " -"боломжгүй." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" -"Буруу огноо. '%(datestr)s' огноо '%(format)s' Ñ…ÑлбÑрт тохирохгүй байна." - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Шүүлтүүрт таарах %(verbose_name)s олдÑонгүй " - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Ð¥ÑƒÑƒÐ´Ð°Ñ Ð½ÑŒ 'last' биш, ÑÑвÑл тоонд хөрвүүлÑж болохгүй байна." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "(%(page_number)s)-Ñ€ Ñ…ÑƒÑƒÐ´Ð°Ñ Ð±Ð°Ð¹Ñ…Ð³Ò¯Ð¹" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" -"ЖагÑаалт хооÑон байна Ð±Ð°Ñ '%(class_name)s.allow_empty' ийг False гÑж өгÑөн." diff --git a/lib/python2.7/site-packages/django/conf/locale/mn/__init__.py b/lib/python2.7/site-packages/django/conf/locale/mn/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/mn/formats.py b/lib/python2.7/site-packages/django/conf/locale/mn/formats.py deleted file mode 100644 index 54a46a903..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/mn/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'd F Y' -TIME_FORMAT = 'g:i:s A' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -# MONTH_DAY_FORMAT = -SHORT_DATE_FORMAT = 'j M Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -# DECIMAL_SEPARATOR = -# THOUSAND_SEPARATOR = -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo deleted file mode 100644 index 8e4a4b946..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/nb/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po deleted file mode 100644 index c312384bc..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/nb/LC_MESSAGES/django.po +++ /dev/null @@ -1,1134 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:10-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: jonklo \n" -"Language-Team: Norwegian BokmÃ¥l <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabisk" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Aserbajdsjansk" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgarsk" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalsk" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnisk" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalansk" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tsjekkisk" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Walisisk" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Dansk" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Tysk" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Gresk" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Engelsk" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Engelsk (britisk)" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spansk" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentinsk spansk" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Meksikansk spansk" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estisk" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskisk" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persisk" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finsk" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Fransk" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisisk" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irsk" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galisisk" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebraisk" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroatisk" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Ungarsk" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonesisk" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandsk" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiensk" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japansk" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgisk" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreansk" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Litauisk" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Latvisk" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Makedonsk" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongolsk" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Nederlandsk" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norsk" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norsk (bokmÃ¥l)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norsk (nynorsk)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Panjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polsk" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugisisk" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brasiliansk portugisisk" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rumensk" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Russisk" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovakisk" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slovensk" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albansk" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbisk" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbisk latin" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Svensk" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thai" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Tyrkisk" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrainsk" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamesisk" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Forenklet kinesisk" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Tradisjonell kinesisk" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Oppgi en gyldig verdi." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Nettadressen fører til en side som ikke eksisterer." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Oppgi en gyldig nettadresse." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Oppgi en gyldig e-postadresse." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Oppgi en gyldig 'slug' bestÃ¥ende av bokstaver, nummer, understreker eller " -"bindestreker." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Oppgi en gyldig IPv4-adresse." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Oppgi kun tall adskilt med komma." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Verdien mÃ¥ være %(limit_value)s (den er %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Verdien mÃ¥ være mindre enn eller lik som %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Verdien mÃ¥ være større enn eller lik som %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "Verdien mÃ¥ minimum ha %(limit_value)d tegn (den har %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "Verdien kan maksimalt ha %(limit_value)d tegn (den er %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s mÃ¥ være unik for %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s med %(field_label)s finnes allerede." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "og" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Verdien %r er ikke et gyldig valg." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Feltet kan ikke være tomt." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Feltet kan ikke være blankt." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Felt av typen: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Heltall" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Verdien mÃ¥ være et heltall." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Verdien mÃ¥ være True eller False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolsk (True eller False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Tekst (opp til %(max_length)s tegn)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Heltall adskilt med komma" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Dato (uten tid)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Oppgi en gyldig dato pÃ¥ formen Ã…Ã…Ã…Ã…-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ugyldig dato: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Oppgi dato og tid pÃ¥ formen Ã…Ã…Ã…Ã…-MM-DD TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Dato (med tid)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Verdien mÃ¥ være et desimaltall." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Desimaltall" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-postadresse" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Filsti" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Verdien mÃ¥ være et flyttall." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Flyttall" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Stort (8 byte) heltall" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP-adresse" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Verdien mÃ¥ være None, True eller False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolsk (True, False eller None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Tid" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Oppgi tiden pÃ¥ formen TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "Nettadresse" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML-tekst" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Modell %(model)s med primærnøkkelen %(pk)r finnes ikke." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Fremmednøkkel (type bestemmes av relatert felt)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "En-til-en-relasjon" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Mange-til-mange-relasjon" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Hold nede \"Control\", eller \"Command\" pÃ¥ en Mac, for Ã¥ velge mer enn en." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Feltet er pÃ¥krevet." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Oppgi et heltall." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Oppgi et tall." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Verdien kan ikke ha mer enn %s siffer totalt." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Verdien kan ikke ha mer enn %s desimaler." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Verdien kan ikke ha mer enn %s siffer foran komma." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Oppgi en gyldig dato." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Oppgi et gyldig tidspunkt." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Oppgi gyldig dato og tidspunkt." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Ingen fil ble sendt. Sjekk \"encoding\"-typen pÃ¥ skjemaet." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Ingen fil ble sendt." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Filen er tom." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "Filnavnet kan maksimalt ha %(max)d tegn (det har %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Vennligst last opp en ny fil eller marker fjern-boksen, ikke begge." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Last opp et gyldig bilde. Filen du lastet opp var ødelagt eller ikke et " -"bilde." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Velg et gyldig valg. %(value)s er ikke et av de tilgjengelige valgene." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Oppgi en liste med verdier." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Rekkefølge" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Slett" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Vennligst korriger duplisert data for %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Vennligst korriger duplisert data for %(field)s, som mÃ¥ være unik." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Vennligst korriger duplisert data for %(field_name)s, som mÃ¥ være unik for %" -"(lookup)s i %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Vennligst korriger de dupliserte verdiene nedenfor." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Primærnøkkelen er ikke den samme som foreldreinstansens primærnøkkel." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Velg et gyldig valg. Valget er ikke et av de tilgjengelige valgene." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Velg et gyldig valg. %s er ikke et av de tilgjengelige valgene." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" er ikke en gyldig verdi for en primærnøkkel." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "NÃ¥" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Endre" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Fjern" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Ukjent" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ja" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nei" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ja,nei,kanskje" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "midnatt" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "12:00" - -#: 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:10 -msgid "Mon" -msgstr "man" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "tirs" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "ons" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "tors" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "fre" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "lør" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "søn" - -#: utils/dates.py:18 -msgid "January" -msgstr "Januar" - -#: utils/dates.py:18 -msgid "February" -msgstr "februar" - -#: utils/dates.py:18 -msgid "March" -msgstr "mars" - -#: utils/dates.py:18 -msgid "April" -msgstr "april" - -#: utils/dates.py:18 -msgid "May" -msgstr "mai" - -#: utils/dates.py:18 -msgid "June" -msgstr "juni" - -#: utils/dates.py:19 -msgid "July" -msgstr "juli" - -#: utils/dates.py:19 -msgid "August" -msgstr "august" - -#: utils/dates.py:19 -msgid "September" -msgstr "september" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktober" - -#: utils/dates.py:19 -msgid "November" -msgstr "november" - -#: utils/dates.py:20 -msgid "December" -msgstr "desember" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "des" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mar." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "apr." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "mai" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "jun." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "jul." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "aug." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "des." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Januar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Februar" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Mars" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Mai" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Juni" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Juli" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "August" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "September" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Oktober" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "November" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Desember" - -#: utils/text.py:136 -msgid "or" -msgstr "eller" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "Ã¥r" -msgstr[1] "Ã¥r" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mÃ¥ned" -msgstr[1] "mÃ¥neder" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "uke" -msgstr[1] "uker" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dager" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "time" -msgstr[1] "timer" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutt" -msgstr[1] "minutter" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutter" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j. F Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. F Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s ble opprettet." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s ble oppdatert." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s ble slettet." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Ã…r ikke spesifisert" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "MÃ¥ned ikke spesifisert" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Dag ikke spesifisert" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Uke ikke spesifisert" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Ingen %(verbose_name_plural)s tilgjengelig" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Fremtidig %(verbose_name_plural)s ikke tilgjengelig fordi %(class_name)s." -"allow_future er False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Ugyldig datostreng '%(datestr)s' gitt formatet '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Fant ingen %(verbose_name)s fra spørringen" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Siden er ikke 'last', og kan heller ikke konverteres til et tall." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Ugyldig side (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Tom liste og '%(class_name)s.allow_empty' er False." diff --git a/lib/python2.7/site-packages/django/conf/locale/nb/__init__.py b/lib/python2.7/site-packages/django/conf/locale/nb/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/nb/formats.py b/lib/python2.7/site-packages/django/conf/locale/nb/formats.py deleted file mode 100644 index f20d71219..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/nb/formats.py +++ /dev/null @@ -1,43 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. F Y' -TIME_FORMAT = 'H:i' -DATETIME_FORMAT = 'j. F Y H:i' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'd.m.Y' -SHORT_DATETIME_FORMAT = 'd.m.Y H:i' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' - '%Y-%m-%d', # '2006-10-25', - # '%d. %b %Y', '%d %b %Y', # '25. okt 2006', '25 okt 2006' - # '%d. %b. %Y', '%d %b. %Y', # '25. okt. 2006', '25 okt. 2006' - # '%d. %B %Y', '%d %B %Y', # '25. oktober 2006', '25 oktober 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%Y-%m-%d', # '2006-10-25' - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%d.%m.%y %H:%M:%S', # '25.10.06 14:30:59' - '%d.%m.%y %H:%M', # '25.10.06 14:30' - '%d.%m.%y', # '25.10.06' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = ' ' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo deleted file mode 100644 index 3f3d07e06..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/nl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po deleted file mode 100644 index 776417839..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/nl/LC_MESSAGES/django.po +++ /dev/null @@ -1,1149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:10-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: hvdklauw \n" -"Language-Team: Dutch <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabisch" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azerbaijani" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgaars" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengaals" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnisch" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalaans" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tjechisch" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Welsh" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Deens" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Duits" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Grieks" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Engels" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Brits-Engels" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spaans" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentijns-Spaans" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Mexicaans Spaans" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Ests" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskisch" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Perzisch" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Fins" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Frans" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Fries" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Iers" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galicisch" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebreews" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroatisch" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Hongaars" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonesisch" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "IJslands" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiaans" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japans" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgisch" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreaans" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Litouws" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Lets" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Macedonisch" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongolisch" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Nederlands" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Noors" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Noorse BokmÃ¥l" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Noorse Nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Pools" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugees" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Braziliaans Portugees" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Roemeens" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Russisch" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovaaks" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Sloveens" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanisch" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Servisch" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Servisch Latijn" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Zweeds" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telegu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thais" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turks" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Oekraïens" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamees" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Vereenvoudigd Chinees" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Traditioneel Chinees" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Geef een geldige waarde." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Deze URL lijkt niet te werken." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Geef een geldige URL op." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Geef een geldig e-mailadres op." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Vul een geldigde 'slug' in, bestaande uit letters, cijfers, liggende " -"streepjes en verbindingsstreepjes." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Geef een geldig IPv4-adres op." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Geef alleen cijfers op, gescheiden door komma's." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Zorg ervoor dat deze waarde gelijk is aan %(limit_value)s (het is nu %" -"(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Zorg ervoor dat deze waarde hoogstens %(limit_value)s is." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Zorg ervoor dat deze waarde minstens %(limit_value)s is." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Zorg ervoor dat deze waarde minstens %(limit_value)d karakters bevat (hij " -"heeft er %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Zorg ervoor dat deze waarde hoogstens %(limit_value)d karakters bevat (hij " -"heeft er %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s moet uniek zijn voor %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "Er bestaat al een %(model_name)s met eenzelfde %(field_label)s." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "en" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Waarde %r is geen geldige keuze." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Dit veld mag niet leeg zijn." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Dit veld kan niet leeg zijn" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Veld van type: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Geheel getal" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "De waarde moet een geheel getal zijn." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "De waarde moet of True (Waar) of False (Onwaar) zijn." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (True danwel False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Karakterreeks (hooguit %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Komma-gescheiden gehele getallen" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Datum (zonder tijd)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Geef een geldige datum in JJJJ-MM-DD formaat." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ongeldige datum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Geef geldige datum/tijd in JJJJ-MM-DD UU:MM[:ss[.uuuuuu]] formaat." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Datum (met tijd)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "De waarde moet een decimaal getal zijn." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Decimaal getal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mailadres" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Bestandspad" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "De waarde moet een kommagetal zijn." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Decimaal getal" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Groot (8 byte) geheel getal" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP-adres" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "De waarde moet of None (leeg), True (Waar) of False (Onwaar) zijn." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (True, False of None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Tijd" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Geef een geldige tijd in UU:MM[:ss[.uuuuuu]] formaat." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML-tekst" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Model %(model)s met pk %(pk)r bestaat niet." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Refererende sleutel (type wordt bepaalde door gerelateerde veld)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Één-op-één relatie" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Veel-op-veel relatie" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Houd \"Control\", of \"Command\" op een Mac, ingedrukt om meerdere te " -"selecteren." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Dit veld is verplicht." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Geef een geheel getal op." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Geef een getal op." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Zorg dat er minder dan %s cijfers zijn." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Zorg dat er minder dan %s cijfers na de komma staan." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Zorg dat er minder dan %s cijfers voor de komma staan." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Geef een geldige datum op." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Geef een geldige tijd op." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Geef een geldige datum/tijd op." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"Er was geen bestand verstuurd. Controleer het coderingstype van het " -"formulier." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Er was geen bestand verstuurd." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Het verstuurde bestand is leeg." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"De bestandsnaam mag maximaal %(max)d karakters bevatten (dit zijn er nu %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Upload a.u.b. een bestand of vink de verwijder vink, niet allebei." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Bestand ongeldig. Het bestand dat is gegeven is geen afbeelding of is " -"beschadigd." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Selecteer een geldige keuze. %(value)s is geen beschikbare keuze." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Geef een lijst op met waardes." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Volgorde" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Verwijderen" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Verbeter de dubbele gegevens voor %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Verbeter de dubbele gegevens voor %(field)s, welke uniek moet zijn." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Verbeter de dubbele gegevens voor %(field_name)s, welke uniek moet zijn voor " -"de %(lookup)s in %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Verbeter de dubbele waarden hieronder." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"De secundaire sleutel komt niet overeen met de primaire sleutel van de " -"bovenliggende instantie." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Selecteer een geldige keuze. Deze keuze is niet beschikbaar." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Selecteer een geldige keuze. %s is geen beschikbare keuze." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" is geen geldige waarde voor een primaire sleutel." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Huidige" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Wijzigen" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Verwijder" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Onbekend" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ja" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nee" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ja,nee,misschien" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "middernacht" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "middag" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "maandag" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "dinsdag" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "woensdag" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "donderdag" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "vrijdag" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "zaterdag" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "zondag" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "ma" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "di" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "woe" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "don" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "vrij" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "zat" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "zon" - -#: utils/dates.py:18 -msgid "January" -msgstr "januari" - -#: utils/dates.py:18 -msgid "February" -msgstr "februari" - -#: utils/dates.py:18 -msgid "March" -msgstr "maart" - -#: utils/dates.py:18 -msgid "April" -msgstr "april" - -#: utils/dates.py:18 -msgid "May" -msgstr "mei" - -#: utils/dates.py:18 -msgid "June" -msgstr "juni" - -#: utils/dates.py:19 -msgid "July" -msgstr "juli" - -#: utils/dates.py:19 -msgid "August" -msgstr "augustus" - -#: utils/dates.py:19 -msgid "September" -msgstr "september" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktober" - -#: utils/dates.py:19 -msgid "November" -msgstr "november" - -#: utils/dates.py:20 -msgid "December" -msgstr "december" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mrt" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mei" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "jan" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "feb" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mrt" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "apr" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "mei" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "jun" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "jul" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "aug" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "sep" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "okt" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "dec" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "januari" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "februari" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "maart" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "april" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "mei" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "juni" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "july" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "augustus" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "september" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "oktober" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "november" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "december" - -#: utils/text.py:136 -msgid "or" -msgstr "of" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "jaar" -msgstr[1] "jaren" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "maand" -msgstr[1] "maanden" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "week" -msgstr[1] "weken" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagen" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "uur" -msgstr[1] "uur" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuut" -msgstr[1] "minuten" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuten" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j-n-Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j-n-Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "De %(verbose_name)s is succesvol aangemaakt." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "De %(verbose_name)s is succesvol aangepast." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "De %(verbose_name)s is verwijderd." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Geen jaar opgegeven" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Geen maand opgegeven" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Geen dag opgegeven" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Geen week opgegeven" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Geen %(verbose_name_plural)s beschikbaar" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Geen toekomstige %(verbose_name_plural)s beschikbaar omdat %(class_name)s." -"allow_future de waarde False (Onwaar) heeft." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Ongeldige datum tekst '%(datestr)s' op basis van formaat '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Geen %(verbose_name)s gevonden die voldoet aan de query" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Pagina is niet 'last' en kan ook niet geconverteerd worden naar een int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Ongeldige pagina (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" -"Lege lijst en %(class_name)s.allow_empty heeft de waarde False (Onwaar)." diff --git a/lib/python2.7/site-packages/django/conf/locale/nl/__init__.py b/lib/python2.7/site-packages/django/conf/locale/nl/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/nl/formats.py b/lib/python2.7/site-packages/django/conf/locale/nl/formats.py deleted file mode 100644 index 758737e8c..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/nl/formats.py +++ /dev/null @@ -1,53 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' # '20 januari 2009' -TIME_FORMAT = 'H:i' # '15:23' -DATETIME_FORMAT = 'j F Y H:i' # '20 januari 2009 15:23' -YEAR_MONTH_FORMAT = 'F Y' # 'januari 2009' -MONTH_DAY_FORMAT = 'j F' # '20 januari' -SHORT_DATE_FORMAT = 'j-n-Y' # '20-1-2009' -SHORT_DATETIME_FORMAT = 'j-n-Y H:i' # '20-1-2009 15:23' -FIRST_DAY_OF_WEEK = 1 # Monday (in Dutch 'maandag') - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d-%m-%Y', '%d-%m-%y', '%Y-%m-%d', # '20-01-2009', '20-01-09', '2009-01-20' - # '%d %b %Y', '%d %b %y', # '20 jan 2009', '20 jan 09' - # '%d %B %Y', '%d %B %y', # '20 januari 2009', '20 januari 09' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '15:23:35' - '%H.%M:%S', # '15.23:35' - '%H.%M', # '15.23' - '%H:%M', # '15:23' -) -DATETIME_INPUT_FORMATS = ( - # With time in %H:%M:%S : - '%d-%m-%Y %H:%M:%S', '%d-%m-%y %H:%M:%S', '%Y-%m-%d %H:%M:%S', # '20-01-2009 15:23:35', '20-01-09 15:23:35', '2009-01-20 15:23:35' - # '%d %b %Y %H:%M:%S', '%d %b %y %H:%M:%S', # '20 jan 2009 15:23:35', '20 jan 09 15:23:35' - # '%d %B %Y %H:%M:%S', '%d %B %y %H:%M:%S', # '20 januari 2009 15:23:35', '20 januari 2009 15:23:35' - # With time in %H.%M:%S : - '%d-%m-%Y %H.%M:%S', '%d-%m-%y %H.%M:%S', # '20-01-2009 15.23:35', '20-01-09 15.23:35' - # '%d %b %Y %H.%M:%S', '%d %b %y %H.%M:%S', # '20 jan 2009 15.23:35', '20 jan 09 15.23:35' - # '%d %B %Y %H.%M:%S', '%d %B %y %H.%M:%S', # '20 januari 2009 15.23:35', '20 januari 2009 15.23:35' - # With time in %H:%M : - '%d-%m-%Y %H:%M', '%d-%m-%y %H:%M', '%Y-%m-%d %H:%M', # '20-01-2009 15:23', '20-01-09 15:23', '2009-01-20 15:23' - # '%d %b %Y %H:%M', '%d %b %y %H:%M', # '20 jan 2009 15:23', '20 jan 09 15:23' - # '%d %B %Y %H:%M', '%d %B %y %H:%M', # '20 januari 2009 15:23', '20 januari 2009 15:23' - # With time in %H.%M : - '%d-%m-%Y %H.%M', '%d-%m-%y %H.%M', # '20-01-2009 15.23', '20-01-09 15.23' - # '%d %b %Y %H.%M', '%d %b %y %H.%M', # '20 jan 2009 15.23', '20 jan 09 15.23' - # '%d %B %Y %H.%M', '%d %B %y %H.%M', # '20 januari 2009 15.23', '20 januari 2009 15.23' - # Without time : - '%d-%m-%Y', '%d-%m-%y', '%Y-%m-%d', # '20-01-2009', '20-01-09', '2009-01-20' - # '%d %b %Y', '%d %b %y', # '20 jan 2009', '20 jan 09' - # '%d %B %Y', '%d %B %y', # '20 januari 2009', '20 januari 2009' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/nn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/nn/LC_MESSAGES/django.mo deleted file mode 100644 index 937946482..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/nn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po deleted file mode 100644 index ce1168b8e..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/nn/LC_MESSAGES/django.po +++ /dev/null @@ -1,1138 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:10-0400\n" -"PO-Revision-Date: 2011-03-07 08:22+0000\n" -"Last-Translator: hgrimelid \n" -"Language-Team: Norwegian Nynorsk \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabisk" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Aserbajansk" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgarsk" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalsk" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnisk" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalansk" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tsjekkisk" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Walisisk" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Dansk" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Tysk" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Gresk" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Engelsk" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Engelsk (britisk)" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spansk" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentinsk spansk" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Spansk (meksikansk)" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estisk" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskisk" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persisk" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finsk" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Fransk" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisisk" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irsk" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galisisk" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebraisk" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroatisk" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Ungarsk" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonesisk" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandsk" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiensk" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japansk" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgisk" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreansk" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Litauisk" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Latvisk" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Makedonsk" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongolsk" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Nederlandsk" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norsk" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norsk (bokmÃ¥l)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norsk (nynorsk)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polsk" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugisisk" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brasiliansk portugisisk" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rumensk" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Russisk" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovakisk" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slovensk" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albansk" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbisk" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbisk latin" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Svensk" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thai" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Tyrkisk" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrainsk" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamesisk" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Simplifisert kinesisk" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Tradisjonell kinesisk" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Oppgje ein gyldig verdi." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Nettadressa fører til ei side som ikkje eksisterar." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Oppgje ei gyldig nettadresse." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Oppgje ei gyldig e-postadresse." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Oppgje ein gyldig 'slug' som bestÃ¥r av bokstavar, nummer, understrekar eller " -"bindestrekar." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Oppgje ei gyldig IPv4-adresse." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Oppgje berre tall skild med komma." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Verdien mÃ¥ minimum ha %(limit_value)s teikn (den er %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Verdien mÃ¥ vere mindre enn eller lik %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Verdien mÃ¥ vere større enn eller lik %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "Verdien mÃ¥ minimum ha %(limit_value)d teikn (den er %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Verdien kan maksimalt ha %(limit_value)d teikn (den er %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s mÃ¥ vere unik for %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s med %(field_label)s fins allereie." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "og" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Verdi %r er eit ugyldig val." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Feltet kan ikkje vere tomt." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Feltet kan ikkje vere tomt." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Felt av typen: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Heiltal" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Verdien mÃ¥ vere eit heltall." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Verdien mÃ¥ vere True eller False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolsk (True eller False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Tekst (opp til %(max_length)s teikn)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Heiltal skild med komma" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Dato (utan tid)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Oppgje ein gyldig dato pÃ¥ forma Ã…Ã…Ã…Ã…-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ugyldig dato: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Oppgje dato og tid pÃ¥ forma Ã…Ã…Ã…Ã…-MM-DD TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Dato (med tid)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Verdien mÃ¥ vere eit desimaltall." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Desimaltall" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-postadresse" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Filsti" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Verdien mÃ¥ vere eit flyttall." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Flyttall" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Stort (8 bitar) heiltal" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP-adresse" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Verdien mÃ¥ vere None, True eller False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolsk (True, False eller None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Tid" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Oppgje tida pÃ¥ forma TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "Nettadresse" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML-tekst" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Modellen %(model)s med primærnøkkelen %(pk)r eksisterer ikkje." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Primærnøkkel (type bestemt av relatert felt)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Ein-til-ein-forhold" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Mange-til-mange-forhold" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Hald nede \"Control\", eller \"Command\" pÃ¥ ein Mac, for Ã¥ velge meir enn " -"éin." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Feltet er pÃ¥kravd." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Oppgje eit heiltall." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Oppgje eit tall." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Verdien kan ikkje ha meir enn %s siffer totalt." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Verdien kan ikkie ha meir enn %s desimalar." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Verdien kan ikkje ha meir enn %s siffer framfor komma." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Oppgje ein gyldig dato." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Oppgje eit gyldig tidspunkt." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Oppgje gyldig dato og tidspunkt." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Inga fil vart sendt. Sjekk \"encoding\"-typen pÃ¥ skjemaet." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Inga fil vart sendt." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Fila er tom." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "Filnamnet kan maksimalt ha %(max)d teikn (det har %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Last enten opp ei fil eller huk av i avkryssingsboksen." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Last opp eit gyldig bilete. Fila du lasta opp var ødelagt eller ikkje eit " -"bilete." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Velg eit gyldig valg. %(value)s er ikkje eit av dei tilgjengelege valga." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Oppgje ei liste med verdiar." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Rekkefølge" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Slett" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Korriger dupliserte data for %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Korriger dupliserte data for %(field)s, som mÃ¥ vere unike." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Korriger dupliserte data for %(field_name)s, som mÃ¥ vere unike for %(lookup)" -"s i %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Korriger dei dupliserte verdiane nedanfor." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Primærnøkkelen er ikkje den samme som foreldreinstansen sin primærnøkkel." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Velg eit gyldig valg. Valget er ikkje eit av dei tilgjengelege valga." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Velg eit gyldig valg. %s er ikkje eit av dei tilgjengelege valga." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" er ikkje ein gyldig verdi for ein primærnøkkel." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Noverande" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Endre" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Tøm" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Ukjend" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ja" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nei" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ja,nei,kanskje" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "midnatt" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "12:00" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "mÃ¥ndag" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "tysdag" - -#: 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 "laurdag" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "søndag" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "man" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "tys" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "ons" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "tor" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "fre" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "lau" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "søn" - -#: utils/dates.py:18 -msgid "January" -msgstr "januar" - -#: utils/dates.py:18 -msgid "February" -msgstr "februar" - -#: utils/dates.py:18 -msgid "March" -msgstr "mars" - -#: utils/dates.py:18 -msgid "April" -msgstr "april" - -#: utils/dates.py:18 -msgid "May" -msgstr "mai" - -#: utils/dates.py:18 -msgid "June" -msgstr "juni" - -#: utils/dates.py:19 -msgid "July" -msgstr "juli" - -#: utils/dates.py:19 -msgid "August" -msgstr "august" - -#: utils/dates.py:19 -msgid "September" -msgstr "september" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktober" - -#: utils/dates.py:19 -msgid "November" -msgstr "november" - -#: utils/dates.py:20 -msgid "December" -msgstr "desember" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mars" - -#: utils/dates.py:23 -msgid "apr" -msgstr "april" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "juni" - -#: utils/dates.py:24 -msgid "jul" -msgstr "juli" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "des" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mars" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "april" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "mai" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "juni" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "juli" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "aug." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "sep." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "des." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Januar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Februar" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Mars" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Mai" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Juni" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Juli" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "August" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "September" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Oktober" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "November" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Desember" - -#: utils/text.py:136 -msgid "or" -msgstr "eller" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "Ã¥r" -msgstr[1] "Ã¥r" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mÃ¥nad" -msgstr[1] "mÃ¥nadar" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "veke" -msgstr[1] "veker" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagar" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "time" -msgstr[1] "timar" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutt" -msgstr[1] "minuttar" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuttar" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j. F Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. F Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s vart oppretta." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s vart oppdatert." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s vart sletta." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Ã…rstal ikkje spesifisert" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "MÃ¥nad ikkje spesifisert" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Dag ikkje spesifisert" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Veke ikkje spesifisert" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "%(verbose_name_plural)s tilgjengeleg" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Framtidig %(verbose_name_plural)s er ikkje tilgjengeleg fordi %(class_name)s." -"allow_future er sett til False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Ugyldig datostreng '%(datestr)s' gitt format '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Fann ingen %(verbose_name)s som korresponderte med spørringa" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Sida er ikkje 'last' og kan heller ikkje konverterast til eit tal." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Ugyldig side (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Tom liste og '%(class_name)s.allow_empty' er False." diff --git a/lib/python2.7/site-packages/django/conf/locale/nn/__init__.py b/lib/python2.7/site-packages/django/conf/locale/nn/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/nn/formats.py b/lib/python2.7/site-packages/django/conf/locale/nn/formats.py deleted file mode 100644 index f20d71219..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/nn/formats.py +++ /dev/null @@ -1,43 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. F Y' -TIME_FORMAT = 'H:i' -DATETIME_FORMAT = 'j. F Y H:i' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'd.m.Y' -SHORT_DATETIME_FORMAT = 'd.m.Y H:i' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' - '%Y-%m-%d', # '2006-10-25', - # '%d. %b %Y', '%d %b %Y', # '25. okt 2006', '25 okt 2006' - # '%d. %b. %Y', '%d %b. %Y', # '25. okt. 2006', '25 okt. 2006' - # '%d. %B %Y', '%d %B %Y', # '25. oktober 2006', '25 oktober 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%Y-%m-%d', # '2006-10-25' - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%d.%m.%y %H:%M:%S', # '25.10.06 14:30:59' - '%d.%m.%y %H:%M', # '25.10.06 14:30' - '%d.%m.%y', # '25.10.06' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = ' ' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/no/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/no/LC_MESSAGES/django.mo deleted file mode 100644 index 7fd368f25..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/no/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/no/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/no/LC_MESSAGES/django.po deleted file mode 100644 index 50fad261f..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/no/LC_MESSAGES/django.po +++ /dev/null @@ -1,1134 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:10-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: jonklo \n" -"Language-Team: Norwegian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: no\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabisk" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Aserbajdsjansk" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgarsk" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalsk" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosnisk" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalansk" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tsjekkisk" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Walisisk" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Dansk" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Tysk" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Gresk" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Engelsk" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Engelsk (britisk)" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spansk" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentinsk spansk" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Meksikansk spansk" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estisk" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskisk" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persisk" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finsk" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Fransk" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisisk" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irsk" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galisisk" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebraisk" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroatisk" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Ungarsk" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonesisk" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandsk" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiensk" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japansk" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgisk" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreansk" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Litauisk" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Latvisk" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Makedonsk" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongolsk" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Nederlandsk" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norsk" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norsk (bokmÃ¥l)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norsk (nynorsk)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Panjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polsk" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugisisk" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brasiliansk portugisisk" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rumensk" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Russisk" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovakisk" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slovensk" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albansk" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbisk" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbisk latin" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Svensk" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thai" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Tyrkisk" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrainsk" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamesisk" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Forenklet kinesisk" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Tradisjonell kinesisk" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Oppgi en gyldig verdi." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Nettadressen fører til en side som ikke eksisterer." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Oppgi en gyldig nettadresse." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Oppgi en gyldig e-postadresse." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Oppgi en gyldig 'slug' bestÃ¥ende av bokstaver, nummer, understreker eller " -"bindestreker." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Oppgi en gyldig IPv4-adresse." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Oppgi kun tall adskilt med komma." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Verdien mÃ¥ være %(limit_value)s (den er %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Verdien mÃ¥ være mindre enn eller lik som %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Verdien mÃ¥ være større enn eller lik som %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "Verdien mÃ¥ minimum ha %(limit_value)d tegn (den har %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "Verdien kan maksimalt ha %(limit_value)d tegn (den er %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s mÃ¥ være unik for %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s med %(field_label)s finnes allerede." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "og" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Verdien %r er ikke et gyldig valg." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Feltet kan ikke være tomt." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Feltet kan ikke være blankt." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Felt av typen: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Heltall" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Verdien mÃ¥ være et heltall." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Verdien mÃ¥ være True eller False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolsk (True eller False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Tekst (opp til %(max_length)s tegn)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Heltall adskilt med komma" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Dato (uten tid)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Oppgi en gyldig dato pÃ¥ formen Ã…Ã…Ã…Ã…-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ugyldig dato: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Oppgi dato og tid pÃ¥ formen Ã…Ã…Ã…Ã…-MM-DD TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Dato (med tid)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Verdien mÃ¥ være et desimaltall." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Desimaltall" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-postadresse" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Filsti" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Verdien mÃ¥ være et flyttall." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Flyttall" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Stort (8 byte) heltall" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP-adresse" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Verdien mÃ¥ være None, True eller False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolsk (True, False eller None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Tid" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Oppgi tiden pÃ¥ formen TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "Nettadresse" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML-tekst" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Modell %(model)s med primærnøkkelen %(pk)r finnes ikke." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Fremmednøkkel (type bestemmes av relatert felt)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "En-til-en-relasjon" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Mange-til-mange-relasjon" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Hold nede \"Control\", eller \"Command\" pÃ¥ en Mac, for Ã¥ velge mer enn en." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Feltet er pÃ¥krevet." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Oppgi et heltall." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Oppgi et tall." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Verdien kan ikke ha mer enn %s siffer totalt." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Verdien kan ikke ha mer enn %s desimaler." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Verdien kan ikke ha mer enn %s siffer foran komma." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Oppgi en gyldig dato." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Oppgi et gyldig tidspunkt." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Oppgi gyldig dato og tidspunkt." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Ingen fil ble sendt. Sjekk \"encoding\"-typen pÃ¥ skjemaet." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Ingen fil ble sendt." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Filen er tom." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "Filnavnet kan maksimalt ha %(max)d tegn (det har %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Vennligst last opp en ny fil eller marker fjern-boksen, ikke begge." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Last opp et gyldig bilde. Filen du lastet opp var ødelagt eller ikke et " -"bilde." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Velg et gyldig valg. %(value)s er ikke et av de tilgjengelige valgene." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Oppgi en liste med verdier." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Rekkefølge" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Slett" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Vennligst korriger duplisert data for %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Vennligst korriger duplisert data for %(field)s, som mÃ¥ være unik." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Vennligst korriger duplisert data for %(field_name)s, som mÃ¥ være unik for %" -"(lookup)s i %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Vennligst korriger de dupliserte verdiene nedenfor." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Primærnøkkelen er ikke den samme som foreldreinstansens primærnøkkel." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Velg et gyldig valg. Valget er ikke et av de tilgjengelige valgene." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Velg et gyldig valg. %s er ikke et av de tilgjengelige valgene." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" er ikke en gyldig verdi for en primærnøkkel." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "NÃ¥" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Endre" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Fjern" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Ukjent" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ja" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nei" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ja,nei,kanskje" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "midnatt" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "12:00" - -#: 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:10 -msgid "Mon" -msgstr "man" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "tirs" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "ons" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "tors" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "fre" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "lør" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "søn" - -#: utils/dates.py:18 -msgid "January" -msgstr "Januar" - -#: utils/dates.py:18 -msgid "February" -msgstr "februar" - -#: utils/dates.py:18 -msgid "March" -msgstr "mars" - -#: utils/dates.py:18 -msgid "April" -msgstr "april" - -#: utils/dates.py:18 -msgid "May" -msgstr "mai" - -#: utils/dates.py:18 -msgid "June" -msgstr "juni" - -#: utils/dates.py:19 -msgid "July" -msgstr "juli" - -#: utils/dates.py:19 -msgid "August" -msgstr "august" - -#: utils/dates.py:19 -msgid "September" -msgstr "september" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktober" - -#: utils/dates.py:19 -msgid "November" -msgstr "november" - -#: utils/dates.py:20 -msgid "December" -msgstr "desember" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "des" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mar." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "apr." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "mai" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "jun." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "jul." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "aug." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "des." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Januar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Februar" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Mars" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Mai" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Juni" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Juli" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "August" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "September" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Oktober" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "November" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Desember" - -#: utils/text.py:136 -msgid "or" -msgstr "eller" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "Ã¥r" -msgstr[1] "Ã¥r" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mÃ¥ned" -msgstr[1] "mÃ¥neder" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "uke" -msgstr[1] "uker" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dager" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "time" -msgstr[1] "timer" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutt" -msgstr[1] "minutter" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutter" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j. F Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. F Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s ble opprettet." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s ble oppdatert." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s ble slettet." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Ã…r ikke spesifisert" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "MÃ¥ned ikke spesifisert" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Dag ikke spesifisert" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Uke ikke spesifisert" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Ingen %(verbose_name_plural)s tilgjengelig" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Fremtidig %(verbose_name_plural)s ikke tilgjengelig fordi %(class_name)s." -"allow_future er False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Ugyldig datostreng '%(datestr)s' gitt formatet '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Fant ingen %(verbose_name)s fra spørringen" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Siden er ikke 'last', og kan heller ikke konverteres til et tall." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Ugyldig side (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Tom liste og '%(class_name)s.allow_empty' er False." diff --git a/lib/python2.7/site-packages/django/conf/locale/no/__init__.py b/lib/python2.7/site-packages/django/conf/locale/no/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/no/formats.py b/lib/python2.7/site-packages/django/conf/locale/no/formats.py deleted file mode 100644 index f20d71219..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/no/formats.py +++ /dev/null @@ -1,43 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. F Y' -TIME_FORMAT = 'H:i' -DATETIME_FORMAT = 'j. F Y H:i' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'd.m.Y' -SHORT_DATETIME_FORMAT = 'd.m.Y H:i' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%d.%m.%Y', '%d.%m.%y', # '2006-10-25', '25.10.2006', '25.10.06' - '%Y-%m-%d', # '2006-10-25', - # '%d. %b %Y', '%d %b %Y', # '25. okt 2006', '25 okt 2006' - # '%d. %b. %Y', '%d %b. %Y', # '25. okt. 2006', '25 okt. 2006' - # '%d. %B %Y', '%d %B %Y', # '25. oktober 2006', '25 oktober 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%Y-%m-%d', # '2006-10-25' - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%d.%m.%y %H:%M:%S', # '25.10.06 14:30:59' - '%d.%m.%y %H:%M', # '25.10.06 14:30' - '%d.%m.%y', # '25.10.06' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = ' ' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo deleted file mode 100644 index c69013413..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/pa/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po deleted file mode 100644 index c147a1e27..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/pa/LC_MESSAGES/django.po +++ /dev/null @@ -1,1125 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:10-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: aalam \n" -"Language-Team: Panjabi (Punjabi) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pa\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ਅਰਬੀ" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "ਬà©à¨²à¨—ਾਰੀਆਈ" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "ਬੰਗਾਲੀ" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "ਬੋਸਨੀਆਈ" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "ਕਾਟਾਲਾਨ" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ਚੈੱਕ" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "ਵੈਲਸ਼" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "ਡੈਨਿਸ਼" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "ਜਰਮਨ" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "ਗਰੀਕ" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ਅੰਗਰੇਜ਼ੀ" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "ਬਰਤਾਨੀਵੀਂ ਅੰਗਰੇਜ਼ੀ" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ਸਪੇਨੀ" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "ਅਰਜਨਟੀਨੀ ਸਪੇਨੀ" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "ਈਸਟੋਨੀਆਈ" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "ਬਸਕਿਊ" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "ਪਰਸ਼ੀਆਈ" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ਫੈਨਿਸ਼" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "ਫਰੈਂਚ" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "ਫ਼ਾਰਸੀ" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ਆਈਰਸ਼" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "ਗਲੀਸੀਆਈ" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ਹੈਬਰਿਊ" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "ਹਿੰਦੀ" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "ਕਰੋਆਟੀਆਈ" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ਹੰਗਰੀਆਈ" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "ਇੰਡੋਨੇਸ਼ੀਆਈ" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "ਆਈਸਲੈਂਡਿਕ" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ਇਤਾਲਵੀ" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ਜਾਪਾਨੀ" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "ਜਾਰਜੀਆਈ" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "ਖਮੀਰ" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "ਕੰਨੜ" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "ਕੋਰੀਆਈ" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "ਲੀਥà©à¨¨à©€à¨†à¨ˆ" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "ਲਾਟਵੀਅਨ" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "ਮੈਕਡੋਨੀਆਈ" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "ਮਲਿਆਲਮ" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "ਮੰਗੋਲੀਆਈ" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "ਡੱਚ" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "ਨਾਰਵੇਗੀਆਈ" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "ਨਾਰਵੇਗੀਆਈ ਬੋਕਮਾਲ" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "ਨਾਰਵੇਗੀਅਨ ਨਯਨੋਰਸਕ" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "ਪੰਜਾਬੀ" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "ਪੋਲੈਂਡੀ" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "ਪà©à¨°à¨¤à¨—ਾਲੀ" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "ਬਰਾਜ਼ੀਲੀ ਪà©à¨°à¨¤à¨—ਾਲੀ" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "ਰੋਮਾਨੀਆਈ" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "ਰੂਸੀ" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "ਸਲੋਵਾਕ" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "ਸਲੋਵੀਨੀਆਈ" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "ਅਲਬੀਨੀਆਈ" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "ਸਰਬੀਆਈ" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "ਸਰਬੀਆਈ ਲੈਟਿਨ" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "ਸਵੀਡਨੀ" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "ਤਾਮਿਲ" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "ਤੇਲਗੂ" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "ਥਾਈ" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "ਤà©à¨°à¨•" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ਯੂਕਰੇਨੀ" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "ਵੀਅਤਨਾਮੀ" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "ਸਧਾਰਨ ਚੀਨੀ" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "ਮੂਲ ਚੀਨੀ" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "ਠੀਕ ਮà©à©±à¨² ਦਿਓ" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "ਠੀਕ URL ਦਿਉ।" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "ਠੀਕ ਈਮੇਲ à¨à¨¡à¨°à©ˆà©±à¨¸ ਦਿਓ ਜੀ।" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ਅਤੇ" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "ਖੇਤਰ ਦੀ ਕਿਸਮ: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "ਅੰਕ" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "ਇਹ ਮà©à©±à¨² ਪੂਰਨ ਅੰਕ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ।" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "ਇਹ ਮà©à©±à¨² ਠੀਕ ਜਾਂ ਗਲਤ ਹੋ ਸਕਦਾ ਹੈ।" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "ਮਿਤੀ (ਬਿਨਾਂ ਸਮਾਂ)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "ਗਲਤ ਮਿਤੀ: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "ਮਿਤੀ (ਸਮੇਂ ਨਾਲ)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "ਦਸ਼ਮਲਵ ਅੰਕ" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ਈਮੇਲ à¨à¨¡à¨°à©ˆà©±à¨¸" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "ਫਾਇਲ ਪਾਥ" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP à¨à¨¡à¨°à©ˆà©±à¨¸" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ਟੈਕਸਟ" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "ਸਮਾਂ" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML ਟੈਕਸਟ" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "ਇਹ ਖੇਤਰ ਲਾਜ਼ਮੀ ਹੈ।" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "ਨੰਬਰ ਦਿਓ।" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "ਠੀਕ ਮਿਤੀ ਦਿਓ।" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "ਠੀਕ ਸਮਾਂ ਦਿਓ।" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "ਠੀਕ ਮਿਤੀ/ਸਮਾਂ ਦਿਓ।" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "ਕੋਈ ਫਾਇਲ ਨਹੀਂ ਭੇਜੀ।" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "ਦਿੱਤੀ ਫਾਇਲ ਖਾਲੀ ਹੈ।" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "ਮà©à©±à¨² ਦੀ ਲਿਸਟ ਦਿਓ।" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "ਲੜੀ" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "ਹਟਾਓ" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "ਮੌਜੂਦਾ" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "ਬਦਲੋ" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ਸਾਫ਼ ਕਰੋ" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "ਅਣਜਾਣ" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "ਹਾਂ" - -#: forms/widgets.py:548 -msgid "No" -msgstr "ਨਹੀਂ" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ਹਾਂ,ਨਹੀਂ,ਸ਼ਾਇਦ" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d ਬਾਈਟ" -msgstr[1] "%(size)d ਬਾਈਟ" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "ਸ਼ਾਮ" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "ਸਵੇਰ" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "ਅੱਧੀ-ਰਾਤ" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "ਨੂਨ" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "ਸੋਮਵਾਰ" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "ਮੰਗਲਵਾਰ" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "ਬà©à©±à¨§à¨µà¨¾à¨°" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "ਵੀਰਵਾਰ" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "ਸ਼à©à©±à¨•à¨°à¨µà¨¾à¨°" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "ਸ਼ਨਿੱਚਰਵਾਰ" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "à¨à¨¤à¨µà¨¾à¨°" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "ਸੋਮ" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "ਮੰਗ" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "ਬà©à©±à¨§" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "ਵੀਰ" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "ਸ਼à©à©±à¨•" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "ਸ਼ਨਿੱ" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "à¨à¨¤" - -#: utils/dates.py:18 -msgid "January" -msgstr "ਜਨਵਰੀ" - -#: utils/dates.py:18 -msgid "February" -msgstr "ਫਰਵਰੀ" - -#: utils/dates.py:18 -msgid "March" -msgstr "ਮਾਰਚ" - -#: utils/dates.py:18 -msgid "April" -msgstr "ਅਪਰੈਲ" - -#: utils/dates.py:18 -msgid "May" -msgstr "ਮਈ" - -#: utils/dates.py:18 -msgid "June" -msgstr "ਜੂਨ" - -#: utils/dates.py:19 -msgid "July" -msgstr "ਜà©à¨²à¨¾à¨ˆ" - -#: utils/dates.py:19 -msgid "August" -msgstr "ਅਗਸਤ" - -#: utils/dates.py:19 -msgid "September" -msgstr "ਸਤੰਬਰ" - -#: utils/dates.py:19 -msgid "October" -msgstr "ਅਕਤੂਬਰ" - -#: utils/dates.py:19 -msgid "November" -msgstr "ਨਵੰਬਰ" - -#: utils/dates.py:20 -msgid "December" -msgstr "ਦਸੰਬਰ" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ਜਨ" - -#: utils/dates.py:23 -msgid "feb" -msgstr "ਫਰ" - -#: utils/dates.py:23 -msgid "mar" -msgstr "ਮਾਰ" - -#: utils/dates.py:23 -msgid "apr" -msgstr "ਅਪ" - -#: utils/dates.py:23 -msgid "may" -msgstr "ਮਈ" - -#: utils/dates.py:23 -msgid "jun" -msgstr "ਜੂਨ" - -#: utils/dates.py:24 -msgid "jul" -msgstr "ਜà©à¨²" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ਅਗ" - -#: utils/dates.py:24 -msgid "sep" -msgstr "ਸਤੰ" - -#: utils/dates.py:24 -msgid "oct" -msgstr "ਅਕ" - -#: utils/dates.py:24 -msgid "nov" -msgstr "ਨਵੰ" - -#: utils/dates.py:24 -msgid "dec" -msgstr "ਦਸੰ" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "ਜਨ" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "ਫਰ" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "ਮਾਰ" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "ਅਪ" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "ਮਈ" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "ਜੂਨ" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "ਜà©à¨²" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "ਅਗ" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "ਸਤੰ" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "ਅਕਤੂ" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "ਨਵੰ" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "ਦਸੰ" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "ਜਨਵਰੀ" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "ਫਰਵਰੀ" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "ਮਾਰਚ" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "ਅਪਰੈਲ" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "ਮਈ" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "ਜੂਨ" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "ਜà©à¨²à¨¾à¨ˆ" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "ਅਗਸਤ" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "ਸਤੰਬਰ" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "ਅਕਤੂਬਰ" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "ਨਵੰਬਰ" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "ਦਸੰਬਰ" - -#: utils/text.py:136 -msgid "or" -msgstr "ਜਾਂ" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "ਸਾਲ" -msgstr[1] "ਸਾਲ" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "ਮਹੀਨਾ" -msgstr[1] "ਮਹੀਨਾ" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "ਹਫਤਾ" -msgstr[1] "ਹਫਤਾ" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "ਦਿਨ" -msgstr[1] "ਦਿਨ" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "ਘੰਟਾ" -msgstr[1] "ਘੰਟਾ" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "ਮਿੰਟ" -msgstr[1] "ਮਿੰਟ" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "ਮਿੰਟ" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "N j, Y, P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਬਣਾਇਆ ਗਿਆ।" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਅੱਪਡੇਟ ਕੀਤਾ ਗਿਆ।" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s ਹਟਾਇਆ ਗਿਆ।" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo deleted file mode 100644 index 9b029b1dd..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/pl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po deleted file mode 100644 index 50898b177..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/pl/LC_MESSAGES/django.po +++ /dev/null @@ -1,1164 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:01+0100\n" -"PO-Revision-Date: 2011-03-15 20:36+0000\n" -"Last-Translator: angularcircle \n" -"Language-Team: Polish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "arabski" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "azerski" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "buÅ‚garski" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengalski" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "boÅ›niacki" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "kataloÅ„ski" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "czeski" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "walijski" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "duÅ„ski" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "niemiecki" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "grecki" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "angielski" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "angielski brytyjski" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "hiszpaÅ„ski" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "hiszpaÅ„ski argentyÅ„ski" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "hiszpaÅ„ski meksykaÅ„ski" - -#: conf/global_settings.py:60 -#, fuzzy -msgid "Nicaraguan Spanish" -msgstr "hiszpaÅ„ski meksykaÅ„ski" - -#: conf/global_settings.py:61 -msgid "Estonian" -msgstr "estoÅ„ski" - -#: conf/global_settings.py:62 -msgid "Basque" -msgstr "baskijski" - -#: conf/global_settings.py:63 -msgid "Persian" -msgstr "perski" - -#: conf/global_settings.py:64 -msgid "Finnish" -msgstr "fiÅ„ski" - -#: conf/global_settings.py:65 -msgid "French" -msgstr "francuski" - -#: conf/global_settings.py:66 -msgid "Frisian" -msgstr "fryzyjski" - -#: conf/global_settings.py:67 -msgid "Irish" -msgstr "irlandzki" - -#: conf/global_settings.py:68 -msgid "Galician" -msgstr "galicyjski" - -#: conf/global_settings.py:69 -msgid "Hebrew" -msgstr "hebrajski" - -#: conf/global_settings.py:70 -msgid "Hindi" -msgstr "hindi" - -#: conf/global_settings.py:71 -msgid "Croatian" -msgstr "chorwacki" - -#: conf/global_settings.py:72 -msgid "Hungarian" -msgstr "wÄ™gierski" - -#: conf/global_settings.py:73 -msgid "Indonesian" -msgstr "indonezyjski" - -#: conf/global_settings.py:74 -msgid "Icelandic" -msgstr "islandzki" - -#: conf/global_settings.py:75 -msgid "Italian" -msgstr "wÅ‚oski" - -#: conf/global_settings.py:76 -msgid "Japanese" -msgstr "japoÅ„ski" - -#: conf/global_settings.py:77 -msgid "Georgian" -msgstr "gruziÅ„ski" - -#: conf/global_settings.py:78 -msgid "Khmer" -msgstr "khmerski" - -#: conf/global_settings.py:79 -msgid "Kannada" -msgstr "kannada" - -#: conf/global_settings.py:80 -msgid "Korean" -msgstr "koreaÅ„ski" - -#: conf/global_settings.py:81 -msgid "Lithuanian" -msgstr "litewski" - -#: conf/global_settings.py:82 -msgid "Latvian" -msgstr "Å‚otewski" - -#: conf/global_settings.py:83 -msgid "Macedonian" -msgstr "macedoÅ„ski" - -#: conf/global_settings.py:84 -msgid "Malayalam" -msgstr "malajski" - -#: conf/global_settings.py:85 -msgid "Mongolian" -msgstr "mongolski" - -#: conf/global_settings.py:86 -msgid "Dutch" -msgstr "holenderski" - -#: conf/global_settings.py:87 -msgid "Norwegian" -msgstr "norweski" - -#: conf/global_settings.py:88 -msgid "Norwegian Bokmal" -msgstr "norweski (Bokmal)" - -#: conf/global_settings.py:89 -msgid "Norwegian Nynorsk" -msgstr "norweski (Nynorsk)" - -#: conf/global_settings.py:90 -msgid "Punjabi" -msgstr "pendżabski" - -#: conf/global_settings.py:91 -msgid "Polish" -msgstr "polski" - -#: conf/global_settings.py:92 -msgid "Portuguese" -msgstr "portugalski" - -#: conf/global_settings.py:93 -msgid "Brazilian Portuguese" -msgstr "brazylijski portugalski" - -#: conf/global_settings.py:94 -msgid "Romanian" -msgstr "rumuÅ„ski" - -#: conf/global_settings.py:95 -msgid "Russian" -msgstr "rosyjski" - -#: conf/global_settings.py:96 -msgid "Slovak" -msgstr "sÅ‚owacki" - -#: conf/global_settings.py:97 -msgid "Slovenian" -msgstr "sÅ‚oweÅ„ski" - -#: conf/global_settings.py:98 -msgid "Albanian" -msgstr "albaÅ„ski" - -#: conf/global_settings.py:99 -msgid "Serbian" -msgstr "serbski" - -#: conf/global_settings.py:100 -msgid "Serbian Latin" -msgstr "serbski (Å‚aciÅ„ski)" - -#: conf/global_settings.py:101 -msgid "Swedish" -msgstr "szwedzki" - -#: conf/global_settings.py:102 -msgid "Tamil" -msgstr "tamilski" - -#: conf/global_settings.py:103 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:104 -msgid "Thai" -msgstr "tajski" - -#: conf/global_settings.py:105 -msgid "Turkish" -msgstr "turecki" - -#: conf/global_settings.py:106 -msgid "Ukrainian" -msgstr "ukraiÅ„ski" - -#: conf/global_settings.py:107 -msgid "Urdu" -msgstr "urdu" - -#: conf/global_settings.py:108 -msgid "Vietnamese" -msgstr "wietnamski" - -#: conf/global_settings.py:109 -msgid "Simplified Chinese" -msgstr "chiÅ„ski uproszczony" - -#: conf/global_settings.py:110 -msgid "Traditional Chinese" -msgstr "chiÅ„ski tradycyjny" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Wpisz poprawnÄ… wartość." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Ten odnoÅ›nik jest nieprawidÅ‚owy." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Wpisz poprawny URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Wprowadź poprawny adres e-mail." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "To pole może zawierać jedynie litery, cyfry, podkreÅ›lenia i myÅ›lniki." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Wprowadź poprawny adres IPv4." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Wpisz tylko cyfry oddzielone przecinkami." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Upewnij siÄ™, że ta wartość jest %(limit_value)s (jest %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Upewnij siÄ™, że ta wartość jest mniejsza lub równa %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Upewnij siÄ™, że ta wartość jest wiÄ™ksza lub równa %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Upewnij siÄ™, że ta wartość ma co najmniej %(limit_value)d znaków (ma dÅ‚ugość " -"%(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Upewnij siÄ™, że ta wartość ma co najwyżej %(limit_value)d znaków (ma dÅ‚ugość " -"%(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"WartoÅ›ci w %(field_name)s muszÄ… być unikalne dla wyszukiwaÅ„ %(lookup)s w %" -"(date_field)s" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(field_label)s już istnieje w %(model_name)s." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "i" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Wartość %r nie jest poprawnym wyborem." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "To pole nie może być puste." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "To pole nie może być puste." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Pole typu: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Liczba caÅ‚kowita" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Ta wartość musi być liczbÄ… caÅ‚kowitÄ…." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "" -"Ta wartość musi być wartoÅ›ciÄ… logicznÄ… (True, False - prawda lub faÅ‚sz)." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Wartość logiczna (True, False - prawda lub faÅ‚sz)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "ÅaÅ„cuch (do %(max_length)s znaków)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Liczby caÅ‚kowite rozdzielone przecinkami" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Data (bez godziny)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "ProszÄ™ wpisać poprawnÄ… datÄ™ w formacie RRRR-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Niepoprawna data: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Wprowadź poprawnÄ… datÄ™ i godzinÄ™ w formacie YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Data (z godzinÄ…)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Ta wartość musi być liczbÄ… dziesiÄ™tnÄ…." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Liczba dziesiÄ™tna" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Adres e-mail" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Åšcieżka do pliku" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Ta wartość musi być liczbÄ… rzeczywistÄ…." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Liczba zmiennoprzecinkowa" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Duża liczba caÅ‚kowita (8 bajtów)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Adres IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "" -"Ta wartość musi być jednÄ… z None (nic), True (prawda) lub False (faÅ‚sz)." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Wartość logiczna (True, False, None - prawda, faÅ‚sz lub nic)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Czas" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "ProszÄ™ wpisać poprawnÄ… godzinÄ™ w formacie HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Tekst XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Model %(model)s o kluczu głównym %(pk)r nie istnieje." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Klucz obcy (typ okreÅ›lony przez pole powiÄ…zane)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "PowiÄ…zanie jeden do jednego" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "PowiÄ…zanie wiele do wiele" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Przytrzymaj wciÅ›niÄ™ty klawisz \"Ctrl\" lub \"Command\" na Mac'u aby " -"zaznaczyć wiÄ™cej niż jeden wybór." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "To pole jest wymagane." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Wpisz liczbÄ™ caÅ‚kowitÄ…." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Wpisz liczbÄ™." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Upewnij siÄ™, że jest nie wiÄ™cej niż %s cyfr." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Upewnij siÄ™, że jest nie wiÄ™cej niż %s miejsc po przecinku." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Upewnij siÄ™, że jest nie wiÄ™cej niż %s miejsc przed przecinkiem." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Wpisz poprawnÄ… datÄ™." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Wpisz poprawnÄ… godzinÄ™." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Wpisz poprawnÄ… datÄ™/godzinÄ™." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Nie wysÅ‚ano żadnego pliku. Sprawdź typ kodowania formularza." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Å»aden plik nie zostaÅ‚ przesÅ‚any." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "WysÅ‚any plik jest pusty." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Upewnij siÄ™, że nazwa tego pliku ma co najwyżej %(max)d znaków (ma dÅ‚ugość %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "PrzeÅ›lij plik lub zaznacz by usunąć, ale nie oba na raz." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Wgraj poprawny plik graficzny. Ten, który zostaÅ‚ wgrany, nie jest obrazem, " -"albo jest uszkodzony." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Wybierz poprawnÄ… wartość. %(value)s nie jest jednym z dostÄ™pnych wyborów." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Podaj listÄ™ wartoÅ›ci." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "PorzÄ…dek" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "UsuÅ„" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Popraw zduplikowane dane w %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Popraw zduplikowane dane w %(field)s, które wymaga unikalnoÅ›ci." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Popraw zduplikowane dane w %(field_name)s, które wymaga unikalnoÅ›ci dla %" -"(lookup)s w polu %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Popraw poniższe zduplikowane wartoÅ›ci." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Osadzony klucz obcy nie pasuje do klucza głównego obiektu rodzica." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Wybierz poprawnÄ… wartość. Podana nie jest jednym z dostÄ™pnych wyborów." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Wybierz poprawnÄ… wartość. %s nie jest jednym z dostÄ™pnych wyborów." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" nie jest poprawnÄ… wartoÅ›ciÄ… klucza głównego." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Teraz" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "ZmieÅ„" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Wyczyść" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Nieznany" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Tak" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nie" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "tak,nie,może" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bajt" -msgstr[1] "%(size)d bajty" -msgstr[2] "%(size)d bajtów" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "po poÅ‚udniu" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "rano" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "po poÅ‚udniu" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "rano" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "północ" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "poÅ‚udnie" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "PoniedziaÅ‚ek" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Wtorek" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Åšroda" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Czwartek" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "PiÄ…tek" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Sobota" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Niedziela" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Pon" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Wt" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Åšr" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Czw" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Pt" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "So" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Nd" - -#: utils/dates.py:18 -msgid "January" -msgstr "StyczeÅ„" - -#: utils/dates.py:18 -msgid "February" -msgstr "Luty" - -#: utils/dates.py:18 -msgid "March" -msgstr "Marzec" - -#: utils/dates.py:18 -msgid "April" -msgstr "KwiecieÅ„" - -#: utils/dates.py:18 -msgid "May" -msgstr "Maj" - -#: utils/dates.py:18 -msgid "June" -msgstr "Czerwiec" - -#: utils/dates.py:19 -msgid "July" -msgstr "Lipiec" - -#: utils/dates.py:19 -msgid "August" -msgstr "SierpieÅ„" - -#: utils/dates.py:19 -msgid "September" -msgstr "WrzesieÅ„" - -#: utils/dates.py:19 -msgid "October" -msgstr "Październik" - -#: utils/dates.py:19 -msgid "November" -msgstr "Listopad" - -#: utils/dates.py:20 -msgid "December" -msgstr "GrudzieÅ„" - -#: utils/dates.py:23 -msgid "jan" -msgstr "sty" - -#: utils/dates.py:23 -msgid "feb" -msgstr "luty" - -#: utils/dates.py:23 -msgid "mar" -msgstr "marz" - -#: utils/dates.py:23 -msgid "apr" -msgstr "kwie" - -#: utils/dates.py:23 -msgid "may" -msgstr "maj" - -#: utils/dates.py:23 -msgid "jun" -msgstr "czerw" - -#: utils/dates.py:24 -msgid "jul" -msgstr "lip" - -#: utils/dates.py:24 -msgid "aug" -msgstr "sier" - -#: utils/dates.py:24 -msgid "sep" -msgstr "wrze" - -#: utils/dates.py:24 -msgid "oct" -msgstr "paź" - -#: utils/dates.py:24 -msgid "nov" -msgstr "list" - -#: utils/dates.py:24 -msgid "dec" -msgstr "gru" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Sty" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Lut" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Mar" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Kwi" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Maj" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Cze" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Lip" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Sie" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Wrz" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Paź" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Lis" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Gru" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "stycznia" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "lutego" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "marca" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "kwietnia" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "maja" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "czerwca" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "lipca" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "sierpnia" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "wrzeÅ›nia" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "października" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "listopada" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "grudnia" - -#: utils/text.py:136 -msgid "or" -msgstr "lub" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "rok" -msgstr[1] "lata" -msgstr[2] "lat" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "miesiÄ…c" -msgstr[1] "miesiÄ…ce" -msgstr[2] "miesiÄ™cy" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "tydzieÅ„" -msgstr[1] "tygodnie" -msgstr[2] "tygodni" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dzieÅ„" -msgstr[1] "dni" -msgstr[2] "dni" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "godzina" -msgstr[1] "godziny" -msgstr[2] "godzin" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuta" -msgstr[1] "minuty" -msgstr[2] "minut" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuty" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:578 -msgid "DATE_FORMAT" -msgstr "Y-m-d" - -#: utils/translation/trans_real.py:579 -msgid "DATETIME_FORMAT" -msgstr "Y-m-d H:i:s" - -#: utils/translation/trans_real.py:580 -msgid "TIME_FORMAT" -msgstr "H:i:s" - -#: utils/translation/trans_real.py:601 -msgid "YEAR_MONTH_FORMAT" -msgstr "Y-m" - -#: utils/translation/trans_real.py:602 -msgid "MONTH_DAY_FORMAT" -msgstr "m-d" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s zostaÅ‚o pomyÅ›lnie utworzone." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s zostaÅ‚o pomyÅ›lnie zmienione." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s zostaÅ‚o usuniÄ™te." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Nie okreÅ›lono roku" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Nie okreÅ›lono miesiÄ…ca" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Nie okreÅ›lono dnia" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Nie okreÅ›lono tygodnia" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "%(verbose_name_plural)s nie jest dostÄ™pny" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"WyÅ›wietlanie %(verbose_name_plural)s z datÄ… przyszÅ‚Ä… jest niedostÄ™pne, gdyż " -"atrybut '%(class_name)s.allow_future' ma wartość 'False'." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" -"CiÄ…g znaków '%(datestr)s' jest niezgodny z podanym formatem daty '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Nie znaleziono %(verbose_name)s speÅ‚niajÄ…cych wybrane kryteria" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Podanego numeru strony nie można przeksztaÅ‚cić na liczbÄ™ caÅ‚kowitÄ…, nie " -"przyjÄ…Å‚ on również wartoÅ›ci 'last' oznaczajÄ…cej ostatniÄ… stronÄ™ z dostÄ™pnego " -"zakresu." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Strona o numerze (%(page_number)s) nie istnieje" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" -"Lista nie zawiera żadnych elementów, a atrybut '%(class_name)s.allow_empty' " -"ma wartość 'False'." diff --git a/lib/python2.7/site-packages/django/conf/locale/pl/__init__.py b/lib/python2.7/site-packages/django/conf/locale/pl/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/pl/formats.py b/lib/python2.7/site-packages/django/conf/locale/pl/formats.py deleted file mode 100644 index 1c538b26a..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/pl/formats.py +++ /dev/null @@ -1,37 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j E Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = 'j E Y H:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'd-m-Y' -SHORT_DATETIME_FORMAT = 'd-m-Y H:i:s' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' - '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' - # '%d. %B %Y', '%d. %b. %Y', # '25. October 2006', '25. Oct. 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = u' ' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo deleted file mode 100644 index fa231c66b..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/pt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/pt/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/pt/LC_MESSAGES/django.po deleted file mode 100644 index f7b4e8a8c..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/pt/LC_MESSAGES/django.po +++ /dev/null @@ -1,1148 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:10-0400\n" -"PO-Revision-Date: 2011-03-11 11:09+0000\n" -"Last-Translator: nmariz \n" -"Language-Team: Portuguese <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Ãrabe" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azerbaijano" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Búlgaro" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengalês" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bósnio" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalão" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Checo" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Galês" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Dinamarquês" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Alemão" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Grego" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Inglês" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Inglês Britânico" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Espanhol" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Espanhol Argentino" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Espanhol mexicano" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estónio" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Basco" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persa" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Filandês" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Francês" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisão" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irlandês" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galaciano" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebraico" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Croata" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Húngaro" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonésio" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandês" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiano" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japonês" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgiano" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Canarês" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Coreano" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Lituano" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Letão" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Macedónio" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malaiala" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongol" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Holandês" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norueguês" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norueguês (BokmÃ¥l)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norueguês (Nynors)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Panjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polaco" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Português" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Português Brasileiro" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Romeno" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Russo" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Eslovaco" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Esloveno" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanês" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Sérvio" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Sérvio Latim" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Sueco" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thai" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turco" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ucraniano" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamita" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Chinês Simplificado" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Chinês Tradicional" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Introduza um valor válido." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Este URL é link quebrado." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Introduza um URL válido." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Introduza um endereço de e-mail válido." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Este valor apenas poderá conter letras, números, undercores ou hífenes." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Introduza um endereço IPv4 válido." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Introduza apenas números separados por vírgulas." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Garanta que este valor seja %(limit_value)s (tem %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Garanta que este valor seja menor ou igual a %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Garanta que este valor seja maior ou igual a %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Garanta que este valor tem no mínimo %(limit_value)d carateres (tem %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Garanta que este valor tem no máximo %(limit_value)d carateres (tem %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s deverá ser único para %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s com este %(field_label)s já existe." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "e" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "O valor %r não é uma opção válida." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Este campo não pode ser nulo." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Este campo não pode ser vazio." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Campo do tipo: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Inteiro" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Este campo deverá ser inteiro." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Este valor deverá ser True ou False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (Pode ser True ou False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "String (até %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Inteiros separados por virgula" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Data (sem hora)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Introduza uma data válida no formato AAAA-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Data inválida: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Introduza uma data/hora válida no formato YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Data (com hora)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Este campo deverá ser um número decimal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Número décimal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Endereço de e-mail" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Caminho do ficheiro" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Este campo deverá ser número décimal." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Número em vírgula flutuante" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Inteiro grande (8 byte)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Endereço IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Este valor deverá ser None, True ou False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (Pode ser True, False ou None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Texto" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Hora" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Introduza uma hora válida no formato HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Texto XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "O modelo %(model)s com a chave primária %(pk)r não existe." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Chave Estrangeira (tipo determinado pelo campo relacionado)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Relação de um-para-um" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Relação de muitos-para-muitos" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Mantenha pressionado o \"Control\", or \"Command\" no Mac, para selecionar " -"mais do que um." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Este campo é obrigatório." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Introduza um número inteiro." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Introduza um número." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Garanta que não contém no total mais do que %s dígitos." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Garanta que não contém mais do que %s casas decimais." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Garanta que não contém mais do que %s dígitos antes do ponto decimal." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Introduza uma data válida." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Introduza uma hora válida." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Introduza uma data/hora válida." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"Nenhum ficheiro foi submetido. Verifique o tipo de codificação do formulário." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Nenhum ficheiro submetido." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "O ficheiro submetido encontra-se vazio." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Garanta que este nome do ficheiro tem no máximo %(max)d carateres (tem %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Por favor, submeta um ficheiro ou remova a seleção da caixa, não ambos." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Introduza uma imagem válida. O ficheiro que introduziu ou não é uma imagem " -"ou está corrompido." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Selecione uma opção válida. %(value)s não se encontra nas opções disponíveis." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Introduza uma lista de valores." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ordem" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Remover" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Por favor corrija os dados duplicados em %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Por favor corrija os dados duplicados em %(field)s, que deverá ser único." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Por favor corrija os dados duplicados em %(field_name)s que deverá ser único " -"para o %(lookup)s em %(date_field)s.\"" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Por favor corrija os valores duplicados abaixo." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"A chave estrangeira em linha não coincide com a chave primária na instância " -"pai." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Selecione uma opção válida. Esse valor não se encontra opções disponíveis." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Selecione uma opção válida. %s não se encontra nas opções disponíveis." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" não é um valor válido para uma chave primária." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Atualmente" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Modificar" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Limpar" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Desconhecido" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Sim" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Não" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "sim,não,talvez" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "meia-noite" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "meio-dia" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Segunda-feira" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Terça-feira" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Quarta-feira" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Quinta-feira" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Sexta-feira" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Sábado" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Domingo" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Seg" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Ter" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Qua" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Qui" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Sex" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sáb" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Dom" - -#: utils/dates.py:18 -msgid "January" -msgstr "Janeiro" - -#: utils/dates.py:18 -msgid "February" -msgstr "Fevereiro" - -#: utils/dates.py:18 -msgid "March" -msgstr "Março" - -#: utils/dates.py:18 -msgid "April" -msgstr "Abril" - -#: utils/dates.py:18 -msgid "May" -msgstr "Maio" - -#: utils/dates.py:18 -msgid "June" -msgstr "Junho" - -#: utils/dates.py:19 -msgid "July" -msgstr "Julho" - -#: utils/dates.py:19 -msgid "August" -msgstr "Agosto" - -#: utils/dates.py:19 -msgid "September" -msgstr "Setembro" - -#: utils/dates.py:19 -msgid "October" -msgstr "Outubro" - -#: utils/dates.py:19 -msgid "November" -msgstr "Novembro" - -#: utils/dates.py:20 -msgid "December" -msgstr "Dezembro" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "fev" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "abr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ago" - -#: utils/dates.py:24 -msgid "sep" -msgstr "set" - -#: utils/dates.py:24 -msgid "oct" -msgstr "out" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dez" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Fev." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Março" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Abril" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Maio" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Jun." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Jul." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Ago." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Set." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Out." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dez." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Janeiro" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Fevereiro" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Março" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Abril" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Maio" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Junho" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Julho" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Agosto" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Setembro" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "De outubro" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Novembro" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Dezembro" - -#: utils/text.py:136 -msgid "or" -msgstr "ou" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "ano" -msgstr[1] "anos" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mês" -msgstr[1] "meses" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dia" -msgstr[1] "dias" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutos" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "N j, Y, P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "O(A) %(verbose_name)s foi criado(a) com sucesso." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "O(A) %(verbose_name)s foi atualizado(a) com sucesso." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "O(A) %(verbose_name)s foi removido(a)." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Nenhum ano especificado" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Nenhum mês especificado" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Nenhum dia especificado" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Nenhuma semana especificado" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Nenhum %(verbose_name_plural)s disponível" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"%(verbose_name_plural)s futuros indisponíveis porque %(class_name)s." -"allow_future é False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Data inválida '%(datestr)s' formato '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Nenhum %(verbose_name)s de acordo com a procura." - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Página não é 'última' ou não é possível converter para um inteiro." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Página inválida (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Lista vazia e '%(class_name)s.allow_empty' é False." diff --git a/lib/python2.7/site-packages/django/conf/locale/pt/__init__.py b/lib/python2.7/site-packages/django/conf/locale/pt/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/pt/formats.py b/lib/python2.7/site-packages/django/conf/locale/pt/formats.py deleted file mode 100644 index dc0213284..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/pt/formats.py +++ /dev/null @@ -1,40 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = r'j \de F \de Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = r'j \de F \de Y à\s H:i' -YEAR_MONTH_FORMAT = r'F \de Y' -MONTH_DAY_FORMAT = r'j \de F' -SHORT_DATE_FORMAT = 'd/m/Y' -SHORT_DATETIME_FORMAT = 'd/m/Y H:i' -FIRST_DAY_OF_WEEK = 0 # Sunday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%d/%m/%Y', '%d/%m/%y', # '2006-10-25', '25/10/2006', '25/10/06' - # '%d de %b de %Y', '%d de %b, %Y', # '25 de Out de 2006', '25 Out, 2006' - # '%d de %B de %Y', '%d de %B, %Y', # '25 de Outubro de 2006', '25 de Outubro, 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%d/%m/%Y %H:%M:%S', # '25/10/2006 14:30:59' - '%d/%m/%Y %H:%M', # '25/10/2006 14:30' - '%d/%m/%Y', # '25/10/2006' - '%d/%m/%y %H:%M:%S', # '25/10/06 14:30:59' - '%d/%m/%y %H:%M', # '25/10/06 14:30' - '%d/%m/%y', # '25/10/06' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo deleted file mode 100644 index 5d2cdfbad..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.po deleted file mode 100644 index dde815ed0..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/pt_BR/LC_MESSAGES/django.po +++ /dev/null @@ -1,1147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:10-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: semente \n" -"Language-Team: Portuguese (Brazilian) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Ãrabe" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azerbaijão" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Búlgaro" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengali" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bósnia" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalão" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tcheco" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Galês" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Dinamarquês" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Alemão" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Grego" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Inglês" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Inglês Britânico" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Espanhol" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Espanhol Argentino" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Espanhol Mexicano" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estoniano" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Basco" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persa" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finlandês" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Francês" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frísia" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irlandês" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galiciano" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebraico" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Croata" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Húngaro" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonésio" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandês" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiano" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japonês" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgiano" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Canarês" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Coreano" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Lituano" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Letão" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Macedônio" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malaiala" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongol" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Neerlandês" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norueguês" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Dano-norueguês" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Novo Norueguês" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polonês" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Português" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Português Brasileiro" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Romeno" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Russo" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Eslovaco" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Esloveno" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanesa" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Sérvio" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Sérvio Latino" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Sueco" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tâmil" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Tailandês" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turco" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ucraniano" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamita" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Chinês Simplificado" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Chinês Tradicional" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Informe um valor válido." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "A URL %s aparenta ser um link quebrado." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Informe uma URL válida." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Informe um endereço de email válido." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Insira um \"slug\" válido consistindo de letras, números, sublinhados (_) ou " -"hífens." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Informe um endereço IPv4 válido." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Informe apenas dígitos separados por vírgulas." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Certifique-se de que o valor é %(limit_value)s (ele é %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Certifique-se que este valor seja menor ou igual a %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Certifique-se que este valor seja maior ou igual a %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Certifique-se de que o valor tenha no mínimo %(limit_value)d caracteres (ele " -"possui %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Certifique-se de que o valor tenha no máximo %(limit_value)d caracteres (ele " -"possui %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s deverá ser único para %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s com este %(field_label)s já existe." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "e" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "O valor %r não é uma escolha válida." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Este campo não pode ser nulo." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Este campo não pode estar em branco." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Campo do tipo: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Inteiro" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Este valor deve ser um inteiro." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Este valor deve ser True ou False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Booleano (Verdadeiro ou Falso)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "String (até %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Inteiros separados por vírgula" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Data (sem hora)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Informe uma data válida no formato AAAA-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Data inválida: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Informe uma data/hora válida no formato YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Data e hora" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Este valor deve ser um número decimal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Número decimal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Endereço de e-mail" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Caminho de arquivo" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Este valor deve ser um ponto flutuante." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Número de ponto flutuante" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Inteiro grande (8 byte)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Endereço IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Este valor deve ser None, True ou False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Booleano (Verdadeiro, Falso ou Nada)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Texto" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Hora" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Informe uma hora válida no formato HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Texto XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Model %(model)s com chave primária %(pk)r não existe." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Chave Estrangeira (tipo determinado pelo campo relacionado)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Relacionamento um-para-um" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Relacionamento muitos-para-muitos" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Mantenha pressionado \"Control\" (ou \"Command\" no Mac) para selecionar " -"mais de uma opção." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Este campo é obrigatório." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Informe um número inteiro." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Informe um número." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Certifique-se de que não tenha mais de %s dígitos no total." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Certifique-se de que não tenha mais de %s casa decimais." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" -"Certifique-se de que não tenha mais de %s dígitos antes do ponto decimal." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Informe uma data válida." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Informe uma hora válida." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Informe uma data/hora válida." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Nenhum arquivo enviado. Verifique o tipo de codificação do formulário." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Não foi enviado nenhum arquivo." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "O arquivo enviado está vazio." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Certifique-se de que o arquivo tenha no máximo %(max)d caracteres (ele " -"possui %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Por favor, envie um arquivo ou marque o checkbox, mas não ambos." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Envie uma imagem válida. O arquivo enviado não é uma imagem ou está " -"corrompido." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Faça uma escolha válida. %(value)s não está disponível." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Informe uma lista de valores." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ordem" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Apagar" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Por favor, corrija o valor duplicado para %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Por favor, corrija o valor duplicado para %(field)s, o qual deve ser único" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Por favor corrija os dados duplicados em %(field_name)s que deverá ser único " -"para o %(lookup)s em %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Por favor, corrija os valores duplicados abaixo." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"A chave estrangeira no inline não coincide com a chave primária na instância " -"pai." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Faça uma escolha válida. Sua escolha não é uma das disponíveis." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Faça uma escolha válida. %s não está disponível." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" não é um valor válido para uma chave primária." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Atualmente" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Modificar" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Limpar" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Desconhecido" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Sim" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Não" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "sim,não,talvez" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "meia noite" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "meio dia" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Segunda-feira" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Terça-feira" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Quarta-feira" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Quinta-feira" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Sexta-feira" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Sábado" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Domingo" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Seg" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Ter" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Qua" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Qui" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Sex" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sab" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Dom" - -#: utils/dates.py:18 -msgid "January" -msgstr "Janeiro" - -#: utils/dates.py:18 -msgid "February" -msgstr "Fevereiro" - -#: utils/dates.py:18 -msgid "March" -msgstr "Março" - -#: utils/dates.py:18 -msgid "April" -msgstr "Abril" - -#: utils/dates.py:18 -msgid "May" -msgstr "Maio" - -#: utils/dates.py:18 -msgid "June" -msgstr "Junho" - -#: utils/dates.py:19 -msgid "July" -msgstr "Julho" - -#: utils/dates.py:19 -msgid "August" -msgstr "Agosto" - -#: utils/dates.py:19 -msgid "September" -msgstr "Setembro" - -#: utils/dates.py:19 -msgid "October" -msgstr "Outubro" - -#: utils/dates.py:19 -msgid "November" -msgstr "Novembro" - -#: utils/dates.py:20 -msgid "December" -msgstr "Dezembro" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "fev" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "abr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ago" - -#: utils/dates.py:24 -msgid "sep" -msgstr "set" - -#: utils/dates.py:24 -msgid "oct" -msgstr "out" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dez" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Fev." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Março" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Abril" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Maio" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Junho" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Julho" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Ago." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Set." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Out." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dez." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Janeiro" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Fevereiro" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Março" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Abril" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Maio" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Junho" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Julho" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Agosto" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Setembro" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Outubro" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Novembro" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Dezembro" - -#: utils/text.py:136 -msgid "or" -msgstr "ou" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "ano" -msgstr[1] "anos" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mês" -msgstr[1] "meses" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dia" -msgstr[1] "dias" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minutos" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j \\de N \\de Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j \\de N \\de Y à\\s H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F \\de Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j \\de F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s: criado com sucesso." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s: atualizado com sucesso." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s: excluído." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Ano não especificado" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Mês não especificado" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Dia não especificado" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Semana não especificada" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "%(verbose_name_plural)s não disponíveis" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"%(verbose_name_plural)s futuros não disponíveis pois %(class_name)s." -"allow_future é False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "' %(datestr)s ' string de data inválida dado o formato ' %(format)s '" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "%(verbose_name)s não encontrado de acordo com a consulta" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "A página não é a 'última', nem pode ser convertido para um int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Página inválida ( %(page_number)s )" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Lista vazia e '%(class_name)s.allow_empty' é False." diff --git a/lib/python2.7/site-packages/django/conf/locale/pt_BR/__init__.py b/lib/python2.7/site-packages/django/conf/locale/pt_BR/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/pt_BR/formats.py b/lib/python2.7/site-packages/django/conf/locale/pt_BR/formats.py deleted file mode 100644 index e616ae0ae..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/pt_BR/formats.py +++ /dev/null @@ -1,40 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = r'j \de N \de Y' -TIME_FORMAT = 'H:i' -DATETIME_FORMAT = r'j \de N \de Y à\s H:i' -YEAR_MONTH_FORMAT = r'F \de Y' -MONTH_DAY_FORMAT = r'j \de F' -SHORT_DATE_FORMAT = 'd/m/Y' -SHORT_DATETIME_FORMAT = 'd/m/Y H:i' -FIRST_DAY_OF_WEEK = 0 # Sunday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', '%d/%m/%Y', '%d/%m/%y', # '2006-10-25', '25/10/2006', '25/10/06' - # '%d de %b de %Y', '%d de %b, %Y', # '25 de Out de 2006', '25 Out, 2006' - # '%d de %B de %Y', '%d de %B, %Y', # '25 de Outubro de 2006', '25 de Outubro, 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d/%m/%Y %H:%M:%S', # '25/10/2006 14:30:59' - '%d/%m/%Y %H:%M', # '25/10/2006 14:30' - '%d/%m/%Y', # '25/10/2006' - '%d/%m/%y %H:%M:%S', # '25/10/06 14:30:59' - '%d/%m/%y %H:%M', # '25/10/06 14:30' - '%d/%m/%y', # '25/10/06' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo deleted file mode 100644 index f404e0b3f..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ro/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po deleted file mode 100644 index 7ab44dc7d..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ro/LC_MESSAGES/django.po +++ /dev/null @@ -1,1160 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:10-0400\n" -"PO-Revision-Date: 2011-03-07 10:12+0000\n" -"Last-Translator: danniel \n" -"Language-Team: Romanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1))\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabă" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azeră" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgară" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengaleză" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosniacă" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalană" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Cehă" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Galeză" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Daneză" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Germană" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Greacă" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Engleză" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Engleză britanică" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spaniolă" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Spaniolă Argentiniană" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Spaniolă Mexicană" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estonă" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Bască" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persană" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finlandeză" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Franceză" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frizian" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irlandeză" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galiciană" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Ebraică" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Croată" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Ungară" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indoneză" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandeză" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiană" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japoneză" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgiană" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmeră" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Limba kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreană" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Lituaniană" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Letonă" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Macedoneană" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongolă" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Olandeză" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norvegiană" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norvegiană Bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norvegiană Nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Poloneză" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugheză" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Portugheză braziliană" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Română" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Rusă" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovacă" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slovenă" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albaneză" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Sârbă" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serba latină" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Suedeză" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Limba tamila" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Limba telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Tailandeză" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turcă" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ucraineană" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnameză" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Chineză simplificată" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Chineză tradiÈ›ională" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "IntroduceÈ›i o valoare validă." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "URL-ul e invalid." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "IntroduceÈ›i un URL valid." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "IntroduceÅ£i o adresă de email validă." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"IntroduceÈ›i un 'slug' valabil, compus numai din litere, numere, underscor " -"sau liniuÈ›e." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "IntroduceÅ£i o adresă IPv4 validă." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "IntroduceÅ£i numai numere separate de virgule." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"AsiguraÅ£i-vă că această valoare este %(limit_value)s (este %(show_value)s )." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"AsiguraÅ£i-vă că această valoare este mai mică sau egală cu %(limit_value)s ." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"AsiguraÅ£i-vă că această valoare este mai mare sau egală cu %(limit_value)s ." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"AsiguraÅ£i-vă că această valoare are cel puÅ£in%(limit_value)d caractere " -"(aceasta are %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"AsiguraÅ£i-vă că această valoare are cel mult %(limit_value)d caractere " -"(aceasta are %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s trebuie să fie unic pentru %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s cu %(field_label)s deja există." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "È™i" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Valoarea %r nu este o alegere valabilă." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Câmpul nu poate fi gol" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Acest câmp nu poate fi gol." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Câmp de tip: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Intreg" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Această valoare trebuie să fie un număr intreg." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Această valoare trebuie să fie ori falsă ori adevarată." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (ori adevarat ori fals)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Sir de caractere (pana la %(max_length)s caractere)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Numere întregi separate de virgule" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Dată (fară oră)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "IntroduceÅ£i o dată validă în format: AAAA-LL-ZZ." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Dată invalidă: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"IntroduceÈ›i timpul/data valabile în formatul YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Dată (cu oră)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Această valoare trebuie să fie un număr zecimal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Număr zecimal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Adresă email" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Calea fisierului" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Această valoare trebuie să fie un număr cu virgulă." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Număr cu virgulă" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "ÃŽntreg mare (8 octeÈ›i)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Adresă IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Această valoare trebuie să fie falsă, adevarată sau nici una." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolean (adevarat, fals sau nici una)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Text" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Timp" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "IntroduceÅ£i timpul valabil în formatul HH: MM [:. [Ss uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Text XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Modelul %(model)s cu pk %(pk)r nu există." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Foreign Key (tipul determinat de către cîmpul relativ)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "RelaÅ£ie unul-la-unul" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "RelaÈ›ie multe-la-multe" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -" Å¢ine apăsat \"Control\", sau \"Command\" pe un Mac, pentru selecÈ›ie " -"multiplă." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Acest câmp este obligatoriu." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "IntroduceÅ£i un număr întreg." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "IntroduceÅ£i un număr." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "AsiguraÈ›i-vă că nu exista mai mult de %s cifre în total." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "AsiguraÈ›i-vă că nu exista mai mult de %s spaÈ›ii zecimale." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "AsiguraÈ›i-vă că nu exista mai mult de %s cifre înainte de virgulă." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "IntroduceÈ›i o dată validă." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "IntroduceÈ›i o oră validă." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "IntroduceÈ›i o dată/oră validă." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Nici un fiÈ™ier nu a fost trimis. VerificaÈ›i tipul fiÈ™ierului." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Nici un fiÈ™ier nu a fost trimis." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "FiÈ™ierul încărcat este gol." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"AsiguraÅ£i-vă că acest nume de fiÅŸier are cel mult %(max)d caractere (acesta " -"are %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Fie indicaÈ›i un fiÅŸier, fie bifaÅ£i caseta de selectare, nu ambele." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"ÃŽncărcaÅ£i o imagine validă. FiÅŸierul încărcat nu era o imagine sau era o " -"imagine coruptă." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"SelectaÈ›i o opÈ›iune validă. %(value)s nu face parte din opÈ›iunile " -"disponibile." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "IntroduceÈ›i o listă de valori." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Ordine" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Șterge" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "CorectaÅ£i datele duplicate pentru %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "CorectaÅ£i datele duplicate pentru %(field)s , ce trebuie să fie unic." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"CorectaÅ£i datele duplicate pentru %(field_name)s , care trebuie să fie unice " -"pentru %(lookup)s în %(date_field)s ." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "CorectaÅ£i valorile duplicate de mai jos." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Foreign key-ul inline nu se potriveÈ™te cu cheia primară a istanÈ›ei mamă." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"SelectaÈ›i o opÈ›iune validă. Această opÈ›iune nu face parte din opÈ›iunile " -"disponibile." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" -"SelectaÈ›i o opÈ›iune validă. %s nu face parte din opÈ›iunile disponibile." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" nu este o valoare valabilă pentru o cheie primară." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "ÃŽn prezent" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Schimbă" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Șterge" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Necunoscut" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Da" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nu" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "da,nu,poate" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d bytes" -msgstr[2] "%(size)d bytes" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KO" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MO" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GO" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TO" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PO" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "miezul nopÈ›ii" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "amiază" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Luni" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "MarÈ›i" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Miercuri" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Joi" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Vineri" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Sâmbătă" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Duminică" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Lun" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Mar" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Mie" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Joi" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Vin" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sâm" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Dum" - -#: utils/dates.py:18 -msgid "January" -msgstr "Ianuarie" - -#: utils/dates.py:18 -msgid "February" -msgstr "Februarie" - -#: utils/dates.py:18 -msgid "March" -msgstr "Martie" - -#: utils/dates.py:18 -msgid "April" -msgstr "Aprilie" - -#: utils/dates.py:18 -msgid "May" -msgstr "Mai" - -#: utils/dates.py:18 -msgid "June" -msgstr "Iunie" - -#: utils/dates.py:19 -msgid "July" -msgstr "Iulie" - -#: utils/dates.py:19 -msgid "August" -msgstr "August" - -#: utils/dates.py:19 -msgid "September" -msgstr "Septembrie" - -#: utils/dates.py:19 -msgid "October" -msgstr "Octombrie" - -#: utils/dates.py:19 -msgid "November" -msgstr "Noiembrie" - -#: utils/dates.py:20 -msgid "December" -msgstr "Decembrie" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ian" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "mai" - -#: utils/dates.py:23 -msgid "jun" -msgstr "iun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "iul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "oct" - -#: utils/dates.py:24 -msgid "nov" -msgstr "noi" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Ian." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Martie" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Aprilie" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Mai" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Iunie" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Iulie" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Aug." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Oct." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Noie." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dec." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Ianuarie" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Februarie" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Martie" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Aprilie" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Mai" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Iunie" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Iulie" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "August" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Septembrie" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Octombrie" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Noiembrie" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Decembrie" - -#: utils/text.py:136 -msgid "or" -msgstr "sau" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "an" -msgstr[1] "ani" -msgstr[2] "de ani" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "lună" -msgstr[1] "luni" -msgstr[2] "de luni" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "săptămână" -msgstr[1] "săptămâni" -msgstr[2] "de săptămâni" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "zi" -msgstr[1] "zile" -msgstr[2] "de zile" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "oră" -msgstr[1] "ore" -msgstr[2] "de ore" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minute" -msgstr[2] "de minute" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minute" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j N Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j N Y, H:i:s" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i:s" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s a fost creat cu succes." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s a fost actualizat cu succes." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s a fost È™ters." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Niciun an specificat" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Nicio lună specificată" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Nicio zi specificată" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Nicio săptămîna specificată" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "%(verbose_name_plural)s nu e disponibil" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Viitorul %(verbose_name_plural)s nu e disponibil deoarece %(class_name)s ." -"allow_future este Fals." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Dată incorectă '%(datestr)s' considerând formatul '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Niciun rezultat pentru %(verbose_name)s care se potrivesc interogării" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Pagina nu este \"ultima\" È™i nici nu poate fi convertită într-un întreg." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Pagină invalidă (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Listă goală È™i '%(class_name)s.allow_empty' este Fals." diff --git a/lib/python2.7/site-packages/django/conf/locale/ro/__init__.py b/lib/python2.7/site-packages/django/conf/locale/ro/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/ro/formats.py b/lib/python2.7/site-packages/django/conf/locale/ro/formats.py deleted file mode 100644 index 4be020f37..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ro/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = 'j F Y, H:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'd.m.Y' -SHORT_DATETIME_FORMAT = 'd.m.Y, H:i:s' -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo deleted file mode 100644 index 45e836fbd..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ru/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ru/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ru/LC_MESSAGES/django.po deleted file mode 100644 index 002d50ab5..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ru/LC_MESSAGES/django.po +++ /dev/null @@ -1,1166 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: dnx \n" -"Language-Team: Russian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ÐрабÑкий" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "ÐзербайджанÑкий" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "БолгарÑкий" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "БенгальÑкий" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "БоÑнийÑкий" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "КаталанÑкий" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ЧешÑкий" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "УÑльÑкий" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "ДатÑкий" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Ðемецкий" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "ГречеÑкий" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ÐнглийÑкий" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "БританÑкий английÑкий" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ИÑпанÑкий" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "ÐргентинÑкий иÑпанÑкий" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "МекÑиканÑкий иÑпанÑкий" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "ЭÑтонÑкий" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "БаÑкÑкий" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "ПерÑидÑкий" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ФинÑкий" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "ФранцузÑкий" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "ФризÑкий" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ИрландÑкий" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "ГалиÑийÑкий" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Иврит" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Хинди" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "ХорватÑкий" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ВенгерÑкий" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "ИндонезийÑкий" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "ИÑландÑкий" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ИтальÑнÑкий" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ЯпонÑкий" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "ГрузинÑкий" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "КхмерÑкий" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Каннада" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "КорейÑкий" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "ЛитовÑкий" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "ЛатвийÑкий" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "МакедонÑкий" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "МалаÑлам" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "МонгольÑкий" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "ГолландÑкий" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "ÐорвежÑкий" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "ÐорвежÑкий (Букмол)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "ÐорвежÑкий (ÐюнорÑк)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Панджаби" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "ПольÑкий" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "ПортугальÑкий" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "БразильÑкий португальÑкий" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "РумынÑкий" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "РуÑÑкий" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Словацкий" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "СловенÑкий" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "ÐлбанÑкий" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "СербÑкий" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "СербÑкий (латиница)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "ШведÑкий" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "ТамильÑкий" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Телугу" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "ТайÑкий" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Турецкий" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "УкраинÑкий" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Урду" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "ВьетнамÑкий" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Упрощенный китайÑкий" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Традиционный китайÑкий" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Введите правильное значение." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Эта ÑÑылка не работает." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Введите правильный URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Введите правильный Ð°Ð´Ñ€ÐµÑ Ñлектронной почты." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Значение должно ÑоÑтоÑÑ‚ÑŒ только из букв, цифр, знаков Ð¿Ð¾Ð´Ñ‡ÐµÑ€ÐºÐ¸Ð²Ð°Ð½Ð¸Ñ Ð¸Ð»Ð¸ " -"дефиÑа." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Введите правильный IPv4 адреÑ." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Введите цифры, разделенные запÑтыми." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"УбедитеÑÑŒ, что Ñто значение — %(limit_value)s (ÑÐµÐ¹Ñ‡Ð°Ñ Ð¾Ð½Ð¾ — %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "УбедитеÑÑŒ, что Ñто значение меньше либо равно %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "УбедитеÑÑŒ, что Ñто значение больше либо равно %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"УбедитеÑÑŒ, что Ñто значение Ñодержит не менее %(limit_value)d Ñимволов " -"(ÑÐµÐ¹Ñ‡Ð°Ñ %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"УбедитеÑÑŒ, что Ñто значение Ñодержит не более %(limit_value)d Ñимволов " -"(ÑÐµÐ¹Ñ‡Ð°Ñ %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"Значение в поле %(field_name)s должно быть уникальным Ð´Ð»Ñ %(lookup)s в поле %" -"(date_field)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s Ñ Ñ‚Ð°ÐºÐ¸Ð¼ %(field_label)s уже ÑущеÑтвует." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "и" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Ð—Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ %r нет Ñреди допуÑтимых вариантов." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Это поле не может иметь значение NULL." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Это поле не может быть пуÑтым." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Поле типа %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Целое" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Это значение должно быть целым чиÑлом." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Значение должно быть либо True, либо False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "ЛогичеÑкое (True или False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Строка (до %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Целые, разделенные запÑтыми" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Дата (без ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð¸)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Введите правильную дату в формате YYYY-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "ÐÐµÐ¿Ñ€Ð°Ð²Ð¸Ð»ÑŒÐ½Ð°Ñ Ð´Ð°Ñ‚Ð°: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Введите правильные дату и Ð²Ñ€ÐµÐ¼Ñ Ð² формате YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Дата (Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸ÐµÐ¼ времени)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Это значение должно быть целым чиÑлом." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "ЧиÑло Ñ Ñ„Ð¸ÐºÑированной запÑтой" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ÐÐ´Ñ€ÐµÑ Ñлектронной почты" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Путь к файлу" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Это значение должно быть чиÑлом Ñ Ð¿Ð»Ð°Ð²Ð°ÑŽÑ‰ÐµÐ¹ запÑтой." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "ЧиÑло Ñ Ð¿Ð»Ð°Ð²Ð°ÑŽÑ‰ÐµÐ¹ запÑтой" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Длинное целое (8 байт)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP-адреÑ" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Значение должно быть None, True или False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "ЛогичеÑкое (True, False или None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ТекÑÑ‚" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "ВремÑ" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Введите правильное Ð²Ñ€ÐµÐ¼Ñ Ð² формате HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML текÑÑ‚" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Объект модели %(model)s Ñ Ð¿ÐµÑ€Ð²Ð¸Ñ‡Ð½Ñ‹Ð¼ ключом %(pk)r не ÑущеÑтвует." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Внешний ключ (тип определен по ÑвÑзанному полю)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "СвÑзь \"один к одному\"" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "СвÑзь \"многие ко многим\"" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Удерживайте \"Control\" (или \"Command\" на Mac) Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð° неÑкольких " -"значений." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "ОбÑзательное поле." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Введите целое чиÑло." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Введите чиÑло." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "УбедитеÑÑŒ, что ввели не больше %s цифр." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "УбедитеÑÑŒ, что ввели не больше %s цифр поÑле запÑтой." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "УбедитеÑÑŒ, что ввели не больше %s цифр до запÑтой." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Введите правильную дату." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Введите правильное времÑ." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Введите правильную дату и времÑ." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Ðи одного файла не было отправлено. Проверьте тип кодировки формы." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Ðи одного файла не было отправлено." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Отправленный файл пуÑÑ‚." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"УбедитеÑÑŒ, что Ñто Ð¸Ð¼Ñ Ñ„Ð°Ð¹Ð»Ð° Ñодержит не более %(max)d Ñимволов (ÑÐµÐ¹Ñ‡Ð°Ñ %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"ПожалуйÑта, либо предоÑтавьте файл или поÑтавьте флажок на пункте очиÑтить, " -"но не оба." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Загрузите правильное изображение. Файл, который вы загрузили, поврежден или " -"не ÑвлÑетÑÑ Ð¸Ð·Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð¸ÐµÐ¼." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Выберите корректный вариант. %(value)s нет Ñреди допуÑтимых значений." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Введите ÑпиÑок значений." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "ПорÑдок" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Удалить" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "ПожалуйÑта, измените повторÑющееÑÑ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ðµ в поле %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"ПожалуйÑта, измените значение в поле %(field)s, оно должно быть уникальным." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"ПожалуйÑта, измените значение в поле %(field_name)s, оно должно быть " -"уникальным Ð´Ð»Ñ %(lookup)s в поле %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "ПожалуйÑта, измените повторÑющиеÑÑ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð½Ð¸Ð¶Ðµ." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Внешний ключ не Ñовпадает Ñ Ð¿ÐµÑ€Ð²Ð¸Ñ‡Ð½Ñ‹Ð¼ ключом родителÑ." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Выберите корректный вариант. Вашего варианта нет Ñреди допуÑтимых значений." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Выберите корректный вариант. %s нет Ñреди допуÑтимых значений." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" не ÑвлÑетÑÑ Ð²ÐµÑ€Ð½Ñ‹Ð¼ значением Ð´Ð»Ñ Ð¿ÐµÑ€Ð²Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ ключа." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Ð’ наÑтоÑщее времÑ" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Изменить" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ОчиÑтить" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "ÐеизвеÑтно" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Да" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ðет" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "да,нет,может быть" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d байт" -msgstr[1] "%(size)d байт(а)" -msgstr[2] "%(size)d байт(а)" -msgstr[3] "%(size)d байт(а)" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KБ" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MБ" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GБ" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TБ" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PБ" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "п.п." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "д.п." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "ПП" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "ДП" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "полночь" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "полдень" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Понедельник" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Вторник" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Среда" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Четверг" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "ПÑтница" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Суббота" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "ВоÑкреÑенье" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Пнд" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Ð’Ñ‚Ñ€" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Срд" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Чтв" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Птн" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Сбт" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Ð’Ñк" - -#: utils/dates.py:18 -msgid "January" -msgstr "Январь" - -#: utils/dates.py:18 -msgid "February" -msgstr "Февраль" - -#: utils/dates.py:18 -msgid "March" -msgstr "Март" - -#: utils/dates.py:18 -msgid "April" -msgstr "Ðпрель" - -#: utils/dates.py:18 -msgid "May" -msgstr "Май" - -#: utils/dates.py:18 -msgid "June" -msgstr "Июнь" - -#: utils/dates.py:19 -msgid "July" -msgstr "Июль" - -#: utils/dates.py:19 -msgid "August" -msgstr "ÐвгуÑÑ‚" - -#: utils/dates.py:19 -msgid "September" -msgstr "СентÑбрь" - -#: utils/dates.py:19 -msgid "October" -msgstr "ОктÑбрь" - -#: utils/dates.py:19 -msgid "November" -msgstr "ÐоÑбрь" - -#: utils/dates.py:20 -msgid "December" -msgstr "Декабрь" - -#: utils/dates.py:23 -msgid "jan" -msgstr "Ñнв" - -#: utils/dates.py:23 -msgid "feb" -msgstr "фев" - -#: utils/dates.py:23 -msgid "mar" -msgstr "мар" - -#: utils/dates.py:23 -msgid "apr" -msgstr "апр" - -#: utils/dates.py:23 -msgid "may" -msgstr "май" - -#: utils/dates.py:23 -msgid "jun" -msgstr "июн" - -#: utils/dates.py:24 -msgid "jul" -msgstr "июл" - -#: utils/dates.py:24 -msgid "aug" -msgstr "авг" - -#: utils/dates.py:24 -msgid "sep" -msgstr "Ñен" - -#: utils/dates.py:24 -msgid "oct" -msgstr "окт" - -#: utils/dates.py:24 -msgid "nov" -msgstr "ноÑ" - -#: utils/dates.py:24 -msgid "dec" -msgstr "дек" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Янв." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Фев." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Март" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Ðпрель" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Май" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Июнь" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Июль" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Ðвг." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Сен." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Окт." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "ÐоÑ." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Дек." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "ÑнварÑ" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "февралÑ" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "марта" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "апрелÑ" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "маÑ" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "июнÑ" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "июлÑ" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "авгуÑта" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "ÑентÑбрÑ" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "октÑбрÑ" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "ноÑбрÑ" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "декабрÑ" - -#: utils/text.py:136 -msgid "or" -msgstr "или" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "год" -msgstr[1] "лет" -msgstr[2] "лет" -msgstr[3] "лет" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "меÑÑц" -msgstr[1] "меÑÑцев" -msgstr[2] "меÑÑцев" -msgstr[3] "меÑÑцев" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "неделÑ" -msgstr[1] "недель" -msgstr[2] "недель" -msgstr[3] "недель" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "день" -msgstr[1] "дней" -msgstr[2] "дней" -msgstr[3] "дней" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "чаÑ" -msgstr[1] "чаÑов" -msgstr[2] "чаÑов" -msgstr[3] "чаÑов" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "минута" -msgstr[1] "минут" -msgstr[2] "минут" -msgstr[3] "минут" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "минут" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "d.m.Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "d.m.Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s был уÑпешно Ñоздан." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s был уÑпешно изменен." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s был уÑпешно удален." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Ðе указан год" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Ðе указан меÑÑц" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Ðе указан день" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Ðе указана неделÑ" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "%(verbose_name_plural)s не доÑтупен" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Будущий %(verbose_name_plural)s не доÑтупный, потому что %(class_name)s." -"allow_future Ложен." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "ÐедейÑÑ‚Ð²Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð´Ð°Ñ‚Ð° '%(datestr)s' данный формат '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Ðе наиден никакой %(verbose_name)s ÑоответÑтвующим запроÑу" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Страница не ÑвлÑетÑÑ 'поÑледней', и/или она не может быть преобразована в " -"int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "ÐедейÑÑ‚Ð²Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ñтраница (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "ПуÑтой ÑпиÑок и '%(class_name)s.allow_empty' Ложны." diff --git a/lib/python2.7/site-packages/django/conf/locale/ru/__init__.py b/lib/python2.7/site-packages/django/conf/locale/ru/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/ru/formats.py b/lib/python2.7/site-packages/django/conf/locale/ru/formats.py deleted file mode 100644 index f3a8f2be4..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ru/formats.py +++ /dev/null @@ -1,40 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j E Y г.' -TIME_FORMAT = 'G:i:s' -DATETIME_FORMAT = 'j E Y г. G:i:s' -YEAR_MONTH_FORMAT = 'F Y г.' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'd.m.Y' -SHORT_DATETIME_FORMAT = 'd.m.Y H:i' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d.%m.%Y', # '25.10.2006' - '%d.%m.%y', # '25.10.06' - '%Y-%m-%d', # '2006-10-25' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%d.%m.%y %H:%M:%S', # '25.10.06 14:30:59' - '%d.%m.%y %H:%M', # '25.10.06 14:30' - '%d.%m.%y', # '25.10.06' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = ' ' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo deleted file mode 100644 index 18f8839be..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/sk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po deleted file mode 100644 index 0beef32a3..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sk/LC_MESSAGES/django.po +++ /dev/null @@ -1,1155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-06 09:41+0000\n" -"Last-Translator: martinkosir \n" -"Language-Team: Slovak \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "arabský" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "azerbajdžanský" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "bulharský" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengálsky" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosniansky" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "katalánsky" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Äeský" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "waleský" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "dánsky" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "nemecký" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "grécky" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "anglický" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "britský" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Å¡panielsky" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "argentínska Å¡panielÄina" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "mexická Å¡panielÄina" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "estónsky" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "baskický" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "perzský" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "fínsky" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "francúzsky" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "frízsky" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "írsky" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "galícijský" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "hebrejský" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "hindský" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "chorvátsky" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "maÄarský" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "indonézsky" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "islandský" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "taliansky" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "japonský" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "gruzínsky" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "kmérsky" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "kanadský" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "kórejský" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "litovský" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "lotyÅ¡ský" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "macedónsky" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "malajalámsky" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "mongolský" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "holandský" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "nórsky" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "nórsky (Bokmal)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "nórsky (Nynorsk)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "pandžábsky" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "poľský" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "portugalský" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "portugalský (Brazília)" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "rumunský" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "ruský" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "slovenský" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "slovinský" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "albánsky" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "srbský" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "srbský (Latin)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Å¡védsky" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "tamilský" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "telúgsky" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "thajský" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "turecký" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ukrajinský" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "urdský" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "vietnamský" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Äínsky (zjednoduÅ¡ene)" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Äínsky (tradiÄne)" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Zadajte platnú hodnotu." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Toto URL je chybný odkaz." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Zadajte platnú URL adresu." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Zadajte platnú e-mailovú adresu." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Zadajte platný 'slug' pozostávajúci z písmen, Äísel, podÄiarkovníkov alebo " -"pomlÄiek." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Zadajte platnú IPv4 adresu." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Zadajte len Äíslice oddelené Äiarkami." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Uistite sa, že táto hodnota je %(limit_value)s (je to %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Uistite sa, že táto hodnota je menÅ¡ia alebo rovná %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Uistite sa, že hodnota je väÄÅ¡ia alebo rovná %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Uistite sa, že zadaná hodnota má najmenej %(limit_value)d znakov (má %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Uistite sa, že táto hodnota má najviac %(limit_value)d znakov (má %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s musí byÅ¥ unikátne pre %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s s týmto %(field_label)s už existuje." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "a" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Hodnota %r nie je platná možnosÅ¥." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Toto pole nemôže byÅ¥ prázdne." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Toto pole nemôže byÅ¥ prázdne." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Pole typu: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Celé Äíslo" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Táto hodnota musí byÅ¥ celé Äíslo." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Táto hodnota musí byÅ¥ True alebo False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Logická hodnota (buÄ True alebo False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "ReÅ¥azec (až do %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Celé Äísla oddelené Äiarkou" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Dátum (bez Äasu)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Zadajte platný dátum vo formáte RRRR-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Neplatný dátum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Zadajte platný dátum a Äas vo formáte RRRR-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Dátum (a Äas)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Táto hodnota musí byÅ¥ desatinné Äíslo." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Desatinné Äíslo" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mail adresa" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Cesta k súboru" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Táto hodnota musí byÅ¥ Äíslo s plávajúcou desatinnou Äiarkou." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Číslo s plávajúcou desatinnou Äiarkou" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Veľké celé Äíslo (8 bajtov)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP adresa" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Táto hodnota musí byÅ¥ buÄ None, True alebo False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Logická hodnota (buÄ True, False alebo None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Text" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "ÄŒas" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Zadajte platný Äas vo formáte HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML text" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Model %(model)s s primárnym kľúÄom %(pk)r neexistuje." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Cudzí kÄ¾ÃºÄ (typ urÄuje pole v relácii)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Typ relácie: jedna k jednej" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Typ relácie: M ku N" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Ak chcete vybraÅ¥ viac ako jednu položku, podržte \"Control\", alebo \"Command" -"\" na poÄítaÄi Mac." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Toto pole je povinné." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Zadajte celé Äíslo." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Zadajte Äíslo." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Uistite sa, že nie je zadaných celkovo viac ako %s Äíslic." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Uistite sa, že nie je zadaných viac ako %s desatinných miest." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" -"Uistite sa, že nie je zadaných viac ako %s Äíslic pred desatinnou Äiarkou." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Zadajte platný dátum." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Zadajte platný Äas." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Zadajte platný dátum a Äas." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Súbor nebol odoslaný. Skontrolujte typ kódovania vo formulári." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Žiaden súbor nebol odoslaný." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Odoslaný súbor je prázdny." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "Uistite sa, že názov súboru má najviac %(max)d znakov (má %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"OdoÅ¡lite prosím súbor alebo zaÅ¡krtnite políÄko pre vymazanie vstupného poľa, " -"nie oboje." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Nahrajte platný obrázok. Súbor, ktorý ste odoslali nebol obrázok alebo bol " -"poÅ¡kodený." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Vyberte platnú voľbu. %(value)s nepatrí medzi dostupné možnosti." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Vložte zoznam hodnôt." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Poradie" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "OdstrániÅ¥" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Prosím, opravte duplicitné dáta pre %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Dáta pre %(field)s musia byÅ¥ unikátne, prosím, opravte duplikáty." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Dáta pre %(field_name)s musia byÅ¥ unikátne pre %(lookup)s v %(date_field)s, " -"prosím, opravte duplikáty." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Prosím, opravte nižšie uvedené duplicitné hodnoty. " - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Vnorený cudzí kÄ¾ÃºÄ sa nezhoduje s nadradenou inÅ¡tanciou primárnho kľúÄa." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Vyberte platnú možnosÅ¥. Vybraná položka nepatrí medzi dostupné možnosti." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Vyberte platnú možnost. %s nepatrí medzi dostupné možnosti." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" nie je platná hodnota pre primárny kľúÄ." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "SúÄasne" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "ZmeniÅ¥" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "VymazaÅ¥" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Neznámy" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ãno" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nie" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "áno,nie,možno" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bajt" -msgstr[1] "%(size)d bajty" -msgstr[2] "%(size)d bajtov" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "popoludní" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "dopoludnia" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "popoludní" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "dopoludnia" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "polnoc" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "poludnie" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "pondelok" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "utorok" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "streda" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Å¡tvrtok" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "piatok" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "sobota" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "nedeľa" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "po" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "ut" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "st" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Å¡t" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "pi" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "so" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ne" - -#: utils/dates.py:18 -msgid "January" -msgstr "január" - -#: utils/dates.py:18 -msgid "February" -msgstr "február" - -#: utils/dates.py:18 -msgid "March" -msgstr "marec" - -#: utils/dates.py:18 -msgid "April" -msgstr "apríl" - -#: utils/dates.py:18 -msgid "May" -msgstr "máj" - -#: utils/dates.py:18 -msgid "June" -msgstr "jún" - -#: utils/dates.py:19 -msgid "July" -msgstr "júl" - -#: utils/dates.py:19 -msgid "August" -msgstr "august" - -#: utils/dates.py:19 -msgid "September" -msgstr "september" - -#: utils/dates.py:19 -msgid "October" -msgstr "október" - -#: utils/dates.py:19 -msgid "November" -msgstr "november" - -#: utils/dates.py:20 -msgid "December" -msgstr "december" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "máj" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jún" - -#: utils/dates.py:24 -msgid "jul" -msgstr "júl" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mar." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "apr." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "máj" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "jún" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "júl" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "aug." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "sep." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "dec." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "január" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "február" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "marec" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "apríl" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "máj" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "jún" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "júl" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "august" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "september" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "október" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "november" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "december" - -#: utils/text.py:136 -msgid "or" -msgstr "alebo" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "rok" -msgstr[1] "roky" -msgstr[2] "rokov" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mesiac" -msgstr[1] "mesiace" -msgstr[2] "mesiacov" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "týždeň" -msgstr[1] "týždne" -msgstr[2] "týždnov" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "deň" -msgstr[1] "dni" -msgstr[2] "dní" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "hodina" -msgstr[1] "hodiny" -msgstr[2] "hodín" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minúta" -msgstr[1] "minúty" -msgstr[2] "minút" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minúty" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j. F Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. F Y G:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "G:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "Objekt %(verbose_name)s bol úspeÅ¡ne vytvorený." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "Objekt %(verbose_name)s bol úspeÅ¡ne zmenený." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "Objekt %(verbose_name)s bol zmazaný." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "NeÅ¡pecifikovaný rok" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "NeÅ¡pecifikovaný mesiac" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "NeÅ¡pecifikovaný deň" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "NeÅ¡pecifikovaný týždeň" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "%(verbose_name_plural)s nie sú dostupné" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Budúce %(verbose_name_plural)s nie sú dostupné pretože %(class_name)s." -"allow_future má hodnotu False. " - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Neplatný dátumový reÅ¥azec '%(datestr)s' pre formát '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" -"Nebol nájdený žiadny %(verbose_name)s zodpovedajúci databázovému dopytu" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Stránka nemá hodnotu 'last' a taktiež nie je možné prekonvertovaÅ¥ hodnotu na " -"celé Äíslo." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Neplatná stránka (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" -"Zoznam je prázdny a zároveň má '%(class_name)s.allow_empty' hodnotu False." diff --git a/lib/python2.7/site-packages/django/conf/locale/sk/__init__.py b/lib/python2.7/site-packages/django/conf/locale/sk/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/sk/formats.py b/lib/python2.7/site-packages/django/conf/locale/sk/formats.py deleted file mode 100644 index 9eeee6685..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sk/formats.py +++ /dev/null @@ -1,37 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. F Y' -TIME_FORMAT = 'G:i:s' -DATETIME_FORMAT = 'j. F Y G:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'd.m.Y' -SHORT_DATETIME_FORMAT = 'd.m.Y G:i:s' -FIRST_DAY_OF_WEEK = 1 # Monday - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' - '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' - # '%d. %B %Y', '%d. %b. %Y', # '25. October 2006', '25. Oct. 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = ' ' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo deleted file mode 100644 index 22d85360d..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/sl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po deleted file mode 100644 index a8b18e667..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sl/LC_MESSAGES/django.po +++ /dev/null @@ -1,1163 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-05 13:57+0000\n" -"Last-Translator: zejn \n" -"Language-Team: Slovenian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ArabÅ¡Äina" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "AzerbajdžanÅ¡Äina" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "BolgarÅ¡Äina" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "BengalÅ¡Äina" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "BosanÅ¡Äina" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "KatalonÅ¡Äina" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ÄŒeÅ¡Äina" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Valežanski jezik" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "DanÅ¡Äina" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "NemÅ¡Äina" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "GrÅ¡Äina" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "AngleÅ¡Äina" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Britanska AngleÅ¡Äina" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Å panÅ¡Äina" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentinska Å¡panÅ¡Äina" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "MehiÅ¡ka Å¡panÅ¡Äina" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "EstonÅ¡Äina" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "BaskovÅ¡Äina" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "PerzijÅ¡Äina" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "FinÅ¡Äina" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "FrancoÅ¡Äina" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "FrizijÅ¡Äina" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "IrÅ¡Äina" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "GaliÄanski jezik" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebrejski jezik" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "HindujÅ¡Äina" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "HrvaÅ¡Äina" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "MadžarÅ¡Äina" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonezijski" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandski jezik" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ItalijanÅ¡Äina" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "JaponÅ¡Äina" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "GruzijÅ¡Äina" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "KmerÅ¡Äina" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "KanareÅ¡Äina" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "KorejÅ¡Äina" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "LitvanÅ¡Äina" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "LatvijÅ¡Äina" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "MakedonÅ¡Äina" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "MalajalÅ¡Äina" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "MongolÅ¡Äina" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "NizozemÅ¡Äina" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "NorveÅ¡Äina" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "NorveÅ¡Äina Bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "NorveÅ¡Äina Nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "PandžabÅ¡Äina" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "PoljÅ¡Äina" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "PortugalÅ¡Äina" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brazilska portugalÅ¡Äina" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "RomunÅ¡Äina" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "RuÅ¡Äina" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "SlovaÅ¡Äina" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "SlovenÅ¡Äina" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "AlbanÅ¡Äina" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "SrbÅ¡Äina" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "SrbÅ¡Äina v latinici" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Å vedÅ¡Äina" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "TamilÅ¡Äina" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "TeluÅ¡Äina" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Tajski jezik" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "TurÅ¡Äina" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "UkrajinÅ¡Äina" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Jezik Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "VietnamÅ¡Äina" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Poenostavljena kitajÅ¡Äina" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Tradicionalna kitajÅ¡Äina" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Vnesite veljavno vrednost." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Izgleda, da povezava na ta URL ne deluje." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Vnesite veljaven URL naslov." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Vnesite veljaven e-mail." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Vnesite veljavno URL okrajÅ¡avo. Vrednost sme vsebovati le Ärke, Å¡tevila, " -"podÄrtaje ali pomiÅ¡ljaje." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Vnesite veljaven IPv4 naslov." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Vnesite samo Å¡tevila, loÄena z vejicami." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Poskrbite, da bo ta vrednost %(limit_value)s. Trenutno je %(show_value)s." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"Poskrbite, da bo ta vrednost manj kot ali natanko %(limit_value)s znakov." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Poskrbite, da bo ta vrednost veÄja ali enaka %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Poskrbite, da bo ta vrednost vsaj %(limit_value)d znakov. Trenutno jih ima %" -"(show_value)d." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Poskrbite, da bo imela ta vrednost najveÄ %(limit_value)d znakov. Trenutno " -"jih ima %(show_value)d." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s mora biti edinstveno za %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s s tem %(field_label)s že obstaja." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "in" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Vrednost %r ni veljavna izbira." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "To polje ne more biti prazno." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "To polje ne more biti prazno." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Polje tipa: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Celo Å¡tevilo (integer)" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Ta vrednost mora biti celo Å¡tevilo." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Ta vrednost mora biti \"True\" ali \"False\"." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolova vrednost (True ali False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Niz znakov (vse do %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Z vejico loÄena cela Å¡tevila (integer)" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Datum (brez ure)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Vnesite veljaven datum v zapisu YYYY-MM-DD (leto-mesec-dan)." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Nepravilen datum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Vnesite veljaven datum/Äas v zapisu YYYY-MM-DD HH:MM[:ss[.uuuuuu]] (leto-" -"mesec-dan ura:minuta:sekunde.mikrosekunde)." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Datum (z uro)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Ta vrednost mora biti decimalno Å¡tevilo." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Decimalno Å¡tevilo" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mail naslov" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Pot do datoteke" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Ta vrednost mora biti decimalno Å¡tevilo." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Å tevilo s plavajoÄo vejico" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Velika (8 bajtna) cela Å¡tevila " - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP naslov" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Ta vrednost mora biti None, True ali False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolova vrednost (True, False ali None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Besedilo" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "ÄŒas" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Vnesite veljavni Äas v zapisu HH:MM[:ss[.uuuuuu]] (ura:minuta:sekunde." -"mikrosekunde)." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL (spletni naslov)" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML besedilo" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Model %(model)s z glavnim kljuÄem %(pk)r ne obstaja." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Tuji kljuÄ (tip odvisen od povezanega polja)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Relacija ena-na-ena" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Relacija veÄ-na-veÄ" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "Držite \"Control\" (ali \"Command\" na Mac-u) za izbiro veÄ kot enega." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "To polje je obvezno." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Vnesite celo Å¡tevilo." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Vnesite Å¡tevilo." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Poskrbite, da skupno ne bo veÄ kot %s Å¡tevil." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Poskrbite, da skupno ne bo veÄ kot %s decimalnih mest." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Poskrbite, da ne bo veÄ kot %s Å¡tevil pred decimalno piko." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Vnesite veljaven datum." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Vnesite veljaven Äas." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Vnesite veljaven datum/Äas." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Datoteka ni bila poslana. Preverite nabor znakov v formi." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Poslali niste nobene datoteke." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Poslana datoteka je prazna." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Poskrbite, da bo imela ta datoteka najveÄ %(max)d znakov (trenutno jih ima %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Prosim oddaj datoteko ali izberi poÄisti okvir, ampak ne oboje hkrati." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Naložite veljavno sliko. Naložena datoteka ni bila slika ali pa je bila le-" -"ta okvarjena." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Izberite veljavno možnost. %(value)s ni med ponujenimi izbirami." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Vnesite seznam vrednosti." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Razvrsti" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "IzbriÅ¡i" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Prosimo, odpravite podvojene vrednosti za %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Prosimo popravite podvojene vrednosti za %(field)s, ki morajo biti unikatne." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Prosimo popravite podvojene vrednosti za polje %(field_name)s, ki mora biti " -"edinstveno za %(lookup)s po %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Prosimo odpravite podvojene vrednosti spodaj." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Tuji kljuÄ se ne ujema z glavnim kljuÄem povezanega vnosa." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Izberite veljavno možnost. Te možnosti ni med ponujenimi izbirami." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Izberite veljavno možnost. %s ni med ponujenimi izbirami." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ni veljavna vrednost za glavni kljuÄ." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Trenutno" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Spremeni" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "PoÄisti" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Neznano" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Da" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ne" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "da,ne,morda" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bajt" -msgstr[1] "%(size)d bajta" -msgstr[2] "%(size)d bajti" -msgstr[3] "%(size)d bajtov" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "polnoÄ" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "poldne" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "ponedeljek" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "torek" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "sreda" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Äetrtek" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "petek" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "sobota" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "nedelja" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "pon" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "tor" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "sre" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Äet" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "pet" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "sob" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ned" - -#: utils/dates.py:18 -msgid "January" -msgstr "januar" - -#: utils/dates.py:18 -msgid "February" -msgstr "februar" - -#: utils/dates.py:18 -msgid "March" -msgstr "marec" - -#: utils/dates.py:18 -msgid "April" -msgstr "april" - -#: utils/dates.py:18 -msgid "May" -msgstr "maj" - -#: utils/dates.py:18 -msgid "June" -msgstr "junij" - -#: utils/dates.py:19 -msgid "July" -msgstr "julij" - -#: utils/dates.py:19 -msgid "August" -msgstr "avgust" - -#: utils/dates.py:19 -msgid "September" -msgstr "september" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktober" - -#: utils/dates.py:19 -msgid "November" -msgstr "november" - -#: utils/dates.py:20 -msgid "December" -msgstr "december" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "maj" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "avg" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Jan" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Marec" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Maj" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Junij" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Julij" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Avg." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dec." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Januar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Februar" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Marec" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Maj" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Junij" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Julij" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Avgust" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "September" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Oktober" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "November" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "December" - -#: utils/text.py:136 -msgid "or" -msgstr "ali" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "leto" -msgstr[1] "leti" -msgstr[2] "leta" -msgstr[3] "let" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mesec" -msgstr[1] "meseca" -msgstr[2] "meseci" -msgstr[3] "mesecev" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "teden" -msgstr[1] "tedna" -msgstr[2] "tedni" -msgstr[3] "tednov" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dan" -msgstr[1] "dneva" -msgstr[2] "dnevi" -msgstr[3] "dni" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "ura" -msgstr[1] "uri" -msgstr[2] "ure" -msgstr[3] "ur" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuta" -msgstr[1] "minuti" -msgstr[2] "minute" -msgstr[3] "minut" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minute" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j.n.Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. F Y, H:i:s" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i:s" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s je bil uspeÅ¡no ustvarjen." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s je bil uspeÅ¡no posodobljen." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s je bil uspeÅ¡no izbrisan." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Leto ni vneÅ¡eno" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Mesec ni vneÅ¡en" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Dan ni vneÅ¡en" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Teden ni vneÅ¡en" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Na voljo ni noben %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Prihodnje %(verbose_name_plural)s niso na voljo, ker je vrednost %" -"(class_name)s.allow_future False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" -"Neveljavna oblika datuma '%(datestr)s' glede na priÄakovano obliko '%(format)" -"s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Noben %(verbose_name)s ne ustreza poizvedbi" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Strani niti ni 'last' niti ni celo Å¡tevilo." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Neveljavna stran (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Prazen seznam ob nastavitvi '%(class_name)s.allow_empty = False'." diff --git a/lib/python2.7/site-packages/django/conf/locale/sl/__init__.py b/lib/python2.7/site-packages/django/conf/locale/sl/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/sl/formats.py b/lib/python2.7/site-packages/django/conf/locale/sl/formats.py deleted file mode 100644 index f019323bc..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sl/formats.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'd. F Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = 'j. F Y. H:i' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'j. M. Y' -SHORT_DATETIME_FORMAT = 'j.n.Y. H:i' -FIRST_DAY_OF_WEEK = 0 - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d.%m.%Y', '%d.%m.%y', # '25.10.2006', '25.10.06' - '%d-%m-%Y', # '25-10-2006' - '%d. %m. %Y', '%d. %m. %y', # '25. 10. 2006', '25. 10. 06' -) - -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) - -DATETIME_INPUT_FORMATS = ( - '%d.%m.%Y %H:%M:%S', # '25.10.2006 14:30:59' - '%d.%m.%Y %H:%M', # '25.10.2006 14:30' - '%d.%m.%Y', # '25.10.2006' - '%d.%m.%y %H:%M:%S', # '25.10.06 14:30:59' - '%d.%m.%y %H:%M', # '25.10.06 14:30' - '%d.%m.%y', # '25.10.06' - '%d-%m-%Y %H:%M:%S', # '25-10-2006 14:30:59' - '%d-%m-%Y %H:%M', # '25-10-2006 14:30' - '%d-%m-%Y', # '25-10-2006' - '%d. %m. %Y %H:%M:%S', # '25. 10. 2006 14:30:59' - '%d. %m. %Y %H:%M', # '25. 10. 2006 14:30' - '%d. %m. %Y', # '25. 10. 2006' - '%d. %m. %y %H:%M:%S', # '25. 10. 06 14:30:59' - '%d. %m. %y %H:%M', # '25. 10. 06 14:30' - '%d. %m. %y', # '25. 10. 06' -) - -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo deleted file mode 100644 index 9c7de0d43..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/sq/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/sq/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/sq/LC_MESSAGES/django.po deleted file mode 100644 index d7a1c51aa..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sq/LC_MESSAGES/django.po +++ /dev/null @@ -1,1153 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: Besnik \n" -"Language-Team: Albanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabe" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgare" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengali" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Boshnjake" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalane" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Çeke" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Uellsiane" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Daneze" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Gjermane" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Greke" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Angleze" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Anglishte Britanike" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spanjolle" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Spanjishte Argjentinase" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estoneze" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baske" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persiane" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finlandeze" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Frënge" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisiane" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irlandeze" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galike" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebraishte" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Indiane" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroate" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Hungareze" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indoneziane" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Islandeze" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italiane" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japoneze" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Gjeorgjiane" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmere" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreane" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Lituaneze" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Latviane" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Maqedone" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malajalame" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongoliane" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Holandeze" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norvegjeze" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norvegjeze Bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norvegjeze Nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Panxhabe" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polake" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugeze" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Portugeze Braziliane" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rumune" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Ruse" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovake" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slovene" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Shqipe" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbe" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbe Latine" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Suedeze" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamileze" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Tailandeze" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turke" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrainase" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnameze" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Kineze e Thjeshtuar" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Kineze Tradicionale" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Jepni vlerë të vlefshme." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Kjo URL duket se është lidhje e dëmtuar." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Jepni një URL të vlefshme." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Jepni një adresë e-mail të vlefshme." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Jepni një 'slug' të vlefshëm, të përbërë nga shkronja, numra, nëvija ose " -"vija në mes." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Jepni një vendndodhje të vlefshme IPv4." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Jepni vetëm shifra të ndara nga presje." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Sigurohuni që kjo vlerë të jetë %(limit_value)s (është %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"Sigurohuni që kjo vlerë të jetë më e vogël ose baraz me %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Sigurohuni që kjo vlerë është më e madhe ose baraz me %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Sigurohuni që kjo vlerë të ketë të paktën %(limit_value)d shenja (ka %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Sigurohuni që kjo vlerë të ketë e shumta %(limit_value)d shenja (ka %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s duhet të jetë unike për %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "Ka tashmë një %(model_name)s me këtë %(field_label)s." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr " dhe " - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Vlera %r nuk është zgjedhje e vlefshme." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Kjo fushë nuk mund të jetë bosh." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Kjo fushë nuk mund të jetë e zbrazët." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Fushë e llojit: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Numër i plotë" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Kjo vlerë duhet të jetë numër i plotë." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Kjo vlerë duhet të jetë True ose False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Buleane (Ose True, ose False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Varg (deri në %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Numra të plotë të ndarë me presje" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Datë (pa kohë)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Jepni një datë të vlefshme në formatin YYYY-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Datë e pavlefshme: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Jepni një datë/kohë të vlefshme, në formatin YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Datë (me kohë)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Kjo vlerë duhet të jetë një numër dhjetor." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Numër dhjetor" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Adresë e-mail" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Shteg kartele" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Numër i plotë i madh (8 bajte)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Adresë IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Kjo vlerë duhet të jetë None, True ose False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Buleane (Ose True, ose False, ose None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Kohë" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Jepni një kohë të vlefshme, në formatin HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "Tekst XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Modeli %(model)s me pk %(pk)r nuk ekziston." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Kyç i Jashtëm (lloj i përcaktuar nga fusha përkatëse)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Marrëdhënie një-për-një" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Marrëdhënie shumë-për-shumë" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Mbani të shtypur \"Control\", ose \"Command\" në Mac, për të përzgjedhur më " -"shumë se një." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Kjo fushë është e domosdoshme." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Jepni një numër të tërë." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Jepni një numër." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Sigurohuni që nuk ka më tepër se %s shifra gjithsej." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Sigurohuni që nuk ka më shumë se %s vende dhjetore." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Sigurohuni që nuk ka më tepër se %s shifra para presjes dhjetore." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Jepni një datë të vlefshme." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Jepni një kohë të vlefshme." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Jepni një datë/kohë të vlefshme." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" -"Nuk u parashtrua ndonjë kartelë. Kontrolloni llojin e kodimit te forma." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Nuk u parashtrua kartelë." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Kartela e parashtruar është bosh." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Sigurohuni që ky emër kartele ka e shumta %(max)d shenja (ka %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Ju lutem, ose parashtroni një kartelë, ose i vini shenjë kutizës për " -"pastrim, jo që të dyja." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Ngarkoni një figurë të vlefshme. Kartela që ngarkuat ose nuk qe figurë, ose " -"qe figurë e dëmtuar." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Përzgjidhni një zgjedhje të vlefshme. %(value)s nuk është nga zgjedhjet e " -"mundshme." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Jepni një listë vlerash." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Rend" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Fshije" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Ju lutem, ndreqni të dhënat dyfishe për %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Ju lutem, ndreqni të dhënat dyfishe për %(field)s, të cilat duhet të jenë " -"unike." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Ju lutem, ndreqni të dhënat dyfishe për %(field_name)s të cilat duhet të " -"jenë unike për %(lookup)s te %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Ju lutem, ndreqni vlerat dyfishe më poshtë." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Kyçi i jashtëm \"inline\" nuk u përputh me kyçin parësor të instancës mëmë." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Përzgjidhni një zgjedhje të vlefshme. Ajo zgjedhje nuk është një nga " -"zgjedhjet e mundshme." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" -"Përzgjidhni një zgjedhje të vlefshme. %s nuk është një nga zgjedhjet e " -"mundshme." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" nuk është vlerë e vlefshme për kyç primar." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Tani" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Ndryshoje" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Pastroje" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "E panjohur" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Po" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Jo" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "po,jo,ndoshta" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bajt" -msgstr[1] "%(size)d bajte" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "mesnatë" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "meditë" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "E hënë" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "E martë" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "E mërkurë" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "E enjte" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "E premte" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "E shtunë" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "E dielë" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Hën" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Mar" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Mër" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Enj" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Pre" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Sht" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Die" - -#: utils/dates.py:18 -msgid "January" -msgstr "Janar" - -#: utils/dates.py:18 -msgid "February" -msgstr "Shkurt" - -#: utils/dates.py:18 -msgid "March" -msgstr "Mars" - -#: utils/dates.py:18 -msgid "April" -msgstr "Prill" - -#: utils/dates.py:18 -msgid "May" -msgstr "Maj" - -#: utils/dates.py:18 -msgid "June" -msgstr "Qershor" - -#: utils/dates.py:19 -msgid "July" -msgstr "Korrik" - -#: utils/dates.py:19 -msgid "August" -msgstr "Gusht" - -#: utils/dates.py:19 -msgid "September" -msgstr "Shtator" - -#: utils/dates.py:19 -msgid "October" -msgstr "Tetor" - -#: utils/dates.py:19 -msgid "November" -msgstr "Nëntor" - -#: utils/dates.py:20 -msgid "December" -msgstr "Dhjetor" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "shk" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "pri" - -#: utils/dates.py:23 -msgid "may" -msgstr "maj" - -#: utils/dates.py:23 -msgid "jun" -msgstr "qer" - -#: utils/dates.py:24 -msgid "jul" -msgstr "kor" - -#: utils/dates.py:24 -msgid "aug" -msgstr "gus" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sht" - -#: utils/dates.py:24 -msgid "oct" -msgstr "oct" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nën" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dhj" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Shk." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Mars" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Prill" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Maj" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Qershor" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Korrik" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Gus." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Shta." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Tet." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nën." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dhj." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Janar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Shkurt" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Mars" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Prill" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Maj" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Qershor" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Korrik" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Gusht" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Shtator" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Tetor" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Nëntor" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Dhjetor" - -#: utils/text.py:136 -msgid "or" -msgstr "ose" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "vit" -msgstr[1] "vite" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "muaj" -msgstr[1] "muaj" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "javë" -msgstr[1] "javë" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "ditë" -msgstr[1] "ditë" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "orë" -msgstr[1] "orë" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minutë" -msgstr[1] "minuta" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuta" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s u krijua me sukses." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s u përditësua me sukses." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s u fshi." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/sq/__init__.py b/lib/python2.7/site-packages/django/conf/locale/sq/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/sq/formats.py b/lib/python2.7/site-packages/django/conf/locale/sq/formats.py deleted file mode 100644 index 6dd12e580..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sq/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'd F Y' -TIME_FORMAT = 'g.i.s.A' -# DATETIME_FORMAT = -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'Y-m-d' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo deleted file mode 100644 index b36e07c5b..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/sr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/sr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/sr/LC_MESSAGES/django.po deleted file mode 100644 index 6de536484..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sr/LC_MESSAGES/django.po +++ /dev/null @@ -1,1151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-06 21:32+0000\n" -"Last-Translator: janos \n" -"Language-Team: Serbian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\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" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "арапÑки" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "азербејџанÑки" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "бугарÑки" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "бенгалÑки" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "боÑанÑки" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "каталонÑки" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "чешки" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "велшки" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "данÑки" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "немачки" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "грчки" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "енглеÑки" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "британÑки енглеÑки" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "шпанÑки" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "аргентинÑки шпанÑки" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "мекÑички шпанÑки" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "еÑтонÑки" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "баÑкијÑки" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "перÑијÑки" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "финÑки" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "француÑки" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "фризијÑки" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ирÑки" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "галÑки" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "хебрејÑки" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "хинду" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "хрватÑки" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "мађарÑки" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "индонежанÑки" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "иÑландÑки" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "италијанÑки" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "јапанÑки" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "грузијÑки" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "камбодијÑки" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "канада" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "корејÑки" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "литванÑки" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "латвијÑки" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "македонÑки" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "малајаламÑки" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "монголÑки" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "холандÑки" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "норвешки" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "норвешки кнјжевни" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "норвешки нови" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Панџаби" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "пољÑки" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "португалÑки" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "бразилÑки португалÑки" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "румунÑки" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "руÑки" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Ñловачки" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Ñловеначки" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "албанÑки" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "ÑрпÑки" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "ÑрпÑки (латиница)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "шведÑки" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "тамилÑки" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "телугу" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "тајландÑки" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "турÑки" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "украјинÑки" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Урду" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "вијетнамÑки" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "новокинеÑки" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "ÑтарокинеÑки" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "УнеÑите иÑправну вредноÑÑ‚." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Овај URL изгледа не води никуда." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "УнеÑите иÑправан URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "УнеÑите важећу имејл адреÑу." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"УнеÑите иÑрпаван „Ñлаг“, који Ñе ÑаÑтоји од Ñлова, бројки, доњих црта или " -"циртица." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "УнеÑите иÑправну IPv4 адреÑу." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "УнеÑите Ñамо бројке раздвојене запетама." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Ово поље мора да буде %(limit_value)s (тренутно има %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Ова вредноÑÑ‚ мора да буде мања од %(limit_value)s. или тачно толико." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Ова вредноÑÑ‚ мора бити већа од %(limit_value)s или тачно толико." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ово поље мора да Ñадржи најмање %(limit_value)d Ñловних меÑта (тренутно има %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ово поље мора да Ñадржи највише %(limit_value)d Ñловних меÑта (тренутно има %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s мора да буде јединÑтвен за %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s Ñа овом вредношћу %(field_label)s већ поÑтоји." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "и" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "ВредноÑÑ‚ %r није дозвољена." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Ово поље не може да оÑтане празно." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Ово поље не може да оÑтане празно." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Поње типа: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Цео број" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Ова вредноÑÑ‚ мора бити целобројна." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Ова вредноÑÑ‚ мора бити True или False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Булова вредноÑÑ‚ (True или False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Стринг (највише %(max_length)s знакова)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Цели бројеви раздвојени запетама" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Датум (без времена)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "УнеÑите иÑправан датум у формату ГГГГ-ММ-ДД." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "ÐеиÑправан датум: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "УнеÑите иÑправан датум/време у формату ГГГГ-ММ-ДД ЧЧ:ММ[:ÑÑ[.уууууу]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Датум (Ñа временом)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Ова вредноÑÑ‚ мора бити децимални број" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Децимални број" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Имејл адреÑа" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Путања фајла" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Ова вредноÑÑ‚ мора бити број Ñа клизећом запетом" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Број Ñа покреном запетом" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Велики цео број" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP адреÑа" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Ова вредноÑÑ‚ мора бити или None, или True, или False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Булова вредноÑÑ‚ (True, False или None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ТекÑÑ‚" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Време" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "УнеÑите иÑправно време у формату ЧЧ:ММ[:ÑÑ[.уууууу]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML текÑÑ‚" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Објекат клаÑе %(model)s Ñа примарним кључем %(pk)r не поÑтоји." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Страни кључ (тип одређује референтно поље)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Релација један на један" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Релација више на више" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Држите „Control“, или „Command“ на Mac-у да биÑте обележили више од једне " -"Ñтавке." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Ово поље Ñе мора попунити." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "УнеÑите цео број." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "УнеÑите број." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Ðе Ñме бити укупно више од %s цифара. Проверите." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Ðе Ñме бити укупно више од %s децималних меÑта. Проверите." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Ðе Ñме бити укупно више од %s цифара пре запете. Проверите." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "УнеÑите иÑправан датум." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "УнеÑите иÑправно време" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "УнеÑите иÑправан датум/време." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Фајл није пребачен. Проверите тип енкодирања формулара." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Фајл није пребачен." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Пребачен фајл је празан." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Ðазив фајла мора да Ñадржи бар %(max)d Ñловних меÑта (тренутно има %(length)" -"d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Може Ñе Ñамо поÑлати фајл или избриÑати, не оба." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Пребаците иÑправан фајл. Фајл који је пребачен или није Ñлика, или је " -"оштећен." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"%(value)s није међу понуђеним вредноÑтима. Одаберите једну од понуђених." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "УнеÑите лиÑту вредноÑти." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "РедоÑлед" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Обриши" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "ИÑправите дуплиран Ñадржај за поља: %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"ИÑправите дуплиран Ñадржај за поља: %(field)s, који мора да буде јединÑтвен." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"ИÑправите дуплиран Ñадржај за поља: %(field_name)s, који мора да буде " -"јединÑтвен за %(lookup)s у %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "ИÑправите дуплиране вредноÑти доле." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Страни кључ Ñе није поклопио Ñа инÑтанцом родитељÑког кључа." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Одабрана вредноÑÑ‚ није међу понуђенима. Одаберите једну од понуђених." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "%s није међу понуђеним вредноÑтима. Одаберите једну од понуђених." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "„%s“ није иÑправна вредноÑÑ‚ за примарни кључ." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Тренутно" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Измени" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ОчиÑти" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Ðепознато" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Да" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ðе" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "да,не,можда" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d бајт" -msgstr[1] "%(size)d бајта" -msgstr[2] "%(size)d бајтова" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "по п." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "пре п." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "поноћ" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "подне" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "понедељак" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "уторак" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Ñреда" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "четвртак" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "петак" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Ñубота" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "недеља" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "пон." - -#: utils/dates.py:10 -msgid "Tue" -msgstr "уто." - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Ñре." - -#: utils/dates.py:10 -msgid "Thu" -msgstr "чет." - -#: utils/dates.py:10 -msgid "Fri" -msgstr "пет." - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Ñуб." - -#: utils/dates.py:11 -msgid "Sun" -msgstr "нед." - -#: utils/dates.py:18 -msgid "January" -msgstr "јануар" - -#: utils/dates.py:18 -msgid "February" -msgstr "фебруар" - -#: utils/dates.py:18 -msgid "March" -msgstr "март" - -#: utils/dates.py:18 -msgid "April" -msgstr "април" - -#: utils/dates.py:18 -msgid "May" -msgstr "мај" - -#: utils/dates.py:18 -msgid "June" -msgstr "јун" - -#: utils/dates.py:19 -msgid "July" -msgstr "јул" - -#: utils/dates.py:19 -msgid "August" -msgstr "авгуÑÑ‚" - -#: utils/dates.py:19 -msgid "September" -msgstr "Ñептембар" - -#: utils/dates.py:19 -msgid "October" -msgstr "октобар" - -#: utils/dates.py:19 -msgid "November" -msgstr "новембар" - -#: utils/dates.py:20 -msgid "December" -msgstr "децембар" - -#: utils/dates.py:23 -msgid "jan" -msgstr "јан." - -#: utils/dates.py:23 -msgid "feb" -msgstr "феб." - -#: utils/dates.py:23 -msgid "mar" -msgstr "мар." - -#: utils/dates.py:23 -msgid "apr" -msgstr "апр." - -#: utils/dates.py:23 -msgid "may" -msgstr "мај." - -#: utils/dates.py:23 -msgid "jun" -msgstr "јун." - -#: utils/dates.py:24 -msgid "jul" -msgstr "јул." - -#: utils/dates.py:24 -msgid "aug" -msgstr "ауг." - -#: utils/dates.py:24 -msgid "sep" -msgstr "Ñеп." - -#: utils/dates.py:24 -msgid "oct" -msgstr "окт." - -#: utils/dates.py:24 -msgid "nov" -msgstr "нов." - -#: utils/dates.py:24 -msgid "dec" -msgstr "дец." - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Јан." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Феб." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Март" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Ðприл" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Мај" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Јун" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Јул" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Ðвг." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Септ." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Окт." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Ðов." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Дец." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Јануар" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Фебруар" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Март" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Ðприл" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Мај" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Јун" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Јул" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "ÐвгуÑÑ‚" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Септембар" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Октобар" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Ðовембар" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Децембар" - -#: utils/text.py:136 -msgid "or" -msgstr "или" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "година" -msgstr[1] "године" -msgstr[2] "година" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "меÑец" -msgstr[1] "меÑеца" -msgstr[2] "меÑеци" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "недеља" -msgstr[1] "недеље" -msgstr[2] "недеља" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "дан" -msgstr[1] "дана" -msgstr[2] "дана" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "Ñат" -msgstr[1] "Ñата" -msgstr[2] "Ñати" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "минут" -msgstr[1] "минута" -msgstr[2] "минута" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "минута" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j. F Y." - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. F Y. H:i Т" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "G:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y." - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s је уÑпешно креиран." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s је уÑпешно ажуриран." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s је обриÑан." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Година није назначена" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "МеÑец није назначен" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Дан није назначен" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Ðедеља није назначена" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "ÐедоÑтупни објекти %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Опција „future“ није доÑтупна за „%(verbose_name_plural)s“ јер %(class_name)" -"s.allow_future има вредноÑÑ‚ False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "ÐеиÑправан датум „%(datestr)s“ дат формату „%(format)s“" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Ðиједан објекат клаÑе %(verbose_name)s није нађен датим упитом." - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Страница није поÑледња, нити може бити конвертована у тип int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "ÐеиÑпаравна Ñтраница (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Празна лиÑта и „%(class_name)s.allow_empty“ има вредноÑÑ‚ False." diff --git a/lib/python2.7/site-packages/django/conf/locale/sr/__init__.py b/lib/python2.7/site-packages/django/conf/locale/sr/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/sr/formats.py b/lib/python2.7/site-packages/django/conf/locale/sr/formats.py deleted file mode 100644 index 5e05832f7..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sr/formats.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. F Y.' -TIME_FORMAT = 'H:i' -DATETIME_FORMAT = 'j. F Y. H:i' -YEAR_MONTH_FORMAT = 'F Y.' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'j.m.Y.' -SHORT_DATETIME_FORMAT = 'j.m.Y. H:i' -FIRST_DAY_OF_WEEK = 1 - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.' - '%d. %m. %Y.', '%d. %m. %y.', # '25. 10. 2006.', '25. 10. 06.' - '%Y-%m-%d', # '2006-10-25' - # '%d. %b %y.', '%d. %B %y.', # '25. Oct 06.', '25. October 06.' - # '%d. %b \'%y.', '%d. %B \'%y.', # '25. Oct '06.', '25. October '06.' - # '%d. %b %Y.', '%d. %B %Y.', # '25. Oct 2006.', '25. October 2006.' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d.%m.%Y. %H:%M:%S', # '25.10.2006. 14:30:59' - '%d.%m.%Y. %H:%M', # '25.10.2006. 14:30' - '%d.%m.%Y.', # '25.10.2006.' - '%d.%m.%y. %H:%M:%S', # '25.10.06. 14:30:59' - '%d.%m.%y. %H:%M', # '25.10.06. 14:30' - '%d.%m.%y.', # '25.10.06.' - '%d. %m. %Y. %H:%M:%S', # '25. 10. 2006. 14:30:59' - '%d. %m. %Y. %H:%M', # '25. 10. 2006. 14:30' - '%d. %m. %Y.', # '25. 10. 2006.' - '%d. %m. %y. %H:%M:%S', # '25. 10. 06. 14:30:59' - '%d. %m. %y. %H:%M', # '25. 10. 06. 14:30' - '%d. %m. %y.', # '25. 10. 06.' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo deleted file mode 100644 index 56031edda..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.po deleted file mode 100644 index 24c0b0f62..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sr_Latn/LC_MESSAGES/django.po +++ /dev/null @@ -1,1151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-06 21:36+0000\n" -"Last-Translator: janos \n" -"Language-Team: Serbian (Latin) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\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" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "arapski" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "azerbejdžanski" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "bugarski" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "bengalski" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "bosanski" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "katalonski" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ÄeÅ¡ki" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "velÅ¡ki" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "danski" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "nemaÄki" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "grÄki" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "engleski" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "britanski engleski" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Å¡panski" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "argentinski Å¡panski" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "meksiÄki Å¡panski" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "estonski" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "baskijski" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "persijski" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "finski" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "francuski" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "frizijski" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "irski" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "galski" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "hebrejski" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "hindu" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "hrvatski" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "maÄ‘arski" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "indonežanski" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "islandski" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "italijanski" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "japanski" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "gruzijski" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "kambodijski" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "kanada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "korejski" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "litvanski" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "latvijski" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "makedonski" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "malajalamski" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "mongolski" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "holandski" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "norveÅ¡ki" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "norveÅ¡ki knjževni" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "norveÅ¡ki novi" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Pandžabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "poljski" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "portugalski" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "brazilski portugalski" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "rumunski" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "ruski" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "slovaÄki" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "slovenaÄki" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "albanski" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "srpski" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "srpski (latinica)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Å¡vedski" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "tamilski" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "tajlandski" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "turski" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ukrajinski" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "vijetnamski" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "novokineski" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "starokineski" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Unesite ispravnu vrednost." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Ovaj URL izgleda ne vodi nikuda." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Unesite ispravan URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Unesite važeću imejl adresu." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Unesite isrpavan „slag“, koji se sastoji od slova, brojki, donjih crta ili " -"cirtica." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Unesite ispravnu IPv4 adresu." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Unesite samo brojke razdvojene zapetama." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Ovo polje mora da bude %(limit_value)s (trenutno ima %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Ova vrednost mora da bude manja od %(limit_value)s. ili taÄno toliko." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Ova vrednost mora biti veća od %(limit_value)s ili taÄno toliko." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ovo polje mora da sadrži najmanje %(limit_value)d slovnih mesta (trenutno " -"ima %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Ovo polje mora da sadrži najviÅ¡e %(limit_value)d slovnih mesta (trenutno ima " -"%(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s mora da bude jedinstven za %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s sa ovom vrednošću %(field_label)s već postoji." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "i" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Vrednost %r nije dozvoljena." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Ovo polje ne može da ostane prazno." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Ovo polje ne može da ostane prazno." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Ponje tipa: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Ceo broj" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Ova vrednost mora biti celobrojna." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Ova vrednost mora biti True ili False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Bulova vrednost (True ili False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "String (najviÅ¡e %(max_length)s znakova)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Celi brojevi razdvojeni zapetama" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Datum (bez vremena)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Unesite ispravan datum u formatu GGGG-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Neispravan datum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Unesite ispravan datum/vreme u formatu GGGG-MM-DD ČČ:MM[:ss[.uuuuuu]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Datum (sa vremenom)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Ova vrednost mora biti decimalni broj" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Decimalni broj" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Imejl adresa" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Putanja fajla" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Ova vrednost mora biti broj sa klizećom zapetom" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Broj sa pokrenom zapetom" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Veliki ceo broj" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP adresa" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Ova vrednost mora biti ili None, ili True, ili False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Bulova vrednost (True, False ili None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Tekst" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Vreme" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Unesite ispravno vreme u formatu ČČ:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML tekst" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Objekat klase %(model)s sa primarnim kljuÄem %(pk)r ne postoji." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Strani kljuÄ (tip odreÄ‘uje referentno polje)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Relacija jedan na jedan" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Relacija viÅ¡e na viÅ¡e" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Držite „Control“, ili „Command“ na Mac-u da biste obeležili viÅ¡e od jedne " -"stavke." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Ovo polje se mora popuniti." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Unesite ceo broj." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Unesite broj." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Ne sme biti ukupno viÅ¡e od %s cifara. Proverite." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Ne sme biti ukupno viÅ¡e od %s decimalnih mesta. Proverite." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Ne sme biti ukupno viÅ¡e od %s cifara pre zapete. Proverite." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Unesite ispravan datum." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Unesite ispravno vreme" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Unesite ispravan datum/vreme." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Fajl nije prebaÄen. Proverite tip enkodiranja formulara." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Fajl nije prebaÄen." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "PrebaÄen fajl je prazan." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Naziv fajla mora da sadrži bar %(max)d slovnih mesta (trenutno ima %(length)" -"d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Može se samo poslati fajl ili izbrisati, ne oba." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Prebacite ispravan fajl. Fajl koji je prebaÄen ili nije slika, ili je " -"oÅ¡tećen." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"%(value)s nije meÄ‘u ponuÄ‘enim vrednostima. Odaberite jednu od ponuÄ‘enih." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Unesite listu vrednosti." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Redosled" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "ObriÅ¡i" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Ispravite dupliran sadržaj za polja: %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Ispravite dupliran sadržaj za polja: %(field)s, koji mora da bude jedinstven." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Ispravite dupliran sadržaj za polja: %(field_name)s, koji mora da bude " -"jedinstven za %(lookup)s u %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Ispravite duplirane vrednosti dole." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Strani kljuÄ se nije poklopio sa instancom roditeljskog kljuÄa." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Odabrana vrednost nije meÄ‘u ponuÄ‘enima. Odaberite jednu od ponuÄ‘enih." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "%s nije meÄ‘u ponuÄ‘enim vrednostima. Odaberite jednu od ponuÄ‘enih." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "„%s“ nije ispravna vrednost za primarni kljuÄ." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Trenutno" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Izmeni" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "OÄisti" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Nepoznato" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Da" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Ne" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "da,ne,možda" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bajt" -msgstr[1] "%(size)d bajta" -msgstr[2] "%(size)d bajtova" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "po p." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "pre p." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "ponoć" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "podne" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "ponedeljak" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "utorak" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "sreda" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Äetvrtak" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "petak" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "subota" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "nedelja" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "pon." - -#: utils/dates.py:10 -msgid "Tue" -msgstr "uto." - -#: utils/dates.py:10 -msgid "Wed" -msgstr "sre." - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Äet." - -#: utils/dates.py:10 -msgid "Fri" -msgstr "pet." - -#: utils/dates.py:11 -msgid "Sat" -msgstr "sub." - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ned." - -#: utils/dates.py:18 -msgid "January" -msgstr "januar" - -#: utils/dates.py:18 -msgid "February" -msgstr "februar" - -#: utils/dates.py:18 -msgid "March" -msgstr "mart" - -#: utils/dates.py:18 -msgid "April" -msgstr "april" - -#: utils/dates.py:18 -msgid "May" -msgstr "maj" - -#: utils/dates.py:18 -msgid "June" -msgstr "jun" - -#: utils/dates.py:19 -msgid "July" -msgstr "jul" - -#: utils/dates.py:19 -msgid "August" -msgstr "avgust" - -#: utils/dates.py:19 -msgid "September" -msgstr "septembar" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktobar" - -#: utils/dates.py:19 -msgid "November" -msgstr "novembar" - -#: utils/dates.py:20 -msgid "December" -msgstr "decembar" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan." - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb." - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar." - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr." - -#: utils/dates.py:23 -msgid "may" -msgstr "maj." - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun." - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul." - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug." - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep." - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt." - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov." - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec." - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Jan." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Feb." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Mart" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Maj" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Jun" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Jul" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Avg." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Sept." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Okt." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Nov." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Dec." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Januar" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Februar" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Mart" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "April" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Maj" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Jun" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Jul" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Avgust" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Septembar" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Oktobar" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Novembar" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Decembar" - -#: utils/text.py:136 -msgid "or" -msgstr "ili" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "godina" -msgstr[1] "godine" -msgstr[2] "godina" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mesec" -msgstr[1] "meseca" -msgstr[2] "meseci" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "nedelja" -msgstr[1] "nedelje" -msgstr[2] "nedelja" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dan" -msgstr[1] "dana" -msgstr[2] "dana" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "sat" -msgstr[1] "sata" -msgstr[2] "sati" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minuta" -msgstr[2] "minuta" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuta" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j. F Y." - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j. F Y. H:i T" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "G:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y." - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j. F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s je uspeÅ¡no kreiran." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s je uspeÅ¡no ažuriran." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s je obrisan." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Godina nije naznaÄena" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Mesec nije naznaÄen" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Dan nije naznaÄen" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Nedelja nije naznaÄena" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Nedostupni objekti %(verbose_name_plural)s" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Opcija „future“ nije dostupna za „%(verbose_name_plural)s“ jer %(class_name)" -"s.allow_future ima vrednost False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Neispravan datum „%(datestr)s“ dat formatu „%(format)s“" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Nijedan objekat klase %(verbose_name)s nije naÄ‘en datim upitom." - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Stranica nije poslednja, niti može biti konvertovana u tip int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Neisparavna stranica (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Prazna lista i „%(class_name)s.allow_empty“ ima vrednost False." diff --git a/lib/python2.7/site-packages/django/conf/locale/sr_Latn/__init__.py b/lib/python2.7/site-packages/django/conf/locale/sr_Latn/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/sr_Latn/formats.py b/lib/python2.7/site-packages/django/conf/locale/sr_Latn/formats.py deleted file mode 100644 index 5e05832f7..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sr_Latn/formats.py +++ /dev/null @@ -1,49 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j. F Y.' -TIME_FORMAT = 'H:i' -DATETIME_FORMAT = 'j. F Y. H:i' -YEAR_MONTH_FORMAT = 'F Y.' -MONTH_DAY_FORMAT = 'j. F' -SHORT_DATE_FORMAT = 'j.m.Y.' -SHORT_DATETIME_FORMAT = 'j.m.Y. H:i' -FIRST_DAY_OF_WEEK = 1 - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d.%m.%Y.', '%d.%m.%y.', # '25.10.2006.', '25.10.06.' - '%d. %m. %Y.', '%d. %m. %y.', # '25. 10. 2006.', '25. 10. 06.' - '%Y-%m-%d', # '2006-10-25' - # '%d. %b %y.', '%d. %B %y.', # '25. Oct 06.', '25. October 06.' - # '%d. %b \'%y.', '%d. %B \'%y.', # '25. Oct '06.', '25. October '06.' - # '%d. %b %Y.', '%d. %B %Y.', # '25. Oct 2006.', '25. October 2006.' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d.%m.%Y. %H:%M:%S', # '25.10.2006. 14:30:59' - '%d.%m.%Y. %H:%M', # '25.10.2006. 14:30' - '%d.%m.%Y.', # '25.10.2006.' - '%d.%m.%y. %H:%M:%S', # '25.10.06. 14:30:59' - '%d.%m.%y. %H:%M', # '25.10.06. 14:30' - '%d.%m.%y.', # '25.10.06.' - '%d. %m. %Y. %H:%M:%S', # '25. 10. 2006. 14:30:59' - '%d. %m. %Y. %H:%M', # '25. 10. 2006. 14:30' - '%d. %m. %Y.', # '25. 10. 2006.' - '%d. %m. %y. %H:%M:%S', # '25. 10. 06. 14:30:59' - '%d. %m. %y. %H:%M', # '25. 10. 06. 14:30' - '%d. %m. %y.', # '25. 10. 06.' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo deleted file mode 100644 index 40a4fd79f..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/sv/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/sv/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/sv/LC_MESSAGES/django.po deleted file mode 100644 index 62f617637..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sv/LC_MESSAGES/django.po +++ /dev/null @@ -1,1151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: dobcey \n" -"Language-Team: Swedish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arabiska" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azerbajdzjanska" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgariska" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengaliska" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Bosniska" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalanska" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Tjeckiska" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Walesiska" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Danska" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Tyska" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Grekiska" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Engelska" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Brittisk engelska" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Spanska" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentinsk spanska" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Mexikansk Spanska" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estländska" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskiska" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Persiska" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Finska" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Franska" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisiska" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Irländska" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galisiska" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Hebreiska" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hindi" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Kroatiska" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Ungerska" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Indonesiska" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Isländska" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Italienska" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japanska" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Georgiska" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Khmer" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Koreanska" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Lettiska" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Lettiska" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Makedonska" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayalam" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "Mongoliska" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Holländska" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norska" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norska (bokmÃ¥l)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norska (nynorsk)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Polska" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portugisiska" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brasiliensk portugisiska" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Rumänska" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Ryska" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovakiska" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slovenska" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Albanska" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Serbiska" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Serbiska (latin)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Svenska" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamilska" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Thailändska" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Turkiska" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukrainska" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamesiska" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "Förenklad Kinesiska" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Traditionell Kinesiska" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Fyll i ett giltigt värde." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Denna URL verkar vara en trasig länk." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Fyll i en giltig URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Fyll i en giltig e-postadress." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Fyll i en giltig 'slug', bestÃ¥endes av enbart bokstäver, siffror, " -"understreck samt bindestreck." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Fyll i en giltig IPv4 adress." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Fyll enbart i siffror separerade med kommatecken." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Kontrollera att detta värde är %(limit_value)s (det är %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"Kontrollera att detta värde är mindre än eller lika med %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"Kontrollera att detta värde är större än eller lika med %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Kontrollera att detta värde har minst %(limit_value)d tecken (det har %" -"(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Kontrollera att detta värde som mest har %(limit_value)d tecken (det har %" -"(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s mÃ¥ste vara unikt för %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s med detta %(field_label)s finns redan." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "och" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Värdet %r är inget giltigt alternativ." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Detta fält fÃ¥r inte vara null." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Detta fält fÃ¥r inte vara tomt." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Fält av typ: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Heltal" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Detta värde mÃ¥ste vara ett heltal." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Detta värde mÃ¥ste vara antingen True eller False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolesk (antingen True eller False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Sträng (upp till %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Komma-separerade heltal" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Datum (utan tid)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Fyll i ett giltigt datum med formatet Ã…Ã…Ã…Ã…-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ogiltigt datum: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Fyll i en giltig tidpunkt med formatet Ã…Ã…Ã…Ã…-MM-DD TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Datum (med tid)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Detta värde mÃ¥ste vara ett decimaltal." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Decimaltal" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-postadress" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Sökväg till fil" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Detta värde mÃ¥ste vara ett flyttal." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Flyttal" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Stort (8 byte) heltal" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP-adress" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Detta värde mÃ¥ste vara antingen None, True eller False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Boolesk (antingen True, False eller None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Text" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Tid" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Fyll i ett giltigt klockslag med formatet TT:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML-text" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Modell %(model)s med primärnyckel %(pk)r finns inte." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Främmande nyckel (typ bestäms av relaterat fält)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Ett-till-ett-samband" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "MÃ¥nga-till-mÃ¥nga-samband" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"HÃ¥ll ner \"Control\" eller \"Command\" pÃ¥ en Mac för att välja fler än en." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Detta fält mÃ¥ste fyllas i." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Fyll i ett heltal." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Fyll i ett tal." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Kontrollera att det inte finns mer än totalt %s siffror." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Kontrollera att det inte finns mer än %s decimaler." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Kontrollera att det inte finns mer än %s siffror före decimaltecknet." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Fyll i ett giltigt datum." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Fyll i en giltig tid." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Fyll i ett giltigt datum/tid." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Ingen fil skickades. Kontrollera kodningstypen i formuläret." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Ingen fil skickades." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Den skickade filen är tom." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Kontrollera att detta värde har högst %(max)d tecken (det har %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Var vänlig antingen skicka en fil eller markera kryssrutan för att rensa, " -"inte bÃ¥de och. " - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Ladda upp en giltig bild. Filen du laddade upp var antingen ingen bild eller " -"en korrupt bild." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Välj ett giltigt alternativ. %(value)s finns inte bland tillgängliga " -"alternativ." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Fyll i en lista med värden." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Sortering" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Radera" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Var vänlig korrigera duplikatdata för %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Var vänlig korrigera duplikatdata för %(field)s, som mÃ¥ste vara unik." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Var vänlig korrigera duplikatdata för %(field_name)s som mÃ¥ste vara unik för " -"%(lookup)s i %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Vänligen korrigera duplikatvärdena nedan." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Den infogade främmande nyckeln matchade inte den överordnade instansens " -"primära nyckel." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Välj ett giltigt alternativ. Det valet finns inte bland tillgängliga " -"alternativ." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" -"Välj ett giltigt alternativ. %s finns inte bland tillgängliga alternativ." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "En primärnyckel kan inte ha värde \"%s\"" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Nuvarande" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Ändra" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Rensa" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Okänt" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Ja" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Nej" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ja,nej,kanske" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" -msgstr[1] "%(size)d byte" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s kB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "e.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "f.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "FM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "EM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "midnatt" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "middag" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "mÃ¥ndag" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "tisdag" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "onsdag" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "torsdag" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "fredag" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "lördag" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "söndag" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "mÃ¥n" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "tis" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "ons" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "tors" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "fre" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "lör" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "sön" - -#: utils/dates.py:18 -msgid "January" -msgstr "januari" - -#: utils/dates.py:18 -msgid "February" -msgstr "februari" - -#: utils/dates.py:18 -msgid "March" -msgstr "mars" - -#: utils/dates.py:18 -msgid "April" -msgstr "april" - -#: utils/dates.py:18 -msgid "May" -msgstr "maj" - -#: utils/dates.py:18 -msgid "June" -msgstr "juni" - -#: utils/dates.py:19 -msgid "July" -msgstr "juli" - -#: utils/dates.py:19 -msgid "August" -msgstr "augusti" - -#: utils/dates.py:19 -msgid "September" -msgstr "september" - -#: utils/dates.py:19 -msgid "October" -msgstr "oktober" - -#: utils/dates.py:19 -msgid "November" -msgstr "november" - -#: utils/dates.py:20 -msgid "December" -msgstr "december" - -#: utils/dates.py:23 -msgid "jan" -msgstr "jan" - -#: utils/dates.py:23 -msgid "feb" -msgstr "feb" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "apr" - -#: utils/dates.py:23 -msgid "may" -msgstr "maj" - -#: utils/dates.py:23 -msgid "jun" -msgstr "jun" - -#: utils/dates.py:24 -msgid "jul" -msgstr "jul" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aug" - -#: utils/dates.py:24 -msgid "sep" -msgstr "sep" - -#: utils/dates.py:24 -msgid "oct" -msgstr "okt" - -#: utils/dates.py:24 -msgid "nov" -msgstr "nov" - -#: utils/dates.py:24 -msgid "dec" -msgstr "dec" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "jan" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "feb" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "mars" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "april" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "maj" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "juni" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "juli" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "aug" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "sep" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "okt" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "nov" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "dec" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "januari" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "februari" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "mars" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "april" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "maj" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "juni" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "juli" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "augusti" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "september" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "oktober" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "november" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "december" - -#: utils/text.py:136 -msgid "or" -msgstr "eller" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "Ã¥r" -msgstr[1] "Ã¥r" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "mÃ¥nad" -msgstr[1] "mÃ¥nader" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "vecka" -msgstr[1] "veckor" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagar" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "timme" -msgstr[1] "timmar" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minut" -msgstr[1] "minuter" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "minuter" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "Y-m-d" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "Y-m-d H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s skapades." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s uppdaterades." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s togs bort." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Inget Ã¥r angivet" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Ingen mÃ¥nad angiven" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Ingen dag angiven" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Ingen vecka angiven" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Inga %(verbose_name_plural)s är tillgängliga" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Framtida %(verbose_name_plural)s är inte tillgängliga eftersom %(class_name)" -"s.allow_future är False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Ogiltig datumsträng '%(datestr)s' med givet format '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Hittade inga %(verbose_name)s som matchar frÃ¥gan" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Sidan är inte 'last', och kan inte heller omvandlas till en int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Ogiltig sida (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Tom lista och '%(class_name)s.allow_empty' är False." diff --git a/lib/python2.7/site-packages/django/conf/locale/sv/__init__.py b/lib/python2.7/site-packages/django/conf/locale/sv/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/sv/formats.py b/lib/python2.7/site-packages/django/conf/locale/sv/formats.py deleted file mode 100644 index c04abfa13..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/sv/formats.py +++ /dev/null @@ -1,40 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' -TIME_FORMAT = 'H:i' -DATETIME_FORMAT = 'j F Y H:i' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'Y-m-d' -SHORT_DATETIME_FORMAT = 'Y-m-d H:i' -FIRST_DAY_OF_WEEK = 1 - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%Y-%m-%d', # '2006-10-25' - '%m/%d/%Y', # '10/25/2006' - '%m/%d/%y', # '10/25/06' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' - '%m/%d/%Y %H:%M:%S', # '10/25/2006 14:30:59' - '%m/%d/%Y %H:%M', # '10/25/2006 14:30' - '%m/%d/%Y', # '10/25/2006' - '%m/%d/%y %H:%M:%S', # '10/25/06 14:30:59' - '%m/%d/%y %H:%M', # '10/25/06 14:30' - '%m/%d/%y', # '10/25/06' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = ' ' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo deleted file mode 100644 index 335c43286..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ta/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po deleted file mode 100644 index 9befe3c5f..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ta/LC_MESSAGES/django.po +++ /dev/null @@ -1,1129 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Tamil \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "அரபிகà¯" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "பெஙà¯à®•à®¾à®²à®¿" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "செகà¯" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "வெலà¯à®¸à¯" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "டேனிஷà¯" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "ஜெரà¯à®®à®©à¯" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "கிரேகà¯à®•à®®à¯" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ஆஙà¯à®•à®¿à®²à®®à¯" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ஸà¯à®ªà®¾à®©à®¿à®·à¯" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "பீனீஷà¯" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "பà¯à®°à¯†à®©à¯à®šà¯" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "கலீஷீயனà¯" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ஹீபà¯à®°à¯" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ஹஙà¯à®•à¯‡à®°à®¿à®¯à®©à¯" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "à®à®¸à¯à®²à®¾à®©à¯à®Ÿà®¿à®•à¯" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "இதà¯à®¤à®¾à®²à®¿à®¯à®©à¯" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ஜபà¯à®ªà®¾à®©à®¿à®¯" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "டசà¯à®šà¯" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "நாரà¯à®µà¯€à®šà®¿à®¯à®©à¯" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "ரோமானியனà¯" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "à®°à®·à¯à®¯à®©à¯" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "சà¯à®²à¯‹à®µà®¾à®•à¯" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "ஸà¯à®²à¯‹à®µà¯‡à®©à®¿à®¯à®©à¯" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "செரà¯à®ªà®¿à®¯à®©à¯" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "சà¯à®µà®¿à®Ÿà®¿à®·à¯" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "தமிழà¯" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "தà¯à®°à¯à®•à¯à®•à®¿à®·à¯" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "உகà¯à®°à¯‡à®©à®¿à®¯à®©à¯" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "எளிய சீன மொழி" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "மரப௠சீன மொழி" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "à®®à¯à®±à¯ˆà®¯à®¾à®© e à®®à¯à®•à®µà®°à®¿à®•à®³à¯ மடà¯à®Ÿà¯à®®à¯ எழà¯à®¤à®µà¯à®®à¯" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "இஙà¯à®•à¯ எணà¯à®•à®³à¯ˆ மடà¯à®Ÿà¯à®®à¯‡ எழà¯à®¤à®µà¯à®®à¯ காமவாள௠தனிமைபடà¯à®¤à¯à®¤à®µà¯à®®à¯ " - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "மறà¯à®±à¯à®®à¯" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "இநà¯à®¤ பà¯à®²à®®à¯ காலியாக இரà¯à®•à¯à®•à®•à¯ கூடாதà¯" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "à®®à¯à®´à¯ எணà¯" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "இநà¯à®¤ மதிபà¯à®ªà¯ à®®à¯à®´à¯à®µà¯†à®£à¯à®£à®¾à®• இரà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "இநà¯à®¤ மதிபà¯à®ªà¯ சரி அலà¯à®²à®¤à¯ தவறாக இரà¯à®•à¯à®• வேணà¯à®Ÿà¯à®®à¯" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "பூலியன௠(சரி அலà¯à®²à®¤à¯ தவறà¯)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "கமாவாள௠பிரிகà¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿ à®®à¯à®´à¯ எணà¯" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "தேதி (நேரமிலà¯à®²à®¾à®®à®²à¯)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "வவவவ-மாமா-நாநா எனà¯à®± அமைபà¯à®ªà®¿à®²à¯ உளà¯à®³ à®®à¯à®±à¯ˆà®¯à®¾à®© தேதி மடà¯à®Ÿà¯à®®à¯‡ எழà¯à®¤à®µà¯à®®à¯" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "தேதி (நேரமà¯à®Ÿà®©à¯)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "தசம எணà¯à®•à®³à¯" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "மின௠அஞà¯à®šà®²à¯" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "கோபà¯à®ªà¯à®ªà¯ பாதை" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP விலாசமà¯" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "இலகà¯à®•à¯ à®®à¯à®±à¯ˆ (சரி, தவற௠அலà¯à®²à®¤à¯ ஒனà¯à®±à¯à®®à¯ இலà¯à®²à¯ˆ)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "உரை" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "நேரமà¯" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML உரை" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"Mac இலà¯, ஒனà¯à®±à¯à®•à¯à®•à¯ மேறà¯à®ªà®Ÿà¯à®Ÿà®µà®±à¯à®±à¯ˆ தேரà¯à®µà¯ செயà¯à®¯ \"Control\" அலà¯à®²à®¤à¯ \"Command\" à® " -"à®…à®´à¯à®¤à¯à®¤à®µà¯à®®à¯" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "இநà¯à®¤ பà¯à®²à®¤à¯à®¤à®¿à®²à¯ மதிபà¯à®ªà¯ தேவை" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "à®®à¯à®´à¯ எண௠மடà¯à®Ÿà¯à®®à¯‡ எழà¯à®¤à®µà¯à®®à¯" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "அநà¯à®¤ பகà¯à®•à®¤à¯à®¤à®¿à®©à¯ encoding வகையைப௠பரிசோதிகà¯à®•.கோபà¯à®ªà¯ சமரà¯à®ªà®¿à®•à¯à®•à®ªà¯ படà¯à®Ÿà®µà®¿à®²à¯à®²à¯ˆ " - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "சமரà¯à®ªà®¿à®•à¯à®•à®ªà¯ படà¯à®Ÿ கோபà¯à®ªà¯à®•à¯ காலியாக உளà¯à®³à®¤à¯" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"à®®à¯à®±à¯ˆà®¯à®¾à®© படம௠மடà¯à®Ÿà¯à®®à¯‡ பதிவேறà¯à®±à®®à¯ செயà¯à®¯à®µà¯à®®à¯. நீஙà¯à®•à®³à¯ பதிவேறà¯à®±à®®à¯ செயà¯à®¤ கோபà¯à®ªà¯ படம௠அளà¯à®³à®¾à®¤ " -"அலà¯à®²à®¤à¯ கெடà¯à®Ÿà¯à®ªà¯à®ªà¯‹à®© கோபà¯à®ªà®¾à®•à¯à®®à¯" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "நீகà¯à®•à¯à®•" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "மாறà¯à®±à¯à®•" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "தெரியாத" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "ஆமà¯" - -#: forms/widgets.py:548 -msgid "No" -msgstr "இலà¯à®²à¯ˆ" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ஆமà¯, இலà¯à®²à¯ˆ, இரà¯à®•à¯à®•à®²à®¾à®®à¯" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "" -msgstr[1] "" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "திஙà¯à®•à®³à¯" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "செவà¯à®µà®¾à®¯à¯" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "பà¯à®¤à®©à¯" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "வியாழனà¯" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "வெளà¯à®³à®¿" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "சனி" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "ஞாயிறà¯" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "" - -#: utils/dates.py:18 -msgid "January" -msgstr "ஜனவரி" - -#: utils/dates.py:18 -msgid "February" -msgstr "பிபà¯à®°à®µà®°à®¿" - -#: utils/dates.py:18 -msgid "March" -msgstr "மாரà¯à®šà¯" - -#: utils/dates.py:18 -msgid "April" -msgstr "à®à®ªà¯à®°à®²à¯" - -#: utils/dates.py:18 -msgid "May" -msgstr "மே" - -#: utils/dates.py:18 -msgid "June" -msgstr "ஜூனà¯" - -#: utils/dates.py:19 -msgid "July" -msgstr "ஜூலை" - -#: utils/dates.py:19 -msgid "August" -msgstr "ஆகஸà¯à®Ÿà¯" - -#: utils/dates.py:19 -msgid "September" -msgstr "செபà¯à®Ÿà®®à¯à®ªà®°à¯" - -#: utils/dates.py:19 -msgid "October" -msgstr "அகà¯à®Ÿà¯‹à®ªà®°à¯" - -#: utils/dates.py:19 -msgid "November" -msgstr "நவமà¯à®ªà®°à¯" - -#: utils/dates.py:20 -msgid "December" -msgstr "டிசமà¯à®ªà®°à¯" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ஜன" - -#: utils/dates.py:23 -msgid "feb" -msgstr "பிபà¯" - -#: utils/dates.py:23 -msgid "mar" -msgstr "மாரà¯" - -#: utils/dates.py:23 -msgid "apr" -msgstr "à®à®ªà¯" - -#: utils/dates.py:23 -msgid "may" -msgstr "மே" - -#: utils/dates.py:23 -msgid "jun" -msgstr "ஜூனà¯" - -#: utils/dates.py:24 -msgid "jul" -msgstr "ஜூலை" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ஆக" - -#: utils/dates.py:24 -msgid "sep" -msgstr "செபà¯" - -#: utils/dates.py:24 -msgid "oct" -msgstr "அகà¯" - -#: utils/dates.py:24 -msgid "nov" -msgstr "நவ" - -#: utils/dates.py:24 -msgid "dec" -msgstr "டிச" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "" - -#: utils/text.py:136 -msgid "or" -msgstr "" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "வரà¯à®Ÿà®®à¯" -msgstr[1] "வரà¯à®Ÿà®™à¯à®•à®³à¯" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "மாதமà¯" -msgstr[1] "மாதஙà¯à®•à®³à¯" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "வாரமà¯" -msgstr[1] "வாரஙà¯à®•à®³à¯" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "நாளà¯" -msgstr[1] "நாடà¯à®•à®³à¯" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "மணி" -msgstr[1] "மணி" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "நிமிடமà¯" -msgstr[1] "நிமிடஙà¯à®•à®³à¯" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr "" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "தேதி_à®®à¯à®±à¯ˆ" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "தேதிநேரமà¯_à®®à¯à®±à¯ˆ" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "நேரமà¯_à®®à¯à®±à¯ˆ" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "வரà¯à®Ÿà®®à¯_மாதமà¯_à®®à¯à®±à¯ˆ" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "மாதமà¯_நாளà¯_à®®à¯à®±à¯ˆ" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s வெறà¯à®±à®¿à®•à®°à®®à®¾à®• சேரà¯à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà¯ விடà¯à®Ÿà®¤à¯" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s வெறà¯à®±à®¿à®•à®°à®®à®¾à®• மாறà¯à®±à®ªà®Ÿà¯à®Ÿà¯ விடà¯à®Ÿà®¤à¯" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s நீகà¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/ta/__init__.py b/lib/python2.7/site-packages/django/conf/locale/ta/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/ta/formats.py b/lib/python2.7/site-packages/django/conf/locale/ta/formats.py deleted file mode 100644 index c03fb2018..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ta/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F, Y' -TIME_FORMAT = 'g:i:s A' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j M, Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -# DECIMAL_SEPARATOR = -# THOUSAND_SEPARATOR = -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo deleted file mode 100644 index 64cadea33..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/te/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/te/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/te/LC_MESSAGES/django.po deleted file mode 100644 index 16eab6355..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/te/LC_MESSAGES/django.po +++ /dev/null @@ -1,1125 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-14 14:52+0000\n" -"Last-Translator: veeven \n" -"Language-Team: Telugu <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ఆరబికà±" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "బలà±à°—ేరియనà±" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "బెంగాలీ" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "బోసà±à°¨à°¿à°¯à°¨à±" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "కాటలానà±" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ఛెకà±" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "వెలà±à°·à±" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "డానిషà±" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "జెరà±à°®à°¨à±" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "à°—à±à°°à±€à°•à±" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ఆంగà±à°²à°‚" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "à°¬à±à°°à°¿à°Ÿà±€à°·à± ఆంగà±à°²à°‚" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "à°¸à±à°ªà°¾à°¨à°¿à°·à±" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "à°…à°°à±à°œà±†à°‚టీనా à°¸à±à°ªà°¾à°¨à°¿à°·à±" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "à°Žà°¸à±à°Ÿà±Šà°¨à°¿à°¯à°¨à±" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "బాసà±à°•à±" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "పారసీ" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ఫీనà±à°¨à°¿à°·à±" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "à°«à±à°°à±†à°‚à°šà±" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "à°«à±à°°à°¿à°¸à°¿à°¯à°¨à±" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "à°à°°à°¿à°·à±" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "గలిసియనà±" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "హీబà±à°°à±‚" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "హిందీ" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "à°•à±à°°à±Šà°¯à±‡à°·à°¿à°¯à°¨à±" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "హంగేరియనà±" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "ఇండోనేషియనà±" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "à°à°¸à±à°²à°¾à°‚à°¡à°¿à°•à±" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ఇటాలియవà±" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "జపనీ" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "జారà±à°œà°¿à°¯à°¨à±" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "à°–à±à°®à±†à°°à±" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "à°•à°¨à±à°¨à°¡" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "కొరియనà±" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "లిథà±à°¯à±‡à°¨à°¿à°¯à°¨à±" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "లాతà±à°µà°¿à°¯à°¨à±" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "మెసిడోనియనà±" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "మలయాళం" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "మంగోలియనà±" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "à°¡à°šà±" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "నారà±à°µà±€à°œà°¿à°¯à°¨à±" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "పంజాబీ" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "పొలిషà±" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "పోరà±à°šà±à°—ీసà±" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "à°¬à±à°°à°œà±€à°²à°¿à°¯à°¨à± పోరà±à°šà±à°—ీసà±" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "రొమానియనà±" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "à°°à°·à±à°¯à°¨à±" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "à°¸à±à°²à±Šà°µà°¾à°•à±" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "à°¸à±à°²à±Šà°µà°¾à°¨à°¿à°¯à°¨à±" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "à°…à°²à±à°¬à±‡à°¨à°¿à°¯à°¨à±" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "సెరà±à°¬à°¿à°¯à°¨à±" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "సెరà±à°¬à°¿à°¯à°¨à± లాటినà±" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "à°¸à±à°µà±€à°¡à°¿à°·à±" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "తమిళం" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "తెలà±à°—à±" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "థాయి" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "à°Ÿà°°à±à°•à°¿à°·à±" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ఉకà±à°°à±‡à°¨à°¿à°¯à°¨à±" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "ఉరà±à°¦à±‚" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "వియెతà±à°¨à°¾à°®à±€" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "సరళ చైనీ" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "సాంపà±à°°à°¦à°¾à°¯ చైనీ" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "సరైన విలà±à°µà°¨à°¿ ఇవà±à°µà°‚à°¡à°¿." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "సరైన URL ఇవà±à°µà°‚à°¡à°¿." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "సరైన ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾à°¨à± ఇవà±à°µà°‚à°¡à°¿." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "దయచేసి సరైన IPv4 à°…à°¡à±à°°à°¸à± ఇవà±à°µà°‚à°¡à°¿" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "కామాల తో అంకెలౠవిడడీసి ఇవà±à°µà°‚à°¡à°¿ " - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "మరియà±" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "à°ˆ ఫీలà±à°¡à± కాళీగా ఉందకూడడౠ" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "à°ˆ ఖాళీని తపà±à°ªà°¨à°¿à°¸à°°à°¿à°—à°¾ పూరించాలి" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "పూరà±à°£à°¸à°‚à°–à±à°¯" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "à°ˆ విలà±à°µ తపà±à°ªà°¨à°¿à°¸à°°à°¿à°—à°¾ పూరà±à°£à°¸à°‚à°–à±à°¯ అయివà±à°‚డాలి." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "à°ˆ విలà±à°µ తపà±à°ªà°¨à°¿à°¸à°°à°¿à°—à°¾ సతà±à°¯à°®à± లేదా అసతà±à°¯à°®à± అయివà±à°‚డాలి." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "బూలియనౠ(à°…à°µà±à°¨à°¾ లేక కాదా)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "పదబంధం (à°—à°°à°¿à°·à±à° à°‚ %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "కామా తో విడడీసిన సంఖà±à°¯" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "తేదీ (సమయం లేకà±à°‚à°¡à°¾)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "సరైన తేదీని (YYYY-MM-DD రూపంలో) ఇవà±à°µà°‚à°¡à°¿." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "చెలà±à°²à°¨à°¿ తేదీ: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "సరైన తేదీ/సమయానà±à°¨à°¿ (YYYY-MM-DD HH:MM[:ss[.uuuuuu]] రూపంలో) ఇవà±à°µà°‚à°¡à°¿." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "తేది (సమయం తో)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "దశగణసంఖà±à°¯" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ఇటపా" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "ఫైలౠపాతà±" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "à°à°ªà±€ à°šà°¿à°°à±à°¨à°¾à°®à°¾" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "పాఠà±à°¯à°‚" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "సమయం" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "దయచేసి సరైన సమయం (HH:MM[:ss[.uuuuuu]] రూపలావనà±à°¯à°‚) ఇవà±à°µà°‚à°¡à°¿" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "à°Žà°•à±à°¸à± ఎమౠఎలà±" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "\"Control\" కాని \"Command\" మాకౠలో నొకà±à°•à°¿ ఉంచండి , à°’à°•à°Ÿà°¿ à°•à°¨à±à°¨ à°Žà°•à±à°•à±à°µ à°Žà°¨à±à°¨à±à°•à±‹à°µà°Ÿà°¾à°¨à°¿à°•à°¿" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "à°ˆ ఫీలà±à°¡à± అవసరమà±" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "పూరà±à°£ సంఖà±à°¯ ఇవà±à°µà°‚à°¡à°¿" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "దయచేసి పూరà±à°£ సంఖà±à°¯ ఇవà±à°µà°‚à°¡à°¿" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "దయచేసి సరైన తేది ఇవà±à°µà°‚à°¡à°¿." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "దయచేసి సరైన సమయం ఇవà±à°µà°‚à°¡à°¿." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "దయచేసి సరైన తెది/సమయం ఇవà±à°µà°‚à°¡à°¿." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "మీరౠసమరà±à°ªà°¿à°‚à°šà°¿à°¨ ఫైలౠకాళీగా ఉంది " - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "అంతరమà±" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "తొలగించà±" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "మారà±à°šà±" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "తెలియనది" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "à°…à°µà±à°¨à±" - -#: forms/widgets.py:548 -msgid "No" -msgstr "కాదà±" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "à°…à°µà±à°¨à±, కాదౠ, à°à°®à±Š" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d బైటà±" -msgstr[1] "%(size)d బైటà±à°²à±" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s కిబై" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s మెబై" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s గిబై" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "à°…à°°à±à°§à°°à°¾à°¤à±à°°à°¿" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "మధà±à°¯à°¾à°¹à±à°¨à°‚" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "సోమవారం" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "మంగళవారం" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "à°¬à±à°§à°µà°¾à°°à°‚" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "à°—à±à°°à±à°µà°¾à°°à°‚" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "à°¶à±à°•à±à°°à°µà°¾à°°à°‚" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "శనివారం" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "ఆదివారం" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "సోమ" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "మంగళ" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "à°¬à±à°§" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "à°—à±à°°à±" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "à°¶à±à°•à±à°°" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "శని" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "ఆది" - -#: utils/dates.py:18 -msgid "January" -msgstr "జనవరి" - -#: utils/dates.py:18 -msgid "February" -msgstr "à°«à°¿à°¬à±à°°à°µà°°à°¿" - -#: utils/dates.py:18 -msgid "March" -msgstr "మారà±à°šà°¿" - -#: utils/dates.py:18 -msgid "April" -msgstr "à°Žà°ªà±à°°à°¿à°²à±" - -#: utils/dates.py:18 -msgid "May" -msgstr "మే" - -#: utils/dates.py:18 -msgid "June" -msgstr "జూనà±" - -#: utils/dates.py:19 -msgid "July" -msgstr "à°œà±à°²à±ˆ" - -#: utils/dates.py:19 -msgid "August" -msgstr "ఆగషà±à°Ÿà±" - -#: utils/dates.py:19 -msgid "September" -msgstr "సెపà±à°Ÿà±†à°‚బరà±" - -#: utils/dates.py:19 -msgid "October" -msgstr "à°…à°•à±à°Ÿà±‹à°¬à°°à±" - -#: utils/dates.py:19 -msgid "November" -msgstr "నవంబరà±" - -#: utils/dates.py:20 -msgid "December" -msgstr "డిసెంబరà±" - -#: utils/dates.py:23 -msgid "jan" -msgstr "జన" - -#: utils/dates.py:23 -msgid "feb" -msgstr "à°«à°¿à°¬à±à°°" - -#: utils/dates.py:23 -msgid "mar" -msgstr "మారà±à°šà°¿" - -#: utils/dates.py:23 -msgid "apr" -msgstr "à°Žà°ªà±à°°à°¿" - -#: utils/dates.py:23 -msgid "may" -msgstr "మే" - -#: utils/dates.py:23 -msgid "jun" -msgstr "జూనà±" - -#: utils/dates.py:24 -msgid "jul" -msgstr "జూలై" - -#: utils/dates.py:24 -msgid "aug" -msgstr "ఆగ" - -#: utils/dates.py:24 -msgid "sep" -msgstr "సెపà±à°Ÿà±†à°‚" - -#: utils/dates.py:24 -msgid "oct" -msgstr "à°…à°•à±à°Ÿà±‹" - -#: utils/dates.py:24 -msgid "nov" -msgstr "నవం" - -#: utils/dates.py:24 -msgid "dec" -msgstr "డిసెం" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "జన." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "à°«à°¿à°¬à±à°°." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "మారà±à°šà°¿" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "à°à°ªà±à°°à°¿." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "మే" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "జూనà±" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "జూలై" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "ఆగ." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "సెపà±à°Ÿà±†à°‚." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "à°…à°•à±à°Ÿà±‹." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "నవం." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "డిసెం." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "జనవరి" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "à°«à°¿à°¬à±à°°à°µà°°à°¿" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "మారà±à°šà°¿" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "à°à°ªà±à°°à°¿à°²à±" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "మే" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "జూనà±" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "జూలై" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "ఆగసà±à°Ÿà±" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "సెపà±à°Ÿà±†à°‚బరà±" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "à°…à°•à±à°Ÿà±‹à°¬à°°à±" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "నవంబరà±" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "డిసెంబరà±" - -#: utils/text.py:136 -msgid "or" -msgstr "లేదా" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "సంవతà±à°¸à°°à°‚" -msgstr[1] "సంవతà±à°¸à°°à°¾à°²à±" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "నెల" -msgstr[1] "నెలలà±" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "వారం" -msgstr[1] "వారాలà±" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "రోజà±" -msgstr[1] "రోజà±à°²à±" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "à°—à°‚à°Ÿ" -msgstr[1] "à°—à°‚à°Ÿà°²à±" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "నిమిషం" -msgstr[1] "నిమిషాలà±" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "నిమిషాలà±" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "N j, Y, P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s జయపà±à°°à°¦à°‚à°—à°¾ తయారయింది" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s జయపà±à°°à°¦à°‚à°—à°¾ @@" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s తీసివేయబడినది" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/te/__init__.py b/lib/python2.7/site-packages/django/conf/locale/te/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/te/formats.py b/lib/python2.7/site-packages/django/conf/locale/te/formats.py deleted file mode 100644 index 173b60bfb..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/te/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' -TIME_FORMAT = 'g:i:s A' -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j M Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -# DECIMAL_SEPARATOR = -# THOUSAND_SEPARATOR = -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo deleted file mode 100644 index 7200bef03..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/th/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/th/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/th/LC_MESSAGES/django.po deleted file mode 100644 index c020ff752..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/th/LC_MESSAGES/django.po +++ /dev/null @@ -1,1122 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: jonathanz \n" -"Language-Team: Thai <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "อารบิà¸" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "บัลà¹à¸à¹€à¸£à¸µà¸¢" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "เบ็งà¸à¸²à¸¥à¸µ" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "บอสเนีย" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "คาตะลาน" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "เช็à¸" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "เวลส์" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "เดนมาร์à¸" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "เยอรมัน" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "à¸à¸£à¸µà¸" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "อังà¸à¸¤à¸©" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "อังà¸à¸¤à¸© - สหราชอาณาจัà¸à¸£" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "สเปน" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "สเปน - อาร์เจนติน่า" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "เอสโตเนีย" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "à¹à¸šà¹‡à¸‹à¸„์" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "เปอร์เชีย" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ฟินà¹à¸¥à¸™à¸”์" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "à¸à¸£à¸±à¹ˆà¸‡à¹€à¸¨à¸ª" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "ฟริเซียน" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ไอริช" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "à¸à¸²à¸¥à¸´à¹€à¸‹à¸µà¸¢" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ฮีบรู" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "ฮินดี" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "โครเอเชีย" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ฮังà¸à¸²à¸£à¸µ" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "อินโดนิเซีย" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "ไอซ์à¹à¸¥à¸™à¸”์" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "อิตาลี" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "à¸à¸µà¹ˆà¸›à¸¸à¹ˆà¸™" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "จอร์เจีย" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "เขมร" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "à¸à¸±à¸“ณาท" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "เà¸à¸²à¸«à¸¥à¸µ" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "ลิทัวเนีย" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "ลัตเวีย" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "มาซิโดเนีย" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "มลายู" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "มองโà¸à¹€à¸¥à¸µà¸¢" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "ดัตช์" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "นอร์เวย์" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "นอร์เวย์ - Bokmal" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "นอร์เวย์ - Nynorsk" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "ปัà¸à¸ˆà¸²à¸šà¸µ" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "โปà¹à¸¥à¸™à¸”์" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "โปรตุเà¸à¸ª" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "โปรตุเà¸à¸ª (บราซิล)" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "โรมาเนีย" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "รัสเซีย" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "สโลวัà¸" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "สโลวีเนีย" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "อัลà¹à¸šà¹€à¸™à¸µà¸¢" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "เซอร์เบีย" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "เซอร์เบียละติน" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "สวีเดน" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "ทมิฬ" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "เตลุคู" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "ไทย" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "ตุรà¸à¸µ" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "ยูเครน" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "เวียดนาม" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "จีนตัวย่อ" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "จีนตัวเต็ม" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "à¸à¸£à¸¸à¸“าใส่ค่าที่ถูà¸à¸•à¹‰à¸­à¸‡" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "URL อาจจะเป็นลิ้งค์ที่เสียหาย." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "ใส่ URL ที่ถูà¸à¸•à¹‰à¸­à¸‡" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "à¸à¸£à¸¸à¸“าใส่อีเมลที่ถูà¸à¸•à¹‰à¸­à¸‡" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "ใส่ 'slug' ประà¸à¸­à¸›à¸”้วย ตัวหนังสือ ตัวเลข เครื่องหมายขีดล่าง หรือ เครื่องหมายขีด" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "à¸à¸£à¸¸à¸“าใส่หมายเลขไอพีที่ถูà¸à¸•à¹‰à¸­à¸‡" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "ใส่ตัวเลขที่คั่นด้วยจุลภาคเท่านั้น" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "ค่านี้ต้องเป็น %(limit_value)s (ปัจจุบันคือ %(show_value)s)" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "ค่านี้ต้องน้อยà¸à¸§à¹ˆà¸²à¸«à¸£à¸·à¸­à¹€à¸—่าà¸à¸±à¸š %(limit_value)s" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "ค่านี้ต้องมาà¸à¸à¸§à¹ˆà¸²à¸«à¸£à¸·à¸­à¹€à¸—่าà¸à¸±à¸š %(limit_value)s" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"ค่านี้ต้องมีอย่างน้อย %(limit_value)d ตัวอัà¸à¸©à¸£ (ปัจจุบันมีจำนวน %(show_value)d ตัวอัà¸à¸©à¸£)" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "ค่านี้มีได้ไม่เà¸à¸´à¸™ %(limit_value)d ตัวอัà¸à¸©à¸£ (ปัจจุบันมีจำนวน %(show_value)d ตัวอัà¸à¸©à¸£)" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s จะต้องไม่ซ้ำà¸à¸±à¸™à¸ªà¸³à¸«à¸£à¸±à¸š %(date_field)s %(lookup)s" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s à¹à¸¥à¸° %(field_label)s มีอยู่à¹à¸¥à¹‰à¸§" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "à¹à¸¥à¸°" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "ค่า %r ไม่ถูà¸à¸•à¹‰à¸­à¸‡" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "ฟิลด์นี้ไม่สารถปล่อยว่างได้" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "ฟิลด์นี้เว้นว่างไม่ได้" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "ฟิลด์ข้อมูล: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "จำนวนเต็ม" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "ค่านี้ต้องเป็นจำนวนเต็ม" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "ค่านี้ต้องเป็นถูà¸à¸«à¸£à¸·à¸­à¸œà¸´à¸”" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "ตรรà¸à¸°à¹à¸šà¸šà¸šà¸¹à¸¥à¸«à¸¡à¸²à¸¢à¸–ึง ค่า\"จริง\" (True) หรือ \"ไม่จริง \" (False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "สตริง(ได้ถึง %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "จำนวนเต็มà¹à¸šà¸šà¸¡à¸µà¸ˆà¸¸à¸¥à¸ à¸²à¸„" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "วันที่ (ไม่มีเวลา)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "ใส่วันที่ในรูปà¹à¸šà¸š YYYY-MM-DD" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "วันที่ไม่ถูà¸à¸•à¹‰à¸­à¸‡: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "ใส่วันเวลาที่ถูà¸à¸•à¹‰à¸­à¸‡à¹ƒà¸™à¸£à¸¹à¸›à¹à¸šà¸š YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "วันที่ (พร้อมด้วยเวลา)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "ค่านี้ต้องเป็นเลขà¸à¸²à¸™à¸ªà¸´à¸šà¸«à¸£à¸·à¸­à¹€à¸¥à¸‚ทศนิยม" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "เลขà¸à¸²à¸™à¸ªà¸´à¸šà¸«à¸£à¸·à¸­à¹€à¸¥à¸‚ทศนิยม" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "ที่อยู่อีเมล" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "ตำà¹à¸«à¸™à¹ˆà¸‡à¹„ฟล์" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "ค่านี้ต้องเป็นชนิด float หรือตัวเลขจุดทศนิยม" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "เลขทศนิยม" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "จำนวนเต็ม (8 byte)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "หมายเลขไอพี" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "ค่านี้ต้องเป็นอย่างใดอย่างหนึ่ง None, True หรือ False" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "" -"ตรรà¸à¸°à¹à¸šà¸šà¸šà¸¹à¸¥à¸«à¸¡à¸²à¸¢à¸–ึง ค่า\"จริง\" (True) หรือ \"ไม่จริง \" (False) หรือ \"ไม่มี\" (None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ข้อความ" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "เวลา" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "ใส่เวลาในรูปà¹à¸šà¸š HH:MM[:ss[.uuuuuu]]" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "ข้อความ XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Primary key %(pk)r ของโมเดล %(model)s ไม่มีอยู่จริง" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Foreign Key (ชนิดของข้อมูลจะถูà¸à¸à¸³à¸«à¸™à¸”จาà¸à¸Ÿà¸´à¸¥à¸”์ที่เà¸à¸µà¹ˆà¸¢à¸§à¸‚้อง)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "ความสัมพันธ์à¹à¸šà¸šà¸«à¸™à¸¶à¹ˆà¸‡à¸•à¹ˆà¸­à¸«à¸™à¸¶à¹ˆà¸‡" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "ความสัมพันธ์à¹à¸šà¸š many-to-many" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "à¸à¸”ปุ่ม \"Control\", หรือ \"Command\" บน Mac ค้างไว้, เพื่อเลือà¸à¸«à¸¥à¸²à¸¢à¹†à¸•à¸±à¸§à¹€à¸¥à¸·à¸­à¸" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "ฟิลด์นี้จำเป็น" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "à¸à¸£à¸­à¸à¸«à¸¡à¸²à¸¢à¹€à¸¥à¸‚" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "à¸à¸£à¸­à¸à¸«à¸¡à¸²à¸¢à¹€à¸¥à¸‚" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "à¹à¸™à¹ˆà¹ƒà¸ˆà¸§à¹ˆà¸²à¸£à¸§à¸¡à¹à¸¥à¹‰à¸§à¹„ม่เà¸à¸´à¸™ %s หลัà¸." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "à¹à¸™à¹ˆà¹ƒà¸ˆà¸§à¹ˆà¸²à¸£à¸§à¸¡à¹à¸¥à¹‰à¸§à¹€à¸›à¹‡à¸™à¸—ศนิยมไม่เà¸à¸´à¸™ %s หลัà¸." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "à¹à¸™à¹ˆà¹ƒà¸ˆà¸§à¹ˆà¸²à¸£à¸§à¸¡à¹à¸¥à¹‰à¸§à¹„ม่เà¸à¸´à¸™ %s หลัภà¸à¹ˆà¸­à¸™à¸ˆà¸¸à¸”ทศนิยม." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "à¸à¸£à¸¸à¸“าใส่วัน" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "à¸à¸£à¸¸à¸“าใส่เวลา" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "à¸à¸£à¸¸à¸“าใส่วันเวลา" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "ไม่มีไฟล์ใดถูà¸à¸ªà¹ˆà¸‡. ตรวจสอบ encoding type ในฟอร์ม." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "ไม่มีไฟล์ใดถูà¸à¸ªà¹ˆà¸‡" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "ไฟล์ที่ส่งว่างเปล่า" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "ชื่อไฟล์มีความยาวได้ไม่เà¸à¸´à¸™ %(max)d ตัวอัà¸à¸©à¸£ (ปัจจุบันมี %(length)d ตัวอัà¸à¸©à¸£)" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "โปรดเลือà¸à¹„ฟล์หรือติ๊ภclear checkbox อย่างใดอย่างหนึ่ง" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "อัพโหลดรูปที่ถูà¸à¸•à¹‰à¸­à¸‡. ไฟล์ที่อัพโหลดไปไม่ใช่รูป หรือรูปเสียหาย." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "เลือà¸à¸•à¸±à¸§à¹€à¸¥à¸·à¸­à¸à¸—ี่ถูà¸à¸•à¹‰à¸­à¸‡. %(value)s ไม่ใช่ตัวเลือà¸à¸—ี่ใช้ได้." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "ใส่รายà¸à¸²à¸£" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "เรียงลำดับ" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "ลบ" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "โปรดà¹à¸à¹‰à¹„ขข้อมูลที่ซ้ำซ้อนใน %(field)s" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "โปรดà¹à¸à¹‰à¹„ขข้อมูลที่ซ้ำซ้อนใน %(field)s ซึ่งจะต้องไม่ซ้ำà¸à¸±à¸™" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"โปรดà¹à¸à¹‰à¹„ขข้อมูลซ้ำซ้อนใน %(field_name)s ซึ่งจะต้องไม่ซ้ำà¸à¸±à¸™à¸ªà¸³à¸«à¸£à¸±à¸š %(lookup)s ใน %" -"(date_field)s" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "โปรดà¹à¸à¹‰à¹„ขค่าที่ซ้ำซ้อนด้านล่าง" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Foreign key ไม่สัมพันธ์à¸à¸±à¸š parent primary key" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "เลือà¸à¸•à¸±à¸§à¹€à¸¥à¸·à¸­à¸à¸—ี่ถูà¸à¸•à¹‰à¸­à¸‡. ตัวเลือà¸à¸™à¸±à¹‰à¸™à¹„ม่สามารถเลือà¸à¹„ด้." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "เลือà¸à¸•à¸±à¸§à¹€à¸¥à¸·à¸­à¸à¸—ี่ถูà¸à¸•à¹‰à¸­à¸‡. %s ไม่สามารถเลือà¸à¹„ด้" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ใช้เป็น primary key ไม่ได้" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "ปัจจุบัน" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "เปลี่ยนà¹à¸›à¸¥à¸‡" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ล้าง" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "ไม่รู้" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "ใช่" - -#: forms/widgets.py:548 -msgid "No" -msgstr "ไม่ใช่" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ใช่,ไม่ใช่,อาจจะ" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d ไบต์" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "เที่ยงคืน" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "เที่ยงวัน" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "จันทร์" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "อังคาร" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "พุธ" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "พฤหัสบดี" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "ศุà¸à¸£à¹Œ" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "เสาร์" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "อาทิตย์" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "จ." - -#: utils/dates.py:10 -msgid "Tue" -msgstr "อ." - -#: utils/dates.py:10 -msgid "Wed" -msgstr "พ." - -#: utils/dates.py:10 -msgid "Thu" -msgstr "พฤ." - -#: utils/dates.py:10 -msgid "Fri" -msgstr "ศ." - -#: utils/dates.py:11 -msgid "Sat" -msgstr "ส." - -#: utils/dates.py:11 -msgid "Sun" -msgstr "อ." - -#: utils/dates.py:18 -msgid "January" -msgstr "มà¸à¸£à¸²à¸„ม" - -#: utils/dates.py:18 -msgid "February" -msgstr "à¸à¸¸à¸¡à¸ à¸²à¸žà¸±à¸™à¸˜à¹Œ" - -#: utils/dates.py:18 -msgid "March" -msgstr "มีนาคม" - -#: utils/dates.py:18 -msgid "April" -msgstr "เมษายน" - -#: utils/dates.py:18 -msgid "May" -msgstr "พฤษภาคม" - -#: utils/dates.py:18 -msgid "June" -msgstr "มิถุนายน" - -#: utils/dates.py:19 -msgid "July" -msgstr "à¸à¸£à¸à¸Žà¸²à¸„ม" - -#: utils/dates.py:19 -msgid "August" -msgstr "สิงหาคม" - -#: utils/dates.py:19 -msgid "September" -msgstr "à¸à¸±à¸™à¸¢à¸²à¸¢à¸™" - -#: utils/dates.py:19 -msgid "October" -msgstr "ตุลาคม" - -#: utils/dates.py:19 -msgid "November" -msgstr "พฤศจิà¸à¸²à¸¢à¸™" - -#: utils/dates.py:20 -msgid "December" -msgstr "ธันวาคม" - -#: utils/dates.py:23 -msgid "jan" -msgstr "ม.ค." - -#: utils/dates.py:23 -msgid "feb" -msgstr "à¸.พ." - -#: utils/dates.py:23 -msgid "mar" -msgstr "มี.ค." - -#: utils/dates.py:23 -msgid "apr" -msgstr "เม.ย." - -#: utils/dates.py:23 -msgid "may" -msgstr "พ.ค." - -#: utils/dates.py:23 -msgid "jun" -msgstr "มิ.ย." - -#: utils/dates.py:24 -msgid "jul" -msgstr "à¸.ค." - -#: utils/dates.py:24 -msgid "aug" -msgstr "ส.ค." - -#: utils/dates.py:24 -msgid "sep" -msgstr "à¸.ย." - -#: utils/dates.py:24 -msgid "oct" -msgstr "ต.ค." - -#: utils/dates.py:24 -msgid "nov" -msgstr "พ.ย." - -#: utils/dates.py:24 -msgid "dec" -msgstr "ธ.ค." - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "ม.ค." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "à¸.พ." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "มี.ค." - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "เม.ษ." - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "พ.ค." - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "มิ.ย." - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "à¸.ค." - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "ส.ค." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "à¸.ย." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "ต.ค." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "พ.ย." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "ธ.ค." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "มà¸à¸£à¸²à¸„ม" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "à¸à¸¸à¸¡à¸ à¸²à¸žà¸±à¸™à¸˜à¹Œ" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "มีนาคม" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "เมษายน" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "พฤษภาคม" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "มิถุนายน" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "à¸à¸£à¸à¸Žà¸²à¸„ม" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "สิงหาคม" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "à¸à¸±à¸™à¸¢à¸²à¸¢à¸™" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "ตุลาคม" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "พฤศจิà¸à¸²à¸¢à¸™" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "ธันวาคม" - -#: utils/text.py:136 -msgid "or" -msgstr "หรือ" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "ปี" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "เดือน" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "สัปดาห์" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "วัน" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "ชั่วโมง" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "นาที" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "นาที" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j N Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "N j, Y, P" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "G:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s ได้ถูà¸à¸ªà¸£à¹‰à¸²à¸‡à¹€à¸£à¸µà¸¢à¸šà¸£à¹‰à¸­à¸¢à¹à¸¥à¹‰à¸§" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s ได้ถูà¸à¸›à¸£à¸±à¸šà¸›à¸£à¸¸à¸‡à¹€à¸£à¸µà¸¢à¸šà¸£à¹‰à¸­à¸¢à¹à¸¥à¹‰à¸§" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s ได้ถูà¸à¸¥à¸šà¹€à¸£à¸µà¸¢à¸šà¸£à¹‰à¸­à¸¢à¹à¸¥à¹‰à¸§" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/th/__init__.py b/lib/python2.7/site-packages/django/conf/locale/th/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/th/formats.py b/lib/python2.7/site-packages/django/conf/locale/th/formats.py deleted file mode 100644 index aa43108a4..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/th/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j F Y' -TIME_FORMAT = 'G:i:s' -DATETIME_FORMAT = 'j F Y, G:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j M Y' -SHORT_DATETIME_FORMAT = 'j M Y, G:i:s' -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = '.' -THOUSAND_SEPARATOR = ',' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo deleted file mode 100644 index 51e9c21e0..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/tr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/tr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/tr/LC_MESSAGES/django.po deleted file mode 100644 index 2f32fd5df..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/tr/LC_MESSAGES/django.po +++ /dev/null @@ -1,1146 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:11-0400\n" -"PO-Revision-Date: 2011-03-04 21:16+0000\n" -"Last-Translator: martinamca \n" -"Language-Team: Turkish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Arapça" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azerice" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Bulgarca" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengali Dili" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "BoÅŸnakça" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Katalanca" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Çekçe" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Galce" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Danca" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Almanca" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Yunanca" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Ä°ngilizce" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "Ä°ngiltere Ä°ngilizce" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Ä°spanyolca" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Arjantin Ä°spanyolcası" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Meksika Ä°spanyolcası" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "Estonca" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "Baskça" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Farsça" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Fince" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Fransızca" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Frisce" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "Ä°rlandaca" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "Galler Dili" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "Ä°branice" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Hinduca" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "Hırvatça" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "Macarca" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "Endonezce" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "Ä°zlanda dili" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "Ä°talyanca" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "Japonca" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "Gürcüce" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "Kamboçyaca" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "Kannada Dili" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "Korece" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "Litovca" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "Leton Dili" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "Makedonca" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "Malayamca" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "MoÄŸolca" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "Flamanca" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Norveç Dili" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Norveçce (Bokmal)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Norveçce (Nynorsk)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Punjabice" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "Lehçe" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "Portekizce" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "Brezilya Portekizcesi" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "Romence" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "Rusça" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Slovakça" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "Slovence" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "Arnavutça" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "Sırpça" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "Sırp Latini" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "Ä°sveççe" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "Tamilce" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Telugu Dili" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "Tayca" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Türkçe" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "Ukraynaca" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Urduca" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Vietnamca" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "BasiteÅŸtirilmiÅŸ Çince" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "Geleneksel Çince" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Geçerli bir deÄŸer girin." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "Bu URL geçersiz bir link gibi duruyor." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Geçerli bir URL girin." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Geçerli bir e-posta adresi girin." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "Lütfen sadece harf, rakam, altçizgi veya çizgiden oluÅŸan deÄŸer girin." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Geçerli bir IPv4 adresi girin." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Sadece virgülle ayrılmış sayılar girin." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"Bu deÄŸerin en az %(limit_value)s karakterden oluÅŸtuÄŸundan emin olun (ÅŸu anki " -"karakter sayısı: %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"Bu deÄŸerin %(limit_value)s karakterden az veya eÅŸit olduÄŸundan emin olun." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"Bu deÄŸerin %(limit_value)s karakterden çok veya eÅŸit olduÄŸundan emin olun." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Bu deÄŸerin en az %(limit_value)d karakterden oluÅŸtuÄŸundan emin olun (ÅŸu anki " -"karakter sayısı: %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Bu deÄŸerin en fazla %(limit_value)d karakterden oluÅŸtuÄŸundan emin olun (ÅŸu " -"anki karakter sayısı: %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(field_name)s deÄŸeri %(date_field)s alanı %(lookup)s iÅŸlemi için tek " -"olmalıdır." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(field_label)s alanına sahip %(model_name)s zaten mevcuttur." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "ve" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "%r deÄŸeri geçerli bir seçim deÄŸil." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Bu alan boÅŸ bırakılamaz." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Bu alan boÅŸ bırakılamaz. " - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Alan türü: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Tamsayı" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Bu deÄŸer tamsayı olmalı." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Bu deÄŸer True ya da False olabilir." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Mantıksal (True ya da False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Karakter disizi (en fazla %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Virgülle ayrılmış tamsayılar" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Tarih (saat yok)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "YYYY-AA-GG formatında tarih girin." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Geçersiz tarih: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"YYYY-MM-DD HH:MM[:ss[.uuuuuu]] formatında geçerli bir tarih ve saat girin." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Tarih (saat var)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Bu deÄŸer ondalık sayı olmalıdır." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Ondalık sayı" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-posta adresi" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Dosya yolu" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Bu deÄŸer ondalık sayı olmalı." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Floating point rakamı" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Büyük (8 bayt) integer" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP adresi" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Bu deÄŸer None, True ya da False olabilir." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Mantıksal (True, False, ya da None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Metin" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Saat" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "HH:MM[:ss[.uuuuuu]] formatında geçerli bir saat girin." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML metni" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Birincil anahtarı %(pk)r olan %(model)s mevcut deÄŸil." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Yabancı Anahtar (türü iliÅŸkili alana göre belirlenir)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Bire-bir iliÅŸki" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "ÇoÄŸa-çok iliÅŸki" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"\"Ctrl\" (Mac'de \"Command\") tuÅŸunu basılı tutularak birden fazla seçim " -"yapılabilir." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Bu alan zorunludur." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Tam sayı girin." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Bir sayı girin." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Toplamda en fazla %s sayının olduÄŸundan emin olun." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "En fazla %s onluk yerin olduÄŸundan emin olun." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "Onluk kısımdan önce en fazla %s sayı olduÄŸundan emin olun." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Geçerli bir tarih girin." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Geçerli bir zaman girin." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Geçerli bir tarih/zaman girin." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Dosya gönderilmedi. Formdaki kodlama türünü kontrol edin." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Hiçbir dosya gönderilmedi." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Gönderilen dosya boÅŸ." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Bu dosya adının en fazla %(max)d karakterden oluÅŸtuÄŸundan emin olun (ÅŸu anki " -"karakter sayısı: %(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Lütfen ya dosya seçin, ya da sıfırla kutucuÄŸunu iÅŸaretleyin. Ä°kisini aynı " -"anda yapmayın." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Geçerli bir resim girin. GönderdiÄŸiniz dosya resim deÄŸil, ya da bozuk bir " -"dosya." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Geçerli bir seçimde bulunun; %(value)s mevcut deÄŸerlerden biri deÄŸil." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "DeÄŸer listesi giriniz." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Sıralama" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Sil" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Lütfen %(field)s alanları için mükerrer kayıt problemini düzeltin." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Lütfen %(field)s alanı için mükerrer verileri düzeltin, bunlar eÅŸsiz " -"olmalıdır." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Lütfen %(field_name)s alanı için mükerrer verileri düzeltin, bunlar %" -"(date_field)s alanı %(lookup)s sorgulamaları için eÅŸsiz olmalıdır." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Lütfen aÅŸağıdaki mükerrer kayıtları düzeltin." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"İçeride belirtilmiÅŸ yabancı anahtar ebeveyin nesnenin birincil anahtarı ile " -"uyuÅŸmadı." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Geçerli bir seçimde bulunun; seçiminiz mevcut deÄŸerlerden birisi deÄŸil." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Geçerli bir seçimde bulunun; %s mevcut deÄŸerlerden biri deÄŸil." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" birincil anahtar için geçerli bir deÄŸer deÄŸil." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Geçerli" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Düzenle" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Sıfırla" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Bilinmiyor" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Evet" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Hayır" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "evet,hayır,olabilir" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d bayt" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "ö.s." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "ö.ö." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "ÖS" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "ÖÖ" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "gece yarısı" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "öğlen" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Pazartesi" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Salı" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "ÇarÅŸamba" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "PerÅŸembe" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Cuma" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Cumartesi" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Pazar" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Pzt" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Sal" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "ÇrÅŸ" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "PrÅŸ" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Cum" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Cmt" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Paz" - -#: utils/dates.py:18 -msgid "January" -msgstr "Ocak" - -#: utils/dates.py:18 -msgid "February" -msgstr "Åžubat" - -#: utils/dates.py:18 -msgid "March" -msgstr "Mart" - -#: utils/dates.py:18 -msgid "April" -msgstr "Nisan" - -#: utils/dates.py:18 -msgid "May" -msgstr "Mayıs" - -#: utils/dates.py:18 -msgid "June" -msgstr "Haziran" - -#: utils/dates.py:19 -msgid "July" -msgstr "Temmuz" - -#: utils/dates.py:19 -msgid "August" -msgstr "AÄŸustos" - -#: utils/dates.py:19 -msgid "September" -msgstr "Eylül" - -#: utils/dates.py:19 -msgid "October" -msgstr "Ekim" - -#: utils/dates.py:19 -msgid "November" -msgstr "Kasım" - -#: utils/dates.py:20 -msgid "December" -msgstr "Aralık" - -#: utils/dates.py:23 -msgid "jan" -msgstr "oca" - -#: utils/dates.py:23 -msgid "feb" -msgstr "ÅŸub" - -#: utils/dates.py:23 -msgid "mar" -msgstr "mar" - -#: utils/dates.py:23 -msgid "apr" -msgstr "nis" - -#: utils/dates.py:23 -msgid "may" -msgstr "may" - -#: utils/dates.py:23 -msgid "jun" -msgstr "haz" - -#: utils/dates.py:24 -msgid "jul" -msgstr "tem" - -#: utils/dates.py:24 -msgid "aug" -msgstr "aÄŸu" - -#: utils/dates.py:24 -msgid "sep" -msgstr "eyl" - -#: utils/dates.py:24 -msgid "oct" -msgstr "eki" - -#: utils/dates.py:24 -msgid "nov" -msgstr "kas" - -#: utils/dates.py:24 -msgid "dec" -msgstr "ara" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Oca." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Åžub." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Mart" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Nisan" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Mayıs" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Haziran" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Temmuz" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "AÄŸu." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Eyl." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Eki." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Kas." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Ara." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Ocak" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Åžubat" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Mart" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Nisan" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Mayıs" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Haziran" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Temmuz" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "AÄŸustos" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Eylül" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Ekim" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Kasım" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Aralık" - -#: utils/text.py:136 -msgid "or" -msgstr "ya da" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "yıl" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "ay" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "hafta" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "gün" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "saat" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "dakika" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "dakika" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "j F Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "j F Y, H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "j F" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s baÅŸarıyla oluÅŸturuldu." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s baÅŸarıyla güncellendi." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s silindi." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Yıl bilgisi belirtilmedi" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Ay bilgisi belirtilmedi" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Gün bilgisi belirtilmedi" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Hafta bilgisi belirtilmedi" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Mevcut %(verbose_name_plural)s kaydı bulunamadı" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Gelecek %(verbose_name_plural)s mevcut deÄŸil, çünkü %(class_name)s." -"allow_future deÄŸeri False olarak tanımlıdır." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Geçersiz tarih dizisi: '%(datestr)s', format: '%(format)s' " - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Sorguya uygun herhangi bir %(verbose_name)s bulunamadı" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "Sayfa 'sonuncu' deÄŸil, veya int'e çevirilemez." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Geçersiz sayfa (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Liste boÅŸ ve '%(class_name)s.allow_empty' deÄŸeri False olarak tanımlı." diff --git a/lib/python2.7/site-packages/django/conf/locale/tr/__init__.py b/lib/python2.7/site-packages/django/conf/locale/tr/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/tr/formats.py b/lib/python2.7/site-packages/django/conf/locale/tr/formats.py deleted file mode 100644 index 5fb2e42f0..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/tr/formats.py +++ /dev/null @@ -1,37 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'd F Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = 'd F Y H:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'd F' -SHORT_DATE_FORMAT = 'd M Y' -SHORT_DATETIME_FORMAT = 'd M Y H:i:s' -FIRST_DAY_OF_WEEK = 1 # Pazartesi - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -DATE_INPUT_FORMATS = ( - '%d/%m/%Y', '%d/%m/%y', # '25/10/2006', '25/10/06' - '%Y-%m-%d', '%y-%m-%d', # '2006-10-25', '06-10-25' - # '%d %B %Y', '%d %b. %Y', # '25 Ekim 2006', '25 Eki. 2006' -) -TIME_INPUT_FORMATS = ( - '%H:%M:%S', # '14:30:59' - '%H:%M', # '14:30' -) -DATETIME_INPUT_FORMATS = ( - '%d/%m/%Y %H:%M:%S', # '25/10/2006 14:30:59' - '%d/%m/%Y %H:%M', # '25/10/2006 14:30' - '%d/%m/%Y', # '25/10/2006' - '%Y-%m-%d %H:%M:%S', # '2006-10-25 14:30:59' - '%Y-%m-%d %H:%M', # '2006-10-25 14:30' - '%Y-%m-%d', # '2006-10-25' -) -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -NUMBER_GROUPING = 3 diff --git a/lib/python2.7/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo deleted file mode 100644 index c789b409a..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/uk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po deleted file mode 100644 index 0e7d5da3c..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/uk/LC_MESSAGES/django.po +++ /dev/null @@ -1,1159 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:12-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: shelldweller \n" -"Language-Team: Ukrainian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\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" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "ÐрабÑька" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "ÐзербайджанÑька" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "БолгарÑька" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "БенгальÑька" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "БоÑнійÑька" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "КаталонÑька" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "ЧеÑька" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "ВаллійÑька" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "ДатÑька" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Ðімецька" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Грецька" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "ÐнглійÑька" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "ÐнглійÑька (ВеликобританіÑ)" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ІÑпанÑька" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "ІÑпанÑька (Ðргентина)" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "МекÑиканьÑка (Ñ–ÑпанÑька)" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "РумунÑька" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "БаÑкÑька" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "ПерÑька" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "ФінÑька" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Французька" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Фризька" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "ІрландÑька" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "ГаліційÑька" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "ІвÑ€Ð¸Ñ‚" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "Хінді" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "ХорватÑька" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "УгорÑька" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "ІндонезійÑька" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "ІÑландÑька" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "ІталійÑька" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "ЯпонÑька" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "ГрузинÑька" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "КхмерÑька" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "КанадÑька" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "КорейÑька" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "ЛитовÑька" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "ЛатвійÑька" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "МакедонÑька" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "МалаÑлам" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "МонгольÑька" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "ГолландÑька" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "Ðорвезька" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "Ðорвезька (Букмол)" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "Ðорвезька (ÐюнорÑьк)" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "Панджабі" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "ПольÑька" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "ПортугальÑька" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "БразильÑка" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "РумунÑька" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "РоÑійÑька" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "Словацька" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "СловенÑька" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "ÐлбанÑька" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "СербÑька" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "СербÑька (латинÑька)" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "ШведÑька" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "ТамільÑька" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "Телугу" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "ТайÑька" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "Турецька" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "УкраїнÑька" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "Урду" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "Ð’'єтнамÑька" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "КитайÑька Ñпрощена" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "КитайÑька традиційна" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Уведіть коректне значеннÑ." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "URL %s Ñ” пошкодженим поÑиланнÑм." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Уведіть коректний URL." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Уведіть коректну e-mail адреÑу." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "" -"Введіть коректне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ 'slug' (короткого заголовку), що може міÑтити " -"тільки літери, чиÑла, Ñимволи підкреÑÐ»ÑŽÐ²Ð°Ð½Ð½Ñ Ñ‚Ð° дефіÑи." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Введіть коректну IPv4 адреÑу." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Введіть тільки цифри, що розділені комами." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"ПереконайтеÑÑ, що це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´Ð¾Ñ€Ñ–Ð²Ð½ÑŽÑ” %(limit_value)s (зараз %(show_value)" -"s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "ПереконайтеÑÑ, що це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¼ÐµÐ½ÑˆÐµ чи дорівнює %(limit_value)s." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "ПереконайтеÑÑ, що це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð±Ñ–Ð»ÑŒÑˆÐµ чи дорівнює %(limit_value)s." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"ПереконайтеÑÑ, що це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¼Ð°Ñ” щонайменше %(limit_value)d Ñимволів (зараз " -"%(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"ПереконайтеÑÑ, що це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¼Ð°Ñ” щонайбільше %(limit_value)d Ñимволів " -"(зараз %(show_value)d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(field_name)s має бути унікальним Ð´Ð»Ñ %(date_field)s %(lookup)s." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s з таким %(field_label)s вже Ñ–Ñнує." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "та" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ %r не Ñ” дозволеним вибором." - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "Це поле не може бути пуÑтим." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "Це поле не може бути порожнім." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "Тип полÑ: %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Ціле чиÑло" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¼Ð°Ñ” бути цілим чиÑлом." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²Ð¸Ð½Ð½Ð¾ бути True або False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Булеве Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (True або False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "РÑдок (до %(max_length)s)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Цілі, розділені комою" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Дата (без чаÑу)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Уведіть правильну дату у форматі РРРР-ММ-ДД." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ðеправильна дата: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "Введіть коректну дату у форматі РРРР-ММ-ДД[:ÑÑ[.мммммм]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Дата (з чаÑом)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²Ð¸Ð½Ð½Ð¾ бути деÑÑтковим чиÑлом." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "ДеÑÑткове чиÑло" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mail адреÑа" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "ШлÑÑ… до файла" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¼Ð°Ñ” бути дійÑним чиÑлом." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "ЧиÑло з плаваючою комою" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Велике (8 байтів) ціле чиÑло" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP адреÑа" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²Ð¸Ð½Ð½Ð¾ бути None, True або False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Булеве Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (включаючи True, False або None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "ТекÑÑ‚" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "ЧаÑ" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Уведіть коректний Ñ‡Ð°Ñ Ñƒ форматі ГГ:ХХ[:ÑÑ[.мммммм]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "текÑÑ‚ XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Моделі %(model)s з ключем %(pk)r не Ñ–Ñнує." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Зовнішній ключ (тип визначаєтьÑÑ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´Ð½Ð¾ полÑ)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Один-до-одного" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Багато-до-багатьох" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"ЗатиÑніть клавішу \"Control\", або \"Command\" на Маку, щоб обрати більше " -"однієї опції." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "Це поле обов'Ñзкове." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Введіть ціле чиÑло." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Введіть чиÑло." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "ПереконайтеÑÑ, що тут не більше ніж %s цифр загалом." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "ПереконайтеÑÑ, що тут не більше ніж %s цифр піÑÐ»Ñ Ð´ÐµÑÑткової коми." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "ПереконайтеÑÑ, що тут не більше ніж %s цифр до деÑÑткової коми." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Введіть коректну дату." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Введіть коректний чаÑ." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Уведіть коректну дату/Ñ‡Ð°Ñ Ð°Ð´Ñ€ÐµÑу." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Файл не надіÑлано. Перевірте тип ÐºÐ¾Ð´ÑƒÐ²Ð°Ð½Ð½Ñ Ñ„Ð¾Ñ€Ð¼Ð¸." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Файл не було надіÑлано." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Переданий файл порожній." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"ПереконайтеÑÑ, що ім'Ñ Ñ„Ð°Ð¹Ð»Ñƒ міÑтить щонайбільше %(max)d Ñимволів (зараз %" -"(length)d)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "" -"Будь лаÑка, або завантажте файл, або відмітьте прапорець очищеннÑ, а не " -"обидва варіанти одразу" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Завантажте правильний малюнок. Файл, Ñкий ви завантажили, не Ñ” малюнком, або " -"Ñ” зіпÑованим малюнком." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "Зробить коректний вибір, %(value)s немає Ñеред варіантів вибору." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Введіть ÑпиÑок значень." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "ПоÑлідовніÑÑ‚ÑŒ" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Видалити" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Будь лаÑка, виправте повторювані дані Ð´Ð»Ñ Ð¿Ð¾Ð»Ñ %(field)s." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Будь лаÑка, виправте повторювані дані Ð´Ð»Ñ Ð¿Ð¾Ð»Ñ %(field)s, Ñке має бути " -"унікальним." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Будь лаÑка, виправте повторювані дані Ð´Ð»Ñ Ð¿Ð¾Ð»Ñ %(field_name)s, Ñке має бути " -"унікальним Ð´Ð»Ñ Ð²Ð¸Ð±Ñ–Ñ€ÐºÐ¸ %(lookup)s на %(date_field)s." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Будь лаÑка, виправте повторювані Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½Ð¸Ð¶Ñ‡Ðµ." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "" -"Зв'Ñзаний зовнішній ключ не відповідає первіÑному ключу батьківÑького " -"екземплÑру." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "Зробить коректний вибір. Такого варіанту нема Ñеред доÑтупних." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Зробить коректний вибір. Такого варіанту %s нема Ñеред доÑтупних." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" не Ñ” допуÑтимим значеннÑм Ð´Ð»Ñ Ð¿ÐµÑ€Ð²Ð¸Ð½Ð½Ð¾Ð³Ð¾ ключа." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Ðаразі" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Змінити" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "ОчиÑтити" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "Ðевідомо" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Так" - -#: forms/widgets.py:548 -msgid "No" -msgstr "ÐÑ–" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "так,ні,можливо" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d байт" -msgstr[1] "%(size)d байти" -msgstr[2] "%(size)d байтів" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s Кб" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s Мб" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s Гб" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s Тб" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s Пб" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "піÑÐ»Ñ Ð¿Ð¾Ð»ÑƒÐ´Ð½Ñ" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "до полуднÑ" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "піÑÐ»Ñ Ð¿Ð¾Ð»ÑƒÐ´Ð½Ñ" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "до полуднÑ" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "північ" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "полудень" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Понеділок" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Вівторок" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Середа" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Четвер" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "П'ÑтницÑ" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Субота" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "ÐеділÑ" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Пн" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Ð’Ñ‚" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Сер" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Чт" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Пт" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Сб" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Ðед" - -#: utils/dates.py:18 -msgid "January" -msgstr "Січень" - -#: utils/dates.py:18 -msgid "February" -msgstr "Лютий" - -#: utils/dates.py:18 -msgid "March" -msgstr "Березень" - -#: utils/dates.py:18 -msgid "April" -msgstr "Квітень" - -#: utils/dates.py:18 -msgid "May" -msgstr "Травень" - -#: utils/dates.py:18 -msgid "June" -msgstr "Червень" - -#: utils/dates.py:19 -msgid "July" -msgstr "Липень" - -#: utils/dates.py:19 -msgid "August" -msgstr "Серпень" - -#: utils/dates.py:19 -msgid "September" -msgstr "ВереÑень" - -#: utils/dates.py:19 -msgid "October" -msgstr "Жовтень" - -#: utils/dates.py:19 -msgid "November" -msgstr "ЛиÑтопад" - -#: utils/dates.py:20 -msgid "December" -msgstr "Грудень" - -#: utils/dates.py:23 -msgid "jan" -msgstr "Ñіч" - -#: utils/dates.py:23 -msgid "feb" -msgstr "лют" - -#: utils/dates.py:23 -msgid "mar" -msgstr "бер" - -#: utils/dates.py:23 -msgid "apr" -msgstr "кві" - -#: utils/dates.py:23 -msgid "may" -msgstr "тра" - -#: utils/dates.py:23 -msgid "jun" -msgstr "чер" - -#: utils/dates.py:24 -msgid "jul" -msgstr "лип" - -#: utils/dates.py:24 -msgid "aug" -msgstr "Ñер" - -#: utils/dates.py:24 -msgid "sep" -msgstr "вер" - -#: utils/dates.py:24 -msgid "oct" -msgstr "жов" - -#: utils/dates.py:24 -msgid "nov" -msgstr "лиÑ" - -#: utils/dates.py:24 -msgid "dec" -msgstr "гру" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Січ." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Лют." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Березень" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Квітень" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Травень" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Червень" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Липень" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Сер." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Вер." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Жов." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "ЛиÑ." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Гру." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "ÑічнÑ" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "лютого" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "березнÑ" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "квітнÑ" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "травнÑ" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "червнÑ" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "липнÑ" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "ÑерпнÑ" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "вереÑнÑ" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "жовтнÑ" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "лиÑтопада" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "груднÑ" - -#: utils/text.py:136 -msgid "or" -msgstr "або" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "рік" -msgstr[1] "роки" -msgstr[2] "років" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "міÑÑць" -msgstr[1] "міÑÑці" -msgstr[2] "міÑÑців" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "тиждень" -msgstr[1] "тижні" -msgstr[2] "тижнів" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "день" -msgstr[1] "дні" -msgstr[2] "днів" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "година" -msgstr[1] "години" -msgstr[2] "годин" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "хвилина" -msgstr[1] "хвилини" -msgstr[2] "хвилин" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "хвилин(а)" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "d.m.Y" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "d.m.Y H:i" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "d.m.Y" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "d.m.Y" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "Об'єкт %(verbose_name)s був уÑпішно Ñтворений." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "Об'єкт %(verbose_name)s був уÑпішно змінений." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "Об'єкт %(verbose_name)s був уÑпішно видалений." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Рік не вказано" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "МіÑÑць не вказано" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "День не вказано" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Тиждень не вказано" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "%(verbose_name_plural)s недоÑтупні" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"Майбутні %(verbose_name_plural)s недоÑтупні, тому що %(class_name)s." -"allow_future має нульове значеннÑ." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "ÐедійÑна дата '%(datestr)s' Ð´Ð»Ñ Ñ„Ð¾Ñ€Ð¼Ð°Ñ‚Ñƒ '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Жодні %(verbose_name)s не були знайдені по запиту" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Ðеправильна величина параметра Ñторінки: вона повинна бути задана цілим " -"чиÑлом або значеннÑм 'last'." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "ÐедійÑний номер Ñторінки (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Порожній ÑпиÑок Ñ– величина '%(class_name)s.allow_empty' Ñ” нульовою." diff --git a/lib/python2.7/site-packages/django/conf/locale/uk/__init__.py b/lib/python2.7/site-packages/django/conf/locale/uk/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/uk/formats.py b/lib/python2.7/site-packages/django/conf/locale/uk/formats.py deleted file mode 100644 index 8b4606fb6..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/uk/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = 'j E Y Ñ€.' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = 'j E Y Ñ€. H:i:s' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'j M Y' -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = u' ' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo deleted file mode 100644 index e590f67fa..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/ur/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po deleted file mode 100644 index db2b87e52..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/ur/LC_MESSAGES/django.po +++ /dev/null @@ -1,1145 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:12-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: Mansoorulhaq \n" -"Language-Team: Urdu \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "عربی" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "بلغاری" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "بنگالی" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "بوسنیائی" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "کیٹالانی" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "زیچ" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "ویلش" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "ڈینش" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "جرمن" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "گریک" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "انگلش" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "برطانوی انگلش" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "ھسپانوی" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "ارجنٹائنی سپینش" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "اسٹانین" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "باسک" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "Ùارسی" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "Ùنش" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "Ùرانسیسی" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "Ùریسی" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "آئرش" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "گیلیشین" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "عبرانی" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "ھندی" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "کروشن" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "ھونگارین" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "انڈونیشین" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "آئس لینڈک" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "اطالوی" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "جاپانی" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "جارجیائی" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "خمر" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "کناڈا" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "کوریائی" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "لیتھونیائی" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "لتوینی" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "میسیڈونین" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "ملایالم" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "منگولین" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "ÚˆÚ†" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "نارویائی" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "نارویائی بوکمال" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "نارویائی نینورسک" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "پنجابی" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "پولش" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "پورتگیز" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "برازیلی پورتگیز" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "رومانی" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "روسی" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "سلووک" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "سلووینین" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "البانوی" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "سربین" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "سربین لاطینی" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "سویڈش" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "تاملی" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "تیلگو" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "تھائی" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "ترکش" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "یوکرائنی" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "ویتنامی" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "سادی چینی" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "روایتی چینی" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "درست قیمت (ویلیو) درج کریں۔" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "ÛŒÛ ÛŒÙˆ آر ایل (URL) ٹوٹا Ûوا Ø±Ø§Ø¨Ø·Û (لنک) معلوم ھوتا Ú¾Û’Û”" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "درست یو آر ایل (URL) درج کریں۔" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "برقی خط کا درست Ù¾ØªÛ Ø¯Ø±Ø¬ کریں۔" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "درست 'slug' درج کریں جو حروÙØŒ نمبروں، انڈرسکور یا ھائÙنز پر مشتمل Ú¾ÙˆÛ”" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "IPv4 کا درست Ù¾ØªÛ Ø¯Ø±Ø¬ کریں۔" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "صر٠اعداد درج کریں جو کوموں سے الگ کئے ھوئے Ú¾ÙˆÚºÛ”" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "" -"اس بات کا یقین کر لیں Ú©Û ÛŒÛ Ù‚ÛŒÙ…Øª (ویلیو) %(limit_value)s Ú¾Û’Û” (ÛŒÛ %" -"(show_value)s Ú¾Û’)%(show_value)s" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "" -"اس بات کا یقین کر لیں Ú©Û ÛŒÛ Ù‚ÛŒÙ…Øª (ویلیو) %(limit_value)s سے Ú©Ù… یا اس Ú©Û’ " -"برابر Ú¾Û’Û”" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "" -"اس بات کا یقین کر لیں Ú©Û ÛŒÛ Ù‚ÛŒÙ…Øª (ویلیو) %(limit_value)s سے Ø²ÛŒØ§Ø¯Û ÛŒØ§ اس Ú©Û’ " -"برابر Ú¾Û’Û”" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"اس بات کا یقین کر لیں Ú©Û Ø§Ø³ قیمت (ویلیو) میں Ú©Ù… از Ú©Ù… %(limit_value)d حرو٠" -"Ûیں۔ (اس میں %(show_value)d Ûیں۔" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"اس بات کا یقین کر لیں Ú©Û Ø§Ø³ قیمت (ویلیو) میں Ø²ÛŒØ§Ø¯Û Ø³Û’ Ø²ÛŒØ§Ø¯Û %(limit_value)d " -"حرو٠Ûیں۔ (اس میں %(show_value)d ھیں۔" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "" -"%(field_name)s کا %(date_field)s %(lookup)s Ú©Û’ لئے منÙرد ھونا ضروری Ú¾Û’Û”" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s اس %(field_label)s Ú©Û’ ساتھ Ù¾ÛÙ„Û’ ÛÛŒ موجود Ú¾Û’Û”" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "اور" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "قیمت (ویلیو) %r درست انتخاب نھیں Ú¾Û’Û”" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "ÛŒÛ Ø®Ø§Ù†Û Ù†Ø§Ù…Ø¹Ù„ÙˆÙ… (null( نھیں Ø±Û Ø³Ú©ØªØ§Û”" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "ÛŒÛ Ø®Ø§Ù†Û Ø®Ø§Ù„ÛŒ نھیں چھوڑا جا سکتا۔" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "%(field_type)s قسم کا خانÛ" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "صحیح عدد" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "اس قیمت (ویلیو) کا صحیح عدد ھونا ضروری Ú¾Û’Û”" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "اس قیمت (ویلیو) کا True یا False ھونا ضروری Ú¾Û’Û”" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "بولین (True یا False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "سلسلÛÙ” حرو٠(String) (%(max_length)s تک)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr " کومے سے الگ کئے ھوئے صحیح اعداد" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "تاریخ (وقت Ú©Û’ بغیر)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "YYYY-MM-DD Ú©ÛŒ Ø´Ú©Ù„ میں درست تاریخ درج کریں۔" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "غلط تاریخ: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "YYYY-MM-DD HH:MM[:ss[.uuuuuu]] Ú©ÛŒ Ø´Ú©Ù„ میں درست تاریخ/وقت درج کریں۔" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "تاریخ (بمع وقت)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "اس قیمت (ویلیو) کا اعشاری نمبر ھونا ضروری Ú¾Û’Û”" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "اعشاری نمبر" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "برقی خط کا پتÛ" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "Ùائل کا راستÛ(path(" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "اس قیمت (ویلیو) کا نقطÛÙ” Ø§Ø¹Ø´Ø§Ø±ÛŒÛ ÙˆØ§Ù„Ø§ ھونا ضروری Ú¾Û’Û”" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Ù†Ù‚Ø·Û Ø§Ø¹Ø´Ø§Ø±ÛŒÛ ÙˆØ§Ù„Ø§ نمبر" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "بڑا (8 بائٹ) صحیح عدد" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP ایڈریس" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "اس قیمت (ویلیو) کا NoneØŒ True یا False ھونا ضروری Ú¾Û’Û”" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "بولین (TrueØŒ False یا None(" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "متن" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "وقت" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "HH:MM[:ss[.uuuuuu]] Ú©ÛŒ Ø´Ú©Ù„ میں درست وقت درج کریں۔" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "یو آر ایل" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML متن" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "ماڈل %(model)s پرائمری کلید (PK) %(pk)r Ú©Û’ ساتھ موجود نھیں۔" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "بیرونی کلید (FK( (قسم Ù…ØªØ¹Ù„Ù‚Û Ø®Ø§Ù†Û’ سے متعین Ú¾Ùˆ Ú¯ÛŒ)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "ون-ٹو-ون ریلیشن شپ" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "مینی-ٹو-مینی ریلیشن شپ" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "" -"ایک سے Ø²ÛŒØ§Ø¯Û Ù…Ù†ØªØ®Ø¨ کرنے Ú©Û’ لئے \"Control\" دبا کر رکھیں۔ یا Mac OS پر " -"\"Command\"" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "ÛŒÛ Ø®Ø§Ù†Û Ø¯Ø±Ú©Ø§Ø± Ú¾Û’Û”" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "مکمل نمبر درج کریں۔" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "نمبر درج کریں۔" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "اس بات کا یقین کر لیں Ú©Û Ú©Ù„ %s سے Ø²ÛŒØ§Ø¯Û Ø§Ø¹Ø¯Ø§Ø¯ ھیں۔" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "اس بات کا یقین کر لیں Ú©Û %s سے Ø²ÛŒØ§Ø¯Û Ø§Ø¹Ø´Ø§Ø±ÛŒ مقامات Ù†Ûیں۔" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "اس بات کا یقین کر لیں Ú©Û Ù†Ù‚Ø·ÛÙ” Ø§Ø¹Ø´Ø§Ø±ÛŒÛ Ø³Û’ Ù¾ÛÙ„Û’ %s سے Ø²ÛŒØ§Ø¯Û Ø§Ø¹Ø¯Ø§Ø¯ Ù†Ûیں۔" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "درست تاریخ درج کریں۔" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "درست وقت درج کریں۔" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "درست تاریخ/وقت درج کریں۔" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "کوئی Ùائل پیش Ù†Ûیں Ú©ÛŒ گئی۔ Ùارم پر اینکوڈنگ Ú©ÛŒ قسم چیک کریں۔" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "کوئی Ùائل پیش Ù†Ûیں Ú©ÛŒ گئی تھی۔" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "پیش Ú©ÛŒ گئی Ùائل خالی Ú¾Û’Û”" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"اس بات کا یقین کر لیں Ú©Û Ø§Ø³ Ùائل Ú©Û’ نام میں Ø²ÛŒØ§Ø¯Û Ø³Û’ Ø²ÛŒØ§Ø¯Û %(max)d حرو٠Ûیں۔ " -"(اس میں %(length)d Ûیں)" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Ø¨Ø±Ø§Û Ù…Ú¾Ø±Ø¨Ø§Ù†ÛŒ Ùائل پیش کریں یا Clear checkbox منتخب کریں۔ Ù†Û Ú©Û Ø¯ÙˆÙ†ÙˆÚºÛ”" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"درست تصویر اپ لوڈ کریں۔ جو Ùائل آپ Ù†Û’ اپ لوڈ Ú©ÛŒ تھی ÙˆÛ ØªØµÙˆÛŒØ± Ù†Ûیں تھی یا " -"خراب تصویر تھی۔" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "درست انتخاب منتخب کریں۔ %(value)s دستیاب انتخابات میں سے کوئی Ù†Ûیں۔" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "قیمتوں (ویلیوز) Ú©ÛŒ لسٹ درج کریں۔" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "ترتیب" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "مٹائیں" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Ø¨Ø±Ø§Û Ú©Ø±Ù… %(field)s Ú©Û’ لئے دوÛرا مواد درست کریں۔" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "" -"Ø¨Ø±Ø§Û Ú©Ø±Ù… %(field)s Ú©Û’ لئے دوÛرا مواد درست کریں Ø¬ÙˆÚ©Û Ù…Ù†Ùرد ھونا ضروری Ú¾Û’Û”" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Ø¨Ø±Ø§Û Ú©Ø±Ù… %(field_name)s میں دوÛرا مواد درست کریں جو Ú©Û %(date_field)s میں %" -"(lookup)s Ú©Û’ لئے منÙرد ھونا ضروری Ú¾Û’Û”" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Ø¨Ø±Ø§Û Ú©Ø±Ù… نیچے دوÛری قیمتیں (ویلیوز) درست کریں۔" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "ان لائن بیرونی کلید (FK) آبائی پرائمری کلید (PK) سے نھیں ملتی۔" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "درست انتخاب منتخب کریں۔ ÛŒÛ Ø§Ù†ØªØ®Ø§Ø¨ دستیاب انتخابات میں سے کوئی Ù†Ûیں Ú¾Û’Û”" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "درست انتخاب منتخب کریں۔ %s دستیاب انتخابات میں سے کوئی Ù†Ûیں Ú¾Û’Û”" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" پرائمری کلید (PK) Ú©Û’ لئے درست قیمت (ویلیو) نھیں Ú¾Û’Û”" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "ÙÛŒ الحال" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "تبدیل کریں" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "صا٠کریں" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "نامعلوم" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "ھاں" - -#: forms/widgets.py:548 -msgid "No" -msgstr "نھیں" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "ھاں،نÛیں،ھوسکتاÛÛ’" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d بائٹ" -msgstr[1] "%(size)d بائٹس" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s Ú© Û” ب" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s Ù… Û” ب" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s ج Û” ب" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s Ù¹ Û” ب" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s Ù¾ Û” Ù¾" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "شام" - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "صبح" - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "شام" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "صبح" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "نص٠رات" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "دوپÛر" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "سوموار" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "منگل" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "بدھ" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "جمعرات" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "جمعÛ" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Ú¾ÙتÛ" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "اتوار" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "سوموار" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "منگل" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "بدھ" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "جمعرات" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "جمعÛ" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Ú¾ÙتÛ" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "اتوار" - -#: utils/dates.py:18 -msgid "January" -msgstr "جنوری" - -#: utils/dates.py:18 -msgid "February" -msgstr "Ùروری" - -#: utils/dates.py:18 -msgid "March" -msgstr "مارچ" - -#: utils/dates.py:18 -msgid "April" -msgstr "اپریل" - -#: utils/dates.py:18 -msgid "May" -msgstr "مئی" - -#: utils/dates.py:18 -msgid "June" -msgstr "جون" - -#: utils/dates.py:19 -msgid "July" -msgstr "جولائی" - -#: utils/dates.py:19 -msgid "August" -msgstr "اگست" - -#: utils/dates.py:19 -msgid "September" -msgstr "ستمبر" - -#: utils/dates.py:19 -msgid "October" -msgstr "اکتوبر" - -#: utils/dates.py:19 -msgid "November" -msgstr "نومبر" - -#: utils/dates.py:20 -msgid "December" -msgstr "دسمبر" - -#: utils/dates.py:23 -msgid "jan" -msgstr "جنوری" - -#: utils/dates.py:23 -msgid "feb" -msgstr "Ùروری" - -#: utils/dates.py:23 -msgid "mar" -msgstr "مارچ" - -#: utils/dates.py:23 -msgid "apr" -msgstr "اپریل" - -#: utils/dates.py:23 -msgid "may" -msgstr "مئی" - -#: utils/dates.py:23 -msgid "jun" -msgstr "جون" - -#: utils/dates.py:24 -msgid "jul" -msgstr "جولائی" - -#: utils/dates.py:24 -msgid "aug" -msgstr "اگست" - -#: utils/dates.py:24 -msgid "sep" -msgstr "ستمبر" - -#: utils/dates.py:24 -msgid "oct" -msgstr "اکتوبر" - -#: utils/dates.py:24 -msgid "nov" -msgstr "نومبر" - -#: utils/dates.py:24 -msgid "dec" -msgstr "دسمبر" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "جنوری" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Ùروری" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "مارچ" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "اپریل" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "مئی" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "جون" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "جولائی" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "اگست" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "ستمبر" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "اکتوبر" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "نومبر" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "دسمبر" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "جنوری" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Ùروری" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "مارچ" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "اپریل" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "مئی" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "جون" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "جولائی" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "اگست" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "ستمبر" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "اکتوبر" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "نومبر" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "دسمبر" - -#: utils/text.py:136 -msgid "or" -msgstr "یا" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "ØŒ" - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "سال" -msgstr[1] "سال" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "مھینÛ" -msgstr[1] "مھینے" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "Ú¾ÙتÛ" -msgstr[1] "Ú¾Ùتے" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "دن" -msgstr[1] "دن" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "گھنٹÛ" -msgstr[1] "گھنٹے" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "منٹ" -msgstr[1] "منٹ" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "منٹ" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr "ØŒ %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "'N j, Y'" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "'N j, Y, P'" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "'P'" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "'F Y'" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "'F j'" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s کامیابی سے بنایا گیا تھا۔" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s کامیابی سے ØªØ§Ø²Û Ú©ÛŒØ§ گیا تھا۔" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s مٹا دیا گیا تھا۔" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo deleted file mode 100644 index d76102a0d..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/vi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po deleted file mode 100644 index 456c04184..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/vi/LC_MESSAGES/django.po +++ /dev/null @@ -1,1140 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:02+0100\n" -"PO-Revision-Date: 2011-03-19 09:08+0000\n" -"Last-Translator: vant \n" -"Language-Team: Vietnamese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "Tiếng Ả Rập" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "Azerbaijan" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "Tiếng Bun-ga-ri" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "Bengali" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "Tiếng Bosnia" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "Catalan" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "Séc" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "Xứ Wales" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "Tiếng Äan Mạch" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "Tiếng Äức" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "Tiếng Hy Lạp" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "Tiếng Anh" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "British English" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "Tiếng Tây Ban Nha" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "Argentinian Spanish" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "Mexican Spanish" - -#: conf/global_settings.py:60 -#, fuzzy -msgid "Nicaraguan Spanish" -msgstr "Mexican Spanish" - -#: conf/global_settings.py:61 -msgid "Estonian" -msgstr "Tiếng Estonia" - -#: conf/global_settings.py:62 -msgid "Basque" -msgstr "Tiếng BaxcÆ¡" - -#: conf/global_settings.py:63 -msgid "Persian" -msgstr "Tiếng Ba TÆ°" - -#: conf/global_settings.py:64 -msgid "Finnish" -msgstr "Tiếng Phần Lan" - -#: conf/global_settings.py:65 -msgid "French" -msgstr "Tiếng Pháp" - -#: conf/global_settings.py:66 -msgid "Frisian" -msgstr "Tiếng Frisco" - -#: conf/global_settings.py:67 -msgid "Irish" -msgstr "Tiếng Ai-len" - -#: conf/global_settings.py:68 -msgid "Galician" -msgstr "Tiếng Pháp cổ" - -#: conf/global_settings.py:69 -msgid "Hebrew" -msgstr "Tiếng Do Thái cổ" - -#: conf/global_settings.py:70 -msgid "Hindi" -msgstr "Tiếng Hindi" - -#: conf/global_settings.py:71 -msgid "Croatian" -msgstr "Tiếng Croatia" - -#: conf/global_settings.py:72 -msgid "Hungarian" -msgstr "Tiếng Hung-ga-ri" - -#: conf/global_settings.py:73 -msgid "Indonesian" -msgstr "Tiếng In-đô-nê-xi-a" - -#: conf/global_settings.py:74 -msgid "Icelandic" -msgstr "Tiếng AixÆ¡len" - -#: conf/global_settings.py:75 -msgid "Italian" -msgstr "Tiếng Ã" - -#: conf/global_settings.py:76 -msgid "Japanese" -msgstr "Tiếng Nhật Bản" - -#: conf/global_settings.py:77 -msgid "Georgian" -msgstr "Georgian" - -#: conf/global_settings.py:78 -msgid "Khmer" -msgstr "Tiếng KhÆ¡-me" - -#: conf/global_settings.py:79 -msgid "Kannada" -msgstr "Tiếng Kannada" - -#: conf/global_settings.py:80 -msgid "Korean" -msgstr "Tiếng Hàn Quốc" - -#: conf/global_settings.py:81 -msgid "Lithuanian" -msgstr "Tiếng Lat-vi" - -#: conf/global_settings.py:82 -msgid "Latvian" -msgstr "Ngôn ngữ vùng Bantic" - -#: conf/global_settings.py:83 -msgid "Macedonian" -msgstr "Tiếng Maxêđôni" - -#: conf/global_settings.py:84 -msgid "Malayalam" -msgstr "Tiếng Malayalam" - -#: conf/global_settings.py:85 -msgid "Mongolian" -msgstr "Tiếng Mông Cổ" - -#: conf/global_settings.py:86 -msgid "Dutch" -msgstr "Tiếng Hà Lan" - -#: conf/global_settings.py:87 -msgid "Norwegian" -msgstr "Tiếng Na Uy" - -#: conf/global_settings.py:88 -msgid "Norwegian Bokmal" -msgstr "Tiếng Na Uy BokmÃ¥l" - -#: conf/global_settings.py:89 -msgid "Norwegian Nynorsk" -msgstr "Tiếng Na Uy Nynorsk" - -#: conf/global_settings.py:90 -msgid "Punjabi" -msgstr "Punjabi" - -#: conf/global_settings.py:91 -msgid "Polish" -msgstr "Tiếng Ba lan" - -#: conf/global_settings.py:92 -msgid "Portuguese" -msgstr "Tiếng Bồ Äào Nha" - -#: conf/global_settings.py:93 -msgid "Brazilian Portuguese" -msgstr "Brazilian Portuguese" - -#: conf/global_settings.py:94 -msgid "Romanian" -msgstr "Tiếng Ru-ma-ni" - -#: conf/global_settings.py:95 -msgid "Russian" -msgstr "Tiếng Nga" - -#: conf/global_settings.py:96 -msgid "Slovak" -msgstr "Ngôn ngữ Slô-vac" - -#: conf/global_settings.py:97 -msgid "Slovenian" -msgstr "Tiếng Slôven" - -#: conf/global_settings.py:98 -msgid "Albanian" -msgstr "Tiếng Albania" - -#: conf/global_settings.py:99 -msgid "Serbian" -msgstr "Tiếng Xéc-bi" - -#: conf/global_settings.py:100 -msgid "Serbian Latin" -msgstr "Serbian Latin" - -#: conf/global_settings.py:101 -msgid "Swedish" -msgstr "Tiếng Thụy Äiển" - -#: conf/global_settings.py:102 -msgid "Tamil" -msgstr "Tiếng Ta-min" - -#: conf/global_settings.py:103 -msgid "Telugu" -msgstr "Telugu" - -#: conf/global_settings.py:104 -msgid "Thai" -msgstr "Tiếng Thái" - -#: conf/global_settings.py:105 -msgid "Turkish" -msgstr "Tiếng Thổ NhÄ© Kỳ" - -#: conf/global_settings.py:106 -msgid "Ukrainian" -msgstr "Tiếng Ukraina" - -#: conf/global_settings.py:107 -msgid "Urdu" -msgstr "Urdu" - -#: conf/global_settings.py:108 -msgid "Vietnamese" -msgstr "Tiếng Việt Nam" - -#: conf/global_settings.py:109 -msgid "Simplified Chinese" -msgstr "Tiếng Trung Hoa giản thể" - -#: conf/global_settings.py:110 -msgid "Traditional Chinese" -msgstr "Tiếng Trung Hoa truyá»n thống" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "Nhập má»™t giá trị hợp lệ." - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "URL này dÆ°á»ng nhÆ° là má»™t liên kết há»ng." - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "Nhập má»™t URL hợp lệ." - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "Hãy nhập địa chỉ email hợp lệ." - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "Nhập má»™t 'slug' hợp lệ gồm chữ cái, số, gạch dÆ°á»›i và gạch nối." - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "Nhập má»™t địa chỉ IPv4 hợp lệ." - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "Chỉ nhập chữ số, cách nhau bằng dấu phẩy." - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "Äảm bảo giá trị này là %(limit_value)s (nó là %(show_value)s )." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "Äảm bảo giá trị này là nhá» hÆ¡n hoặc bằng vá»›i %(limit_value)s ." - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "Äảm bảo giá trị này lá»›n hÆ¡n hoặc bằng vá»›i %(limit_value)s ." - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Äảm bảo giá trị này có ít nhất %(limit_value)d ký tá»± (nó có %(show_value)d)." - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"Äảm bảo giá trị này có nhiá»u nhất %(limit_value)d ký tá»± (nó có %(show_value)" -"d)." - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr " %(field_name)s phải là duy nhất cho %(date_field)s %(lookup)s ." - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "%(model_name)s có %(field_label)s đã tồn tại." - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "và" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "Lá»±a chá»n giá trị %r là không hợp lệ" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "TrÆ°á»ng này không thể để trống." - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "TrÆ°á»ng này không được để trắng." - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "TrÆ°á»ng thuá»™c dạng: %(field_type)s " - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "Số nguyên" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "Giá trị này phải là số nguyên." - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "Giá trị này phải là True hoặc False." - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "Boolean (hoặc là Äúng hoặc là Sai)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "Chuá»—i (dài đến %(max_length)s ký tá»± )" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "Các số nguyên được phân cách bằng dấu phẩy" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "Ngày (không có giá»)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "Nhập má»™t ngày hợp lệ theo dạng YYYY-MM-DD." - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "Ngày không hợp lệ: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "" -"Nhập má»™t ngày/thá»i gian hợp lệ theo dạng YYYY-MM-DD HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "Ngày (có giá»)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "Giá trị này phải là má»™t số thập phân." - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "Số thập phân" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "Äịa chỉ email" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "ÄÆ°á»ng dẫn tắt tá»›i file" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "Giá trị này phải được là số thá»±c." - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "Giá trị dấu chấm Ä‘á»™ng" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "Big (8 byte) integer" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "Äịa chỉ IP" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "Giá trị này phải là None, True hoặc False." - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "Luận lý (Có thể Äúng, Sai hoặc Không cái nào đúng)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "Äoạn văn" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "Giá»" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "Nhập má»™t thá»i gian hợp lệ theo dạng HH:MM[:ss[.uuuuuu]]." - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "ÄÆ°á»ng dẫn URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "văn bản XML" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "Model %(model)s vá»›i %(pk)r không tồn tại." - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "Khóa ngoại (kiểu được xác định bởi trÆ°á»ng liên hệ)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "Mối quan hệ má»™t-má»™t" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "Mối quan hệ nhiá»u-nhiá»u" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "Giữ \"Control\", hoặc \"Command\" trên Mac, để chá»n nhiá»u hÆ¡n má»™t." - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "TrÆ°á»ng này là bắt buá»™c." - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "Nhập má»™t số tổng thể." - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "Nhập má»™t số." - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "Hãy chắc chắn rằng tổng cá»™ng không nhiá»u hÆ¡n %s chữ số." - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "Hãy chắc chắn rằng không có nhiá»u hÆ¡n %s chữ số thập phân." - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "" -"Hãy chắc chắn rằng không có nhiá»u hÆ¡n %s chữ số trÆ°á»›c dấu phẩy thập phân." - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "Nhập má»™t ngày hợp lệ." - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "Nhập má»™t thá»i gian hợp lệ." - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "Nhập má»™t ngày/thá»i gian hợp lệ." - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "Không có tập tin nào được gá»­i. Hãy kiểm tra kiểu mã hóa của biểu mẫu." - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "Không có tập tin nào được gá»­i." - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "Tập tin được gá»­i là rá»—ng." - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "" -"Äảm bảo tên tập tin này có nhiá»u nhất %(max)d ký tá»± (nó có %(length)d ký tá»±)." - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "Vui lòng gá»­i má»™t tập tin hoặc để ô chá»n trắng, không chá»n cả hai." - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "" -"Hãy tải lên má»™t hình ảnh hợp lệ. Tập tin mà bạn đã tải không phải là hình " -"ảnh hoặc đã bị hÆ° há»ng." - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "" -"Hãy chá»n má»™t lá»±a chá»n hợp lệ. %(value)s không phải là má»™t trong các lá»±a chá»n " -"khả thi." - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "Nhập má»™t danh sách giá trị." - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "Thứ tá»±" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "Xóa" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "Hãy sá»­a các dữ liệu trùng lặp cho %(field)s ." - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "Hãy sá»­a các dữ liệu trùng lặp cho %(field)s, mà phải là duy nhất." - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"Hãy sá»­a các dữ liệu trùng lặp cho %(field_name)s mà phải là duy nhất cho %" -"(lookup)s tại %(date_field)s ." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "Hãy sá»­a các giá trị trùng lặp dÆ°á»›i đây." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "Khóa ngoại không tÆ°Æ¡ng ứng vá»›i khóa chính của đối tượng cha." - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "" -"Hãy chá»n má»™t lá»±a chá»n hợp lệ. Lá»±a chá»n đó không phải là má»™t trong các lá»±a " -"chá»n khả thi." - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "Hãy chá»n má»™t giá trị hợp lệ. %s không phải là lá»±a chá»n phù hợp." - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" không phải là giá trị hợp lệ cho má»™t khóa chính." - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "Hiện nay" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "Thay đổi" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "Xóa" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "ChÆ°a xác định" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "Có" - -#: forms/widgets.py:548 -msgid "No" -msgstr "Không" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "Có, Không, Có thể" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d byte" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "chiá»u" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "sáng" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "Ná»­a đêm" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "Buổi trÆ°a" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "Thứ 2" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "Thứ 3" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "Thứ 4" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "Thứ 5" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "Thứ 6" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "Thứ 7" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "Chủ nhật" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "Thứ 2" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "Thứ 3" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "Thứ 4" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "Thứ 5" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "Thứ 6" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "Thứ 7" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "Chủ nhật" - -#: utils/dates.py:18 -msgid "January" -msgstr "Tháng 1" - -#: utils/dates.py:18 -msgid "February" -msgstr "Tháng 2" - -#: utils/dates.py:18 -msgid "March" -msgstr "Tháng 3" - -#: utils/dates.py:18 -msgid "April" -msgstr "Tháng 4" - -#: utils/dates.py:18 -msgid "May" -msgstr "Tháng 5" - -#: utils/dates.py:18 -msgid "June" -msgstr "Tháng 6" - -#: utils/dates.py:19 -msgid "July" -msgstr "Tháng 7" - -#: utils/dates.py:19 -msgid "August" -msgstr "Tháng 8" - -#: utils/dates.py:19 -msgid "September" -msgstr "Tháng 9" - -#: utils/dates.py:19 -msgid "October" -msgstr "Tháng 10" - -#: utils/dates.py:19 -msgid "November" -msgstr "Tháng 11" - -#: utils/dates.py:20 -msgid "December" -msgstr "Tháng 12" - -#: utils/dates.py:23 -msgid "jan" -msgstr "Tháng 1" - -#: utils/dates.py:23 -msgid "feb" -msgstr "Tháng 2" - -#: utils/dates.py:23 -msgid "mar" -msgstr "Tháng 3" - -#: utils/dates.py:23 -msgid "apr" -msgstr "Tháng 4" - -#: utils/dates.py:23 -msgid "may" -msgstr "Tháng 5" - -#: utils/dates.py:23 -msgid "jun" -msgstr "Tháng 6" - -#: utils/dates.py:24 -msgid "jul" -msgstr "Tháng 7" - -#: utils/dates.py:24 -msgid "aug" -msgstr "Tháng 8" - -#: utils/dates.py:24 -msgid "sep" -msgstr "Tháng 9" - -#: utils/dates.py:24 -msgid "oct" -msgstr "Tháng 10" - -#: utils/dates.py:24 -msgid "nov" -msgstr "Tháng 11" - -#: utils/dates.py:24 -msgid "dec" -msgstr "Tháng 12" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "Tháng 1." - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "Tháng 2." - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "Tháng ba" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "Tháng tÆ°" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "Tháng năm" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "Tháng sáu" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "Tháng bảy" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "Tháng 8." - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "Tháng 9." - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "Tháng 10." - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "Tháng 11." - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "Tháng 12." - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "Tháng má»™t" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "Tháng hai" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "Tháng ba" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "Tháng tÆ°" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "Tháng năm" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "Tháng sáu" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "Tháng bảy" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "Tháng tám" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "Tháng Chín" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "Tháng MÆ°á»i" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "Tháng mÆ°á»i má»™t" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "Tháng mÆ°á»i hai" - -#: utils/text.py:136 -msgid "or" -msgstr "hoặc" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "năm" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "tháng" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "tuần" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "ngày" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "giá»" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "phút" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "phút" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:578 -msgid "DATE_FORMAT" -msgstr "N j, Y" - -#: utils/translation/trans_real.py:579 -msgid "DATETIME_FORMAT" -msgstr "N j, Y, P" - -#: utils/translation/trans_real.py:580 -msgid "TIME_FORMAT" -msgstr "P" - -#: utils/translation/trans_real.py:601 -msgid "YEAR_MONTH_FORMAT" -msgstr "F Y" - -#: utils/translation/trans_real.py:602 -msgid "MONTH_DAY_FORMAT" -msgstr "F j" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s đã được tạo thành công." - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s đã được cập nhật thành công." - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s đã bị xóa." - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "Không có năm xác định" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "Không có tháng xác định" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "Không có ngày xác định" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "Không có tuần xác định" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "Không có %(verbose_name_plural)s phù hợp" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"%(verbose_name_plural)s trong tÆ°Æ¡ng lai không có sẵn vì %(class_name)s." -"allow_future là False." - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "Chuá»—i ngày không hợp lệ ' %(datestr)s' định dạng bởi '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "Không có %(verbose_name)s tìm thấy phù hợp vá»›i truy vấn" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" -"Trang không phải là 'nhất', và cÅ©ng không nó có thể được chuyển đổi sang int." - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "Trang không hợp lệ (%(page_number)s)" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "Danh sách rá»—ng và '%(class_name)s.allow_empty' là sai." diff --git a/lib/python2.7/site-packages/django/conf/locale/vi/__init__.py b/lib/python2.7/site-packages/django/conf/locale/vi/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/vi/formats.py b/lib/python2.7/site-packages/django/conf/locale/vi/formats.py deleted file mode 100644 index 27b4efca2..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/vi/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -DATE_FORMAT = r'\N\gà\y d \t\há\n\g n \nă\m Y' -TIME_FORMAT = 'H:i:s' -DATETIME_FORMAT = r'H:i:s \N\gà\y d \t\há\n\g n \nă\m Y' -YEAR_MONTH_FORMAT = 'F Y' -MONTH_DAY_FORMAT = 'j F' -SHORT_DATE_FORMAT = 'd-m-Y' -SHORT_DATETIME_FORMAT = 'H:i:s d-m-Y' -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -DECIMAL_SEPARATOR = ',' -THOUSAND_SEPARATOR = '.' -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/zh_CN/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/zh_CN/LC_MESSAGES/django.mo deleted file mode 100644 index 0b289c990..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/zh_CN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/zh_CN/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/zh_CN/LC_MESSAGES/django.po deleted file mode 100644 index 951352d6a..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/zh_CN/LC_MESSAGES/django.po +++ /dev/null @@ -1,1122 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:12-0400\n" -"PO-Revision-Date: 2011-03-05 08:49+0000\n" -"Last-Translator: slene \n" -"Language-Team: Chinese (China) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "阿拉伯语" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "阿塞拜疆" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "ä¿åŠ åˆ©äºšè¯­" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "孟加拉语" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "波斯尼亚语" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "加泰罗尼亚语" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "æ·å…‹è¯­" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "å¨å°”士语" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "丹麦语" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "德语" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "希腊语" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "英语" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "英国英语" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "西ç­ç‰™è¯­" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "阿根廷西ç­ç‰™è¯­" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "墨西哥西ç­ç‰™è¯­" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "爱沙尼亚语" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "巴斯克语" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "波斯语" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "芬兰语" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "法语" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "夫里斯兰语" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "爱尔兰语" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "加利西亚语" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "希伯æ¥è¯­" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "北å°åº¦è¯­" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "克罗地亚语" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "匈牙利语" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "å°å°¼è¯­" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "冰岛语" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "æ„大利语" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "日语" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "æ ¼é²å‰äºšè¯­" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "高棉语" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "埃纳德语" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "韩语" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "立陶宛语" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "拉脱维亚语" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "马其顿语" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "马æ¥äºšæ‹‰å§†è¯­" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "è’™å¤è¯­" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "è·å…°è¯­" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "挪å¨è¯­" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "挪å¨åšå…‹é©¬å°”" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "新挪å¨è¯­" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "æ—é®æ™®è¯­ " - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "波兰语" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "è‘¡è„牙语" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "巴西葡è„牙语" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "罗马尼亚语" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "俄语" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "斯洛ä¼å…‹è¯­" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "斯洛文尼亚语" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "阿尔巴尼亚语" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "塞尔维亚语" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "塞尔维亚拉ä¸è¯­" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "瑞典语" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "泰米尔语" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "æ³°å¢å›ºè¯­" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "泰语" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "土耳其语" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "乌克兰语" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "乌尔都语" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "越å—语" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "简体中文" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "ç¹ä½“中文" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "输入一个有效的值。" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "URL %s 似乎是一个已æŸå的链接。" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "输入一个有效的 URL。" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "输入一个有效的 e-mail 地å€ã€‚" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "输入一个有效的 'slug',由字æ¯ã€æ•°å­—ã€ä¸‹åˆ’线或横线组æˆã€‚" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "输入一个有效的 IPv4 地å€ã€‚" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "åªèƒ½è¾“入用逗å·åˆ†éš”的数字。" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "ç¡®ä¿è¯¥å€¼ä¸º %(limit_value)s (现在为 %(show_value)s)。" - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "ç¡®ä¿è¯¥å€¼å°äºŽæˆ–等于%(limit_value)s。" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "ç¡®ä¿è¯¥å€¼å¤§äºŽæˆ–等于%(limit_value)s。" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "ç¡®ä¿è¯¥å€¼ä¸å°‘于 %(limit_value)d 个字符 (现在有 %(show_value)d 个)。" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "ç¡®ä¿è¯¥å€¼ä¸å¤šäºŽ %(limit_value)d 个字符 (现在有 %(show_value)d 个)。" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "在%(date_field)s %(lookup)s 需è¦å”¯ä¸€çš„ %(field_name)s" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "具有 %(field_label)s çš„ %(model_name)s 已存在。" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "å’Œ" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "值 %r ä¸æ˜¯æœ‰æ•ˆé€‰é¡¹ã€‚" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "这个值ä¸èƒ½ä¸º null。" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "此字段ä¸èƒ½ä¸ºç©ºã€‚" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "字段类型:%(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "æ•´æ•°" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "这个值必须是一个整数。" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "这个值必须是 True 或 False。" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "布尔值(真或å‡ï¼‰" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "字符串(最长 %(max_length)s ä½ï¼‰" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "逗å·åˆ†éš”çš„æ•´æ•°" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "日期(无时间)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "输入一个 YYYY-MM-DD æ ¼å¼çš„有效日期。" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "无效日期: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "输入一个 YYYY-MM-DD HH:MM[:ss[.uuuuuu]] æ ¼å¼çš„有效日期/时间。" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "日期(带时间)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "这个值必须是一个å°æ•°ã€‚" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "å°æ•°" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "E-mail 地å€" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "文件路径" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "该值必须为浮点数。" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "浮点数" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "大整数(8字节)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP 地å€" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "这个值必须是 None, True 或 False。" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "布尔值(真ã€å‡æˆ–æ— )" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "文本" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "时间" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "输入一个 HH:MM[:ss[.uuuuuu]] æ ¼å¼çš„有效时间。" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML 文本" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "模型 %(model)s 的外键 %(pk)r ä¸å­˜åœ¨ã€‚" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "外键(由相关字段确定)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "一对一关系" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "多对多关系" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "按下 \"Control\",或者在Mac上按 \"Command\" æ¥é€‰æ‹©å¤šä¸ªå€¼ã€‚" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "这个字段是必填项。" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "输入整数。" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "输入一个数字。" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "确认数字全长ä¸è¶…过 %s ä½ã€‚" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "确认å°æ•°ä¸è¶…过 %s ä½ã€‚" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "确认å°æ•°ç‚¹å‰ä¸è¶…过 %s ä½ã€‚" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "输入一个有效的日期。" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "输入一个有效的时间。" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "输入一个有效的日期/时间。" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "未æ交文件。请检查表å•çš„ç¼–ç ç±»åž‹ã€‚" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "没有æ交文件。" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "所æ交的是空文件。" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "ç¡®ä¿æ–‡ä»¶åä¸å¤šäºŽ %(max)d 个字符 (现在有 %(length)d 个)。" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "请æ交文件或勾选清除å¤é€‰æ¡†ï¼Œä¸¤è€…其一å³å¯ã€‚" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "请上传一张有效的图片。您所上传的文件ä¸æ˜¯å›¾ç‰‡æˆ–者是已æŸå的图片。" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "选择一个有效的选项。 %(value)s ä¸åœ¨å¯ç”¨çš„选项中。" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "输入一系列值。" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "排åº" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "删除" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "请修改%(field)sçš„é‡å¤æ•°æ®" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "请修改%(field)sçš„é‡å¤æ•°æ®.这个字段必须唯一" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"请修正%(field_name)sçš„é‡å¤æ•°æ®ã€‚%(date_field)s %(lookup)s 在 %(field_name)s " -"å¿…é¡»ä¿è¯å”¯ä¸€." - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "请修正é‡å¤çš„æ•°æ®." - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "内è”外键与父实例的主键ä¸åŒ¹é…。" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "选择一个有效的选项: 该选择ä¸åœ¨å¯ç”¨çš„选项中。" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "选择一个有效的选项: '%s' ä¸åœ¨å¯ç”¨çš„选项中。" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ä¸æ˜¯" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "ç›®å‰" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "修改" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "清除" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "未知" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "是" - -#: forms/widgets.py:548 -msgid "No" -msgstr "å¦" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "是ã€å¦ã€ä¹Ÿè®¸" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d 字节" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "åˆå¤œ" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "中åˆ" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "星期一" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "星期二" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "星期三" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "星期四" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "星期五" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "星期六" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "星期日" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "星期一" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "星期二" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "星期三" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "星期四" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "星期五" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "星期六" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "星期日" - -#: utils/dates.py:18 -msgid "January" -msgstr "一月" - -#: utils/dates.py:18 -msgid "February" -msgstr "二月" - -#: utils/dates.py:18 -msgid "March" -msgstr "三月" - -#: utils/dates.py:18 -msgid "April" -msgstr "四月" - -#: utils/dates.py:18 -msgid "May" -msgstr "五月" - -#: utils/dates.py:18 -msgid "June" -msgstr "六月" - -#: utils/dates.py:19 -msgid "July" -msgstr "七月" - -#: utils/dates.py:19 -msgid "August" -msgstr "八月" - -#: utils/dates.py:19 -msgid "September" -msgstr "ä¹æœˆ" - -#: utils/dates.py:19 -msgid "October" -msgstr "å月" - -#: utils/dates.py:19 -msgid "November" -msgstr "å一月" - -#: utils/dates.py:20 -msgid "December" -msgstr "å二月" - -#: utils/dates.py:23 -msgid "jan" -msgstr "一月" - -#: utils/dates.py:23 -msgid "feb" -msgstr "二月" - -#: utils/dates.py:23 -msgid "mar" -msgstr "三月" - -#: utils/dates.py:23 -msgid "apr" -msgstr "四月" - -#: utils/dates.py:23 -msgid "may" -msgstr "五月" - -#: utils/dates.py:23 -msgid "jun" -msgstr "六月" - -#: utils/dates.py:24 -msgid "jul" -msgstr "七月" - -#: utils/dates.py:24 -msgid "aug" -msgstr "八月" - -#: utils/dates.py:24 -msgid "sep" -msgstr "ä¹æœˆ" - -#: utils/dates.py:24 -msgid "oct" -msgstr "å月" - -#: utils/dates.py:24 -msgid "nov" -msgstr "å一月" - -#: utils/dates.py:24 -msgid "dec" -msgstr "å二月" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "一月" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "二月" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "三月" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "四月" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "五月" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "六月" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "七月" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "八月" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "ä¹æœˆ" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "å月" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "å一月" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "å二月" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "一月" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "二月" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "三月" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "四月" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "五月" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "六月" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "七月" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "八月" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "ä¹æœˆ" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "å月" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "å一月" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "å二月" - -#: utils/text.py:136 -msgid "or" -msgstr "或" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr "," - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "å¹´" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "月" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "周" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "天" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "å°æ—¶" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "分钟" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "分钟" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "Y-m-d" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "Y-m-d H:i:s" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i:s" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "Y-m" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "m-d" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s 创建æˆåŠŸã€‚" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s æ›´æ–°æˆåŠŸã€‚" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s 已被删除。" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "没有指定年" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "没有指定月" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "没有指定天" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "没有指定周" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "%(verbose_name_plural)s ä¸å­˜åœ¨" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" -"因为 %(class_name)s.allow_future 设置为 False,所以特性 %" -"(verbose_name_plural)s ä¸å¯ç”¨ã€‚" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "日期文字 '%(datestr)s' ä¸åŒ¹é…æ ¼å¼ '%(format)s'" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "没有找到符åˆæŸ¥è¯¢çš„ %(verbose_name)s" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "page ä¸ç­‰äºŽ 'last',或者它ä¸èƒ½è¢«è½¬ä¸ºæ•°å­—。" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "没有第 (%(page_number)s) 页了" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "列表是空的并且'%(class_name)s.allow_empty 设置为 False'" diff --git a/lib/python2.7/site-packages/django/conf/locale/zh_CN/__init__.py b/lib/python2.7/site-packages/django/conf/locale/zh_CN/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/zh_CN/formats.py b/lib/python2.7/site-packages/django/conf/locale/zh_CN/formats.py deleted file mode 100644 index bf26f4b31..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/zh_CN/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -# DATE_FORMAT = -# TIME_FORMAT = -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -# MONTH_DAY_FORMAT = -# SHORT_DATE_FORMAT = -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -# DECIMAL_SEPARATOR = -# THOUSAND_SEPARATOR = -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/locale/zh_TW/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/conf/locale/zh_TW/LC_MESSAGES/django.mo deleted file mode 100644 index 1ac7d584f..000000000 Binary files a/lib/python2.7/site-packages/django/conf/locale/zh_TW/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/conf/locale/zh_TW/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/conf/locale/zh_TW/LC_MESSAGES/django.po deleted file mode 100644 index fd82b559f..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/zh_TW/LC_MESSAGES/django.po +++ /dev/null @@ -1,1122 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:12-0400\n" -"PO-Revision-Date: 2011-03-04 18:40+0000\n" -"Last-Translator: tcc \n" -"Language-Team: Chinese (Taiwan) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: conf/global_settings.py:44 -msgid "Arabic" -msgstr "阿拉伯語" - -#: conf/global_settings.py:45 -msgid "Azerbaijani" -msgstr "" - -#: conf/global_settings.py:46 -msgid "Bulgarian" -msgstr "ä¿åŠ åˆ©äºžèªž" - -#: conf/global_settings.py:47 -msgid "Bengali" -msgstr "孟加拉語" - -#: conf/global_settings.py:48 -msgid "Bosnian" -msgstr "波士尼亞語" - -#: conf/global_settings.py:49 -msgid "Catalan" -msgstr "嘉泰羅尼亞語" - -#: conf/global_settings.py:50 -msgid "Czech" -msgstr "æ·å…‹èªž" - -#: conf/global_settings.py:51 -msgid "Welsh" -msgstr "å¨çˆ¾æ–¯èªž" - -#: conf/global_settings.py:52 -msgid "Danish" -msgstr "丹麥語" - -#: conf/global_settings.py:53 -msgid "German" -msgstr "德語" - -#: conf/global_settings.py:54 -msgid "Greek" -msgstr "希臘語" - -#: conf/global_settings.py:55 -msgid "English" -msgstr "英語" - -#: conf/global_settings.py:56 -msgid "British English" -msgstr "英國英語" - -#: conf/global_settings.py:57 -msgid "Spanish" -msgstr "西ç­ç‰™èªž" - -#: conf/global_settings.py:58 -msgid "Argentinian Spanish" -msgstr "阿根廷西ç­ç‰™èªž" - -#: conf/global_settings.py:59 -msgid "Mexican Spanish" -msgstr "" - -#: conf/global_settings.py:60 -msgid "Estonian" -msgstr "愛沙尼亞語" - -#: conf/global_settings.py:61 -msgid "Basque" -msgstr "巴斯克語" - -#: conf/global_settings.py:62 -msgid "Persian" -msgstr "波斯語" - -#: conf/global_settings.py:63 -msgid "Finnish" -msgstr "芬蘭語" - -#: conf/global_settings.py:64 -msgid "French" -msgstr "法語" - -#: conf/global_settings.py:65 -msgid "Frisian" -msgstr "弗里斯蘭語" - -#: conf/global_settings.py:66 -msgid "Irish" -msgstr "愛爾蘭語" - -#: conf/global_settings.py:67 -msgid "Galician" -msgstr "加里西亞語" - -#: conf/global_settings.py:68 -msgid "Hebrew" -msgstr "希伯來語" - -#: conf/global_settings.py:69 -msgid "Hindi" -msgstr "å°åº¦èªž" - -#: conf/global_settings.py:70 -msgid "Croatian" -msgstr "克羅埃西亞語" - -#: conf/global_settings.py:71 -msgid "Hungarian" -msgstr "匈牙利語" - -#: conf/global_settings.py:72 -msgid "Indonesian" -msgstr "å°å°¼èªž" - -#: conf/global_settings.py:73 -msgid "Icelandic" -msgstr "冰島語" - -#: conf/global_settings.py:74 -msgid "Italian" -msgstr "義大利語" - -#: conf/global_settings.py:75 -msgid "Japanese" -msgstr "日語" - -#: conf/global_settings.py:76 -msgid "Georgian" -msgstr "喬治亞語" - -#: conf/global_settings.py:77 -msgid "Khmer" -msgstr "高棉語" - -#: conf/global_settings.py:78 -msgid "Kannada" -msgstr "åŽé‚£é”語" - -#: conf/global_settings.py:79 -msgid "Korean" -msgstr "韓語" - -#: conf/global_settings.py:80 -msgid "Lithuanian" -msgstr "立陶宛語" - -#: conf/global_settings.py:81 -msgid "Latvian" -msgstr "拉脫維亞語" - -#: conf/global_settings.py:82 -msgid "Macedonian" -msgstr "馬其頓語" - -#: conf/global_settings.py:83 -msgid "Malayalam" -msgstr "馬來亞拉姆語" - -#: conf/global_settings.py:84 -msgid "Mongolian" -msgstr "è’™å¤èªž" - -#: conf/global_settings.py:85 -msgid "Dutch" -msgstr "è·è˜­èªž" - -#: conf/global_settings.py:86 -msgid "Norwegian" -msgstr "挪å¨èªž" - -#: conf/global_settings.py:87 -msgid "Norwegian Bokmal" -msgstr "挪å¨èªžï¼ˆæ³¢å…‹é»˜çˆ¾ï¼‰" - -#: conf/global_settings.py:88 -msgid "Norwegian Nynorsk" -msgstr "挪å¨èªžï¼ˆå°¼è«¾æ–¯å…‹ï¼‰" - -#: conf/global_settings.py:89 -msgid "Punjabi" -msgstr "æ—é®æ™®èªž" - -#: conf/global_settings.py:90 -msgid "Polish" -msgstr "波蘭嶼" - -#: conf/global_settings.py:91 -msgid "Portuguese" -msgstr "è‘¡è„牙語" - -#: conf/global_settings.py:92 -msgid "Brazilian Portuguese" -msgstr "巴西葡è„牙語" - -#: conf/global_settings.py:93 -msgid "Romanian" -msgstr "羅馬尼亞語" - -#: conf/global_settings.py:94 -msgid "Russian" -msgstr "俄語" - -#: conf/global_settings.py:95 -msgid "Slovak" -msgstr "斯洛ä¼å…‹èªž" - -#: conf/global_settings.py:96 -msgid "Slovenian" -msgstr "斯洛維尼亞語" - -#: conf/global_settings.py:97 -msgid "Albanian" -msgstr "阿爾巴尼亞語" - -#: conf/global_settings.py:98 -msgid "Serbian" -msgstr "塞爾維亞語" - -#: conf/global_settings.py:99 -msgid "Serbian Latin" -msgstr "塞爾維亞拉ä¸èªž" - -#: conf/global_settings.py:100 -msgid "Swedish" -msgstr "瑞典語" - -#: conf/global_settings.py:101 -msgid "Tamil" -msgstr "å¦ç±³çˆ¾èªž" - -#: conf/global_settings.py:102 -msgid "Telugu" -msgstr "泰盧固語" - -#: conf/global_settings.py:103 -msgid "Thai" -msgstr "泰語" - -#: conf/global_settings.py:104 -msgid "Turkish" -msgstr "土耳其語" - -#: conf/global_settings.py:105 -msgid "Ukrainian" -msgstr "çƒå…‹è˜­èªž" - -#: conf/global_settings.py:106 -msgid "Urdu" -msgstr "" - -#: conf/global_settings.py:107 -msgid "Vietnamese" -msgstr "越å—語" - -#: conf/global_settings.py:108 -msgid "Simplified Chinese" -msgstr "簡體中文" - -#: conf/global_settings.py:109 -msgid "Traditional Chinese" -msgstr "ç¹é«”中文" - -#: core/validators.py:21 forms/fields.py:67 -msgid "Enter a valid value." -msgstr "輸入有效的值" - -#: core/validators.py:89 forms/fields.py:575 -msgid "This URL appears to be a broken link." -msgstr "URL %s 似乎是是斷掉的連çµã€‚" - -#: core/validators.py:94 forms/fields.py:574 -msgid "Enter a valid URL." -msgstr "輸入有效的URL" - -#: core/validators.py:138 forms/fields.py:449 -msgid "Enter a valid e-mail address." -msgstr "輸入有效的電å­éƒµä»¶åœ°å€ã€‚" - -#: core/validators.py:141 forms/fields.py:958 -msgid "" -"Enter a valid 'slug' consisting of letters, numbers, underscores or hyphens." -msgstr "輸入一個有效的 'slug',由字æ¯ã€æ•¸å­—ã€åº•ç·šèˆ‡é€£å­—號組æˆã€‚" - -#: core/validators.py:144 forms/fields.py:951 -msgid "Enter a valid IPv4 address." -msgstr "輸入有效的 IPv4 ä½å€ã€‚" - -#: core/validators.py:147 db/models/fields/__init__.py:575 -msgid "Enter only digits separated by commas." -msgstr "輸入以逗號分隔的數字。" - -#: core/validators.py:153 -#, python-format -msgid "Ensure this value is %(limit_value)s (it is %(show_value)s)." -msgstr "確èªé€™å€‹æ˜¯å¦ç‚º %(limit_value)s (ç›®å‰æ˜¯ %(show_value)s)." - -#: core/validators.py:171 forms/fields.py:222 forms/fields.py:275 -#, python-format -msgid "Ensure this value is less than or equal to %(limit_value)s." -msgstr "確èªé€™å€‹æ•¸å€¼æ˜¯å¦å°æ–¼æˆ–等於 %(limit_value)s。" - -#: core/validators.py:176 forms/fields.py:223 forms/fields.py:276 -#, python-format -msgid "Ensure this value is greater than or equal to %(limit_value)s." -msgstr "確èªé€™å€‹æ•¸å€¼æ˜¯å¦å¤§æ–¼æˆ–等於 %(limit_value)s。" - -#: core/validators.py:182 -#, python-format -msgid "" -"Ensure this value has at least %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"請確èªé€™å€‹å…§å®¹è‡³å°‘è¦ %(limit_value)d 個字元 (ç›®å‰æœ‰ %(show_value)d 個字)。" - -#: core/validators.py:188 -#, python-format -msgid "" -"Ensure this value has at most %(limit_value)d characters (it has %" -"(show_value)d)." -msgstr "" -"請確èªé€™å€‹å…§å®¹æœ€å¤šåªèƒ½æœ‰ %(limit_value)d 個字元 (ç›®å‰æœ‰ %(show_value)d 個" -"å­—)。" - -#: db/models/base.py:769 -#, python-format -msgid "%(field_name)s must be unique for %(date_field)s %(lookup)s." -msgstr "%(date_field)s çš„ %(lookup)s 在 %(field_name)s 必須是唯一的。" - -#: db/models/base.py:784 db/models/base.py:792 -#, python-format -msgid "%(model_name)s with this %(field_label)s already exists." -msgstr "這個 %(field_label)s 在 %(model_name)s 已經存在。" - -#: db/models/base.py:791 forms/models.py:562 -msgid "and" -msgstr "å’Œ" - -#: db/models/fields/__init__.py:63 -#, python-format -msgid "Value %r is not a valid choice." -msgstr "數值 %r 並éžæ˜¯ä¸€å€‹æœ‰æ•ˆçš„é¸æ“‡" - -#: db/models/fields/__init__.py:64 -msgid "This field cannot be null." -msgstr "這個值ä¸èƒ½æ˜¯ null。" - -#: db/models/fields/__init__.py:65 -msgid "This field cannot be blank." -msgstr "這個欄ä½ä¸èƒ½ç•™ç™½" - -#: db/models/fields/__init__.py:70 -#, python-format -msgid "Field of type: %(field_type)s" -msgstr "欄ä½åž‹æ…‹ï¼š %(field_type)s" - -#: db/models/fields/__init__.py:451 db/models/fields/__init__.py:871 -#: db/models/fields/__init__.py:980 db/models/fields/__init__.py:991 -#: db/models/fields/__init__.py:1018 -msgid "Integer" -msgstr "整數" - -#: db/models/fields/__init__.py:455 db/models/fields/__init__.py:869 -msgid "This value must be an integer." -msgstr "這個值必須是整數。" - -#: db/models/fields/__init__.py:493 -msgid "This value must be either True or False." -msgstr "這個值必須是 True 或 False。" - -#: db/models/fields/__init__.py:495 -msgid "Boolean (Either True or False)" -msgstr "布林值 (True 或 False)" - -#: db/models/fields/__init__.py:542 db/models/fields/__init__.py:1001 -#, python-format -msgid "String (up to %(max_length)s)" -msgstr "字串 (最長到 %(max_length)s 個字)" - -#: db/models/fields/__init__.py:570 -msgid "Comma-separated integers" -msgstr "逗號分隔的整數" - -#: db/models/fields/__init__.py:584 -msgid "Date (without time)" -msgstr "日期 (ä¸åŒ…括時間)" - -#: db/models/fields/__init__.py:588 -msgid "Enter a valid date in YYYY-MM-DD format." -msgstr "輸入一個 YYYY-MM-DD æ ¼å¼çš„有效日期。" - -#: db/models/fields/__init__.py:589 -#, python-format -msgid "Invalid date: %s" -msgstr "無效的日期: %s" - -#: db/models/fields/__init__.py:670 -msgid "Enter a valid date/time in YYYY-MM-DD HH:MM[:ss[.uuuuuu]] format." -msgstr "輸入一個 YYYY-MM-DD HH:MM[:ss[.uuuuuu]] æ ¼å¼çš„有效日期/時間。" - -#: db/models/fields/__init__.py:672 -msgid "Date (with time)" -msgstr "日期 (包括時間)" - -#: db/models/fields/__init__.py:746 -msgid "This value must be a decimal number." -msgstr "這資料必須是å進ä½æ•¸ã€‚" - -#: db/models/fields/__init__.py:748 -msgid "Decimal number" -msgstr "å進ä½æ•¸(å°æ•¸å¯)" - -#: db/models/fields/__init__.py:803 -msgid "E-mail address" -msgstr "é›»å­éƒµä»¶åœ°å€" - -#: db/models/fields/__init__.py:818 db/models/fields/files.py:220 -#: db/models/fields/files.py:326 -msgid "File path" -msgstr "檔案路徑" - -#: db/models/fields/__init__.py:841 -msgid "This value must be a float." -msgstr "這個值必須是一個浮點數。" - -#: db/models/fields/__init__.py:843 -msgid "Floating point number" -msgstr "浮點數" - -#: db/models/fields/__init__.py:902 -msgid "Big (8 byte) integer" -msgstr "大整數(8ä½å…ƒçµ„)" - -#: db/models/fields/__init__.py:915 -msgid "IP address" -msgstr "IP ä½å€" - -#: db/models/fields/__init__.py:931 -msgid "This value must be either None, True or False." -msgstr "這個值必須是 None, True 或 False。" - -#: db/models/fields/__init__.py:933 -msgid "Boolean (Either True, False or None)" -msgstr "布林值 (True, False 或 None)" - -#: db/models/fields/__init__.py:1024 -msgid "Text" -msgstr "文字" - -#: db/models/fields/__init__.py:1040 -msgid "Time" -msgstr "時間" - -#: db/models/fields/__init__.py:1044 -msgid "Enter a valid time in HH:MM[:ss[.uuuuuu]] format." -msgstr "輸入一個 HH:MM[:ss[.uuuuuu]] æ ¼å¼çš„有效時間。" - -#: db/models/fields/__init__.py:1120 -msgid "URL" -msgstr "URL" - -#: db/models/fields/__init__.py:1136 -msgid "XML text" -msgstr "XML 文件" - -#: db/models/fields/related.py:815 -#, python-format -msgid "Model %(model)s with pk %(pk)r does not exist." -msgstr "PK 為 %(pk)r çš„ Model %(model)s ä¸å­˜åœ¨ã€‚" - -#: db/models/fields/related.py:817 -msgid "Foreign Key (type determined by related field)" -msgstr "å¤–éµ (型態由關連欄ä½æ±ºå®š)" - -#: db/models/fields/related.py:941 -msgid "One-to-one relationship" -msgstr "一å°ä¸€é—œé€£" - -#: db/models/fields/related.py:1003 -msgid "Many-to-many relationship" -msgstr "多å°å¤šé—œé€£" - -#: db/models/fields/related.py:1023 -msgid "" -"Hold down \"Control\", or \"Command\" on a Mac, to select more than one." -msgstr "æŒ‰ä½ \"Control\", 或者在 Mac 上按 \"Command\", 以é¸å–更多值" - -#: forms/fields.py:66 -msgid "This field is required." -msgstr "這個欄ä½æ˜¯å¿…須的。" - -#: forms/fields.py:221 -msgid "Enter a whole number." -msgstr "輸入整數" - -#: forms/fields.py:253 forms/fields.py:274 -msgid "Enter a number." -msgstr "輸入一個數字" - -#: forms/fields.py:277 -#, python-format -msgid "Ensure that there are no more than %s digits in total." -msgstr "確èªæ•¸å­—全長ä¸è¶…éŽ %s ä½ã€‚" - -#: forms/fields.py:278 -#, python-format -msgid "Ensure that there are no more than %s decimal places." -msgstr "確èªæƒ³å°æ•¸ä¸è¶…éŽ %s ä½ã€‚" - -#: forms/fields.py:279 -#, python-format -msgid "Ensure that there are no more than %s digits before the decimal point." -msgstr "確èªæƒ³å°æ•¸é»žå‰ä¸è¶…éŽ %s ä½ã€‚" - -#: forms/fields.py:342 forms/fields.py:918 -msgid "Enter a valid date." -msgstr "輸入有效的日期" - -#: forms/fields.py:370 forms/fields.py:919 -msgid "Enter a valid time." -msgstr "輸入有效的時間" - -#: forms/fields.py:396 -msgid "Enter a valid date/time." -msgstr "輸入有效的日期/時間" - -#: forms/fields.py:460 -msgid "No file was submitted. Check the encoding type on the form." -msgstr "沒有檔案被é€å‡ºã€‚請檢查表單的編碼類型。" - -#: forms/fields.py:461 -msgid "No file was submitted." -msgstr "沒有檔案é€å‡º" - -#: forms/fields.py:462 -msgid "The submitted file is empty." -msgstr "é€å‡ºçš„檔案是空的。" - -#: forms/fields.py:463 -#, python-format -msgid "" -"Ensure this filename has at most %(max)d characters (it has %(length)d)." -msgstr "請確èªé€™å€‹æª”å最多åªèƒ½æœ‰ %(max)d 個字元 (它ç¾åœ¨æ˜¯ %(length)d 個字)。" - -#: forms/fields.py:464 -msgid "Please either submit a file or check the clear checkbox, not both." -msgstr "è«‹æ交一個檔案或確èªæ¸…除核å¯é …, ä¸èƒ½å…©è€…都åšã€‚" - -#: forms/fields.py:518 -msgid "" -"Upload a valid image. The file you uploaded was either not an image or a " -"corrupted image." -msgstr "上傳一個有效的圖片。你上傳的檔案ä¸æ˜¯åœ–片,å¦å‰‡å°±æ˜¯å£žæŽ‰çš„圖。" - -#: forms/fields.py:650 forms/fields.py:725 -#, python-format -msgid "Select a valid choice. %(value)s is not one of the available choices." -msgstr "è«‹é¸æ“‡æœ‰æ•ˆçš„é …ç›®, %(value)s ä¸æ˜¯ä¸€å€‹å¯ç”¨çš„é¸æ“‡ã€‚" - -#: forms/fields.py:726 forms/fields.py:814 forms/models.py:985 -msgid "Enter a list of values." -msgstr "輸入一個列表的值" - -#: forms/formsets.py:305 forms/formsets.py:307 -msgid "Order" -msgstr "排åº" - -#: forms/formsets.py:309 -msgid "Delete" -msgstr "刪除" - -#: forms/models.py:556 -#, python-format -msgid "Please correct the duplicate data for %(field)s." -msgstr "請修正 %(field)s çš„é‡è¦†è³‡æ–™" - -#: forms/models.py:560 -#, python-format -msgid "Please correct the duplicate data for %(field)s, which must be unique." -msgstr "請修正 %(field)s çš„é‡è¦†è³‡æ–™, 必須為唯一值" - -#: forms/models.py:566 -#, python-format -msgid "" -"Please correct the duplicate data for %(field_name)s which must be unique " -"for the %(lookup)s in %(date_field)s." -msgstr "" -"請修正 %(field_name)s é‡è¤‡è³‡æ–™, %(date_field)s çš„ %(lookup)s 必須是唯一值。" - -#: forms/models.py:574 -msgid "Please correct the duplicate values below." -msgstr "請修正下方é‡è¦†çš„數值" - -#: forms/models.py:835 -msgid "The inline foreign key did not match the parent instance primary key." -msgstr "å…§å«çš„外éµç„¡æ³•é€£æŽ¥åˆ°å°æ‡‰çš„上層實體主éµã€‚" - -#: forms/models.py:896 -msgid "Select a valid choice. That choice is not one of the available choices." -msgstr "é¸æ“‡æœ‰æ•ˆçš„é¸é …: æ­¤é¸æ“‡ä¸åœ¨å¯ç”¨çš„é¸é …中。" - -#: forms/models.py:986 -#, python-format -msgid "Select a valid choice. %s is not one of the available choices." -msgstr "é¸æ“‡ä¸€å€‹æœ‰æ•ˆçš„é¸é …: '%s' ä¸åœ¨å¯ç”¨çš„é¸é …中。" - -#: forms/models.py:988 -#, python-format -msgid "\"%s\" is not a valid value for a primary key." -msgstr "\"%s\" ä¸æ˜¯ä¸€å€‹ä¸»éµçš„有效資料。" - -#: forms/widgets.py:299 -msgid "Currently" -msgstr "ç›®å‰" - -#: forms/widgets.py:300 -msgid "Change" -msgstr "變更" - -#: forms/widgets.py:301 -msgid "Clear" -msgstr "清除" - -#: forms/widgets.py:548 -msgid "Unknown" -msgstr "未知" - -#: forms/widgets.py:548 -msgid "Yes" -msgstr "是" - -#: forms/widgets.py:548 -msgid "No" -msgstr "å¦" - -#: template/defaultfilters.py:777 -msgid "yes,no,maybe" -msgstr "是ã€å¦ã€ä¹Ÿè¨±" - -#: template/defaultfilters.py:805 template/defaultfilters.py:810 -#, python-format -msgid "%(size)d byte" -msgid_plural "%(size)d bytes" -msgstr[0] "%(size)d ä½å…ƒçµ„" - -#: template/defaultfilters.py:812 -#, python-format -msgid "%s KB" -msgstr "%s KB" - -#: template/defaultfilters.py:814 -#, python-format -msgid "%s MB" -msgstr "%s MB" - -#: template/defaultfilters.py:816 -#, python-format -msgid "%s GB" -msgstr "%s GB" - -#: template/defaultfilters.py:818 -#, python-format -msgid "%s TB" -msgstr "%s TB" - -#: template/defaultfilters.py:819 -#, python-format -msgid "%s PB" -msgstr "%s PB" - -#: utils/dateformat.py:42 -msgid "p.m." -msgstr "p.m." - -#: utils/dateformat.py:43 -msgid "a.m." -msgstr "a.m." - -#: utils/dateformat.py:48 -msgid "PM" -msgstr "PM" - -#: utils/dateformat.py:49 -msgid "AM" -msgstr "AM" - -#: utils/dateformat.py:98 -msgid "midnight" -msgstr "åˆå¤œ" - -#: utils/dateformat.py:100 -msgid "noon" -msgstr "中åˆ" - -#: utils/dates.py:6 -msgid "Monday" -msgstr "星期一" - -#: utils/dates.py:6 -msgid "Tuesday" -msgstr "星期二" - -#: utils/dates.py:6 -msgid "Wednesday" -msgstr "星期三" - -#: utils/dates.py:6 -msgid "Thursday" -msgstr "星期四" - -#: utils/dates.py:6 -msgid "Friday" -msgstr "星期五" - -#: utils/dates.py:7 -msgid "Saturday" -msgstr "星期六" - -#: utils/dates.py:7 -msgid "Sunday" -msgstr "星期日" - -#: utils/dates.py:10 -msgid "Mon" -msgstr "星期一" - -#: utils/dates.py:10 -msgid "Tue" -msgstr "星期二" - -#: utils/dates.py:10 -msgid "Wed" -msgstr "星期三" - -#: utils/dates.py:10 -msgid "Thu" -msgstr "星期四" - -#: utils/dates.py:10 -msgid "Fri" -msgstr "星期五" - -#: utils/dates.py:11 -msgid "Sat" -msgstr "星期六" - -#: utils/dates.py:11 -msgid "Sun" -msgstr "星期日" - -#: utils/dates.py:18 -msgid "January" -msgstr "一月" - -#: utils/dates.py:18 -msgid "February" -msgstr "二月" - -#: utils/dates.py:18 -msgid "March" -msgstr "三月" - -#: utils/dates.py:18 -msgid "April" -msgstr "四月" - -#: utils/dates.py:18 -msgid "May" -msgstr "五月" - -#: utils/dates.py:18 -msgid "June" -msgstr "六月" - -#: utils/dates.py:19 -msgid "July" -msgstr "七月" - -#: utils/dates.py:19 -msgid "August" -msgstr "八月" - -#: utils/dates.py:19 -msgid "September" -msgstr "ä¹æœˆ" - -#: utils/dates.py:19 -msgid "October" -msgstr "å月" - -#: utils/dates.py:19 -msgid "November" -msgstr "å一月" - -#: utils/dates.py:20 -msgid "December" -msgstr "å二月" - -#: utils/dates.py:23 -msgid "jan" -msgstr "一月" - -#: utils/dates.py:23 -msgid "feb" -msgstr "二月" - -#: utils/dates.py:23 -msgid "mar" -msgstr "三月" - -#: utils/dates.py:23 -msgid "apr" -msgstr "四月" - -#: utils/dates.py:23 -msgid "may" -msgstr "五月" - -#: utils/dates.py:23 -msgid "jun" -msgstr "六月" - -#: utils/dates.py:24 -msgid "jul" -msgstr "七月" - -#: utils/dates.py:24 -msgid "aug" -msgstr "八月" - -#: utils/dates.py:24 -msgid "sep" -msgstr "ä¹æœˆ" - -#: utils/dates.py:24 -msgid "oct" -msgstr "å月" - -#: utils/dates.py:24 -msgid "nov" -msgstr "å一月" - -#: utils/dates.py:24 -msgid "dec" -msgstr "å二月" - -#: utils/dates.py:31 -msgctxt "abbrev. month" -msgid "Jan." -msgstr "一月" - -#: utils/dates.py:32 -msgctxt "abbrev. month" -msgid "Feb." -msgstr "二月" - -#: utils/dates.py:33 -msgctxt "abbrev. month" -msgid "March" -msgstr "三月" - -#: utils/dates.py:34 -msgctxt "abbrev. month" -msgid "April" -msgstr "四月" - -#: utils/dates.py:35 -msgctxt "abbrev. month" -msgid "May" -msgstr "五月" - -#: utils/dates.py:36 -msgctxt "abbrev. month" -msgid "June" -msgstr "六月" - -#: utils/dates.py:37 -msgctxt "abbrev. month" -msgid "July" -msgstr "七月" - -#: utils/dates.py:38 -msgctxt "abbrev. month" -msgid "Aug." -msgstr "八月" - -#: utils/dates.py:39 -msgctxt "abbrev. month" -msgid "Sept." -msgstr "ä¹æœˆ" - -#: utils/dates.py:40 -msgctxt "abbrev. month" -msgid "Oct." -msgstr "å月" - -#: utils/dates.py:41 -msgctxt "abbrev. month" -msgid "Nov." -msgstr "å一月" - -#: utils/dates.py:42 -msgctxt "abbrev. month" -msgid "Dec." -msgstr "å二月" - -#: utils/dates.py:45 -msgctxt "alt. month" -msgid "January" -msgstr "一月" - -#: utils/dates.py:46 -msgctxt "alt. month" -msgid "February" -msgstr "二月" - -#: utils/dates.py:47 -msgctxt "alt. month" -msgid "March" -msgstr "三月" - -#: utils/dates.py:48 -msgctxt "alt. month" -msgid "April" -msgstr "四月" - -#: utils/dates.py:49 -msgctxt "alt. month" -msgid "May" -msgstr "五月" - -#: utils/dates.py:50 -msgctxt "alt. month" -msgid "June" -msgstr "六月" - -#: utils/dates.py:51 -msgctxt "alt. month" -msgid "July" -msgstr "七月" - -#: utils/dates.py:52 -msgctxt "alt. month" -msgid "August" -msgstr "八月" - -#: utils/dates.py:53 -msgctxt "alt. month" -msgid "September" -msgstr "ä¹æœˆ" - -#: utils/dates.py:54 -msgctxt "alt. month" -msgid "October" -msgstr "å月" - -#: utils/dates.py:55 -msgctxt "alt. month" -msgid "November" -msgstr "å一月" - -#: utils/dates.py:56 -msgctxt "alt. month" -msgid "December" -msgstr "å二月" - -#: utils/text.py:136 -msgid "or" -msgstr "或" - -#. Translators: This string is used as a separator between list elements -#: utils/text.py:153 -msgid ", " -msgstr ", " - -#: utils/timesince.py:21 -msgid "year" -msgid_plural "years" -msgstr[0] "å¹´" - -#: utils/timesince.py:22 -msgid "month" -msgid_plural "months" -msgstr[0] "月" - -#: utils/timesince.py:23 -msgid "week" -msgid_plural "weeks" -msgstr[0] "週" - -#: utils/timesince.py:24 -msgid "day" -msgid_plural "days" -msgstr[0] "天" - -#: utils/timesince.py:25 -msgid "hour" -msgid_plural "hours" -msgstr[0] "å°æ™‚" - -#: utils/timesince.py:26 -msgid "minute" -msgid_plural "minutes" -msgstr[0] "分é˜" - -#: utils/timesince.py:45 -msgid "minutes" -msgstr "分é˜" - -#: utils/timesince.py:50 -#, python-format -msgid "%(number)d %(type)s" -msgstr "%(number)d %(type)s" - -#: utils/timesince.py:56 -#, python-format -msgid ", %(number)d %(type)s" -msgstr ", %(number)d %(type)s" - -#: utils/translation/trans_real.py:568 -msgid "DATE_FORMAT" -msgstr "Y-m-d" - -#: utils/translation/trans_real.py:569 -msgid "DATETIME_FORMAT" -msgstr "Y-m-d H:i:s" - -#: utils/translation/trans_real.py:570 -msgid "TIME_FORMAT" -msgstr "H:i:s" - -#: utils/translation/trans_real.py:591 -msgid "YEAR_MONTH_FORMAT" -msgstr "Y-m" - -#: utils/translation/trans_real.py:592 -msgid "MONTH_DAY_FORMAT" -msgstr "m-d" - -#: views/generic/create_update.py:121 -#, python-format -msgid "The %(verbose_name)s was created successfully." -msgstr "%(verbose_name)s 新增æˆåŠŸã€‚" - -#: views/generic/create_update.py:164 -#, python-format -msgid "The %(verbose_name)s was updated successfully." -msgstr "%(verbose_name)s 變更æˆåŠŸã€‚" - -#: views/generic/create_update.py:207 -#, python-format -msgid "The %(verbose_name)s was deleted." -msgstr "%(verbose_name)s 已被刪除。" - -#: views/generic/dates.py:33 -msgid "No year specified" -msgstr "" - -#: views/generic/dates.py:58 -msgid "No month specified" -msgstr "" - -#: views/generic/dates.py:99 -msgid "No day specified" -msgstr "" - -#: views/generic/dates.py:138 -msgid "No week specified" -msgstr "" - -#: views/generic/dates.py:198 views/generic/dates.py:214 -#, python-format -msgid "No %(verbose_name_plural)s available" -msgstr "" - -#: views/generic/dates.py:466 -#, python-format -msgid "" -"Future %(verbose_name_plural)s not available because %(class_name)s." -"allow_future is False." -msgstr "" - -#: views/generic/dates.py:500 -#, python-format -msgid "Invalid date string '%(datestr)s' given format '%(format)s'" -msgstr "" - -#: views/generic/detail.py:51 -#, python-format -msgid "No %(verbose_name)s found matching the query" -msgstr "" - -#: views/generic/list.py:47 -msgid "Page is not 'last', nor can it be converted to an int." -msgstr "" - -#: views/generic/list.py:52 -#, python-format -msgid "Invalid page (%(page_number)s)" -msgstr "" - -#: views/generic/list.py:119 -#, python-format -msgid "Empty list and '%(class_name)s.allow_empty' is False." -msgstr "" diff --git a/lib/python2.7/site-packages/django/conf/locale/zh_TW/__init__.py b/lib/python2.7/site-packages/django/conf/locale/zh_TW/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/locale/zh_TW/formats.py b/lib/python2.7/site-packages/django/conf/locale/zh_TW/formats.py deleted file mode 100644 index bf26f4b31..000000000 --- a/lib/python2.7/site-packages/django/conf/locale/zh_TW/formats.py +++ /dev/null @@ -1,23 +0,0 @@ -# -*- encoding: utf-8 -*- -# This file is distributed under the same license as the Django package. -# - -# The *_FORMAT strings use the Django date format syntax, -# see http://docs.djangoproject.com/en/dev/ref/templates/builtins/#date -# DATE_FORMAT = -# TIME_FORMAT = -# DATETIME_FORMAT = -# YEAR_MONTH_FORMAT = -# MONTH_DAY_FORMAT = -# SHORT_DATE_FORMAT = -# SHORT_DATETIME_FORMAT = -# FIRST_DAY_OF_WEEK = - -# The *_INPUT_FORMATS strings use the Python strftime format syntax, -# see http://docs.python.org/library/datetime.html#strftime-strptime-behavior -# DATE_INPUT_FORMATS = -# TIME_INPUT_FORMATS = -# DATETIME_INPUT_FORMATS = -# DECIMAL_SEPARATOR = -# THOUSAND_SEPARATOR = -# NUMBER_GROUPING = diff --git a/lib/python2.7/site-packages/django/conf/project_template/__init__.py b/lib/python2.7/site-packages/django/conf/project_template/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/project_template/manage.py b/lib/python2.7/site-packages/django/conf/project_template/manage.py deleted file mode 100644 index 3e4eedc9f..000000000 --- a/lib/python2.7/site-packages/django/conf/project_template/manage.py +++ /dev/null @@ -1,14 +0,0 @@ -#!/usr/bin/env python -from django.core.management import execute_manager -import imp -try: - imp.find_module('settings') # Assumed to be in the same directory. -except ImportError: - import sys - sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n" % __file__) - sys.exit(1) - -import settings - -if __name__ == "__main__": - execute_manager(settings) diff --git a/lib/python2.7/site-packages/django/conf/project_template/settings.py b/lib/python2.7/site-packages/django/conf/project_template/settings.py deleted file mode 100644 index 9d05ac2c8..000000000 --- a/lib/python2.7/site-packages/django/conf/project_template/settings.py +++ /dev/null @@ -1,145 +0,0 @@ -# Django settings for {{ project_name }} project. - -DEBUG = True -TEMPLATE_DEBUG = DEBUG - -ADMINS = ( - # ('Your Name', 'your_email@example.com'), -) - -MANAGERS = ADMINS - -DATABASES = { - 'default': { - 'ENGINE': 'django.db.backends.', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. - 'NAME': '', # Or path to database file if using sqlite3. - 'USER': '', # Not used with sqlite3. - 'PASSWORD': '', # Not used with sqlite3. - 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. - 'PORT': '', # Set to empty string for default. Not used with sqlite3. - } -} - -# Local time zone for this installation. Choices can be found here: -# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name -# although not all choices may be available on all operating systems. -# On Unix systems, a value of None will cause Django to use the same -# timezone as the operating system. -# If running in a Windows environment this must be set to the same as your -# system time zone. -TIME_ZONE = 'America/Chicago' - -# Language code for this installation. All choices can be found here: -# http://www.i18nguy.com/unicode/language-identifiers.html -LANGUAGE_CODE = 'en-us' - -SITE_ID = 1 - -# If you set this to False, Django will make some optimizations so as not -# to load the internationalization machinery. -USE_I18N = True - -# If you set this to False, Django will not format dates, numbers and -# calendars according to the current locale -USE_L10N = True - -# Absolute filesystem path to the directory that will hold user-uploaded files. -# Example: "/home/media/media.lawrence.com/media/" -MEDIA_ROOT = '' - -# URL that handles the media served from MEDIA_ROOT. Make sure to use a -# trailing slash. -# Examples: "http://media.lawrence.com/media/", "http://example.com/media/" -MEDIA_URL = '' - -# Absolute path to the directory static files should be collected to. -# Don't put anything in this directory yourself; store your static files -# in apps' "static/" subdirectories and in STATICFILES_DIRS. -# Example: "/home/media/media.lawrence.com/static/" -STATIC_ROOT = '' - -# URL prefix for static files. -# Example: "http://media.lawrence.com/static/" -STATIC_URL = '/static/' - -# URL prefix for admin static files -- CSS, JavaScript and images. -# Make sure to use a trailing slash. -# Examples: "http://foo.com/static/admin/", "/static/admin/". -ADMIN_MEDIA_PREFIX = '/static/admin/' - -# Additional locations of static files -STATICFILES_DIRS = ( - # Put strings here, like "/home/html/static" or "C:/www/django/static". - # Always use forward slashes, even on Windows. - # Don't forget to use absolute paths, not relative paths. -) - -# List of finder classes that know how to find static files in -# various locations. -STATICFILES_FINDERS = ( - 'django.contrib.staticfiles.finders.FileSystemFinder', - 'django.contrib.staticfiles.finders.AppDirectoriesFinder', -# 'django.contrib.staticfiles.finders.DefaultStorageFinder', -) - -# Make this unique, and don't share it with anybody. -SECRET_KEY = '' - -# List of callables that know how to import templates from various sources. -TEMPLATE_LOADERS = ( - 'django.template.loaders.filesystem.Loader', - 'django.template.loaders.app_directories.Loader', -# 'django.template.loaders.eggs.Loader', -) - -MIDDLEWARE_CLASSES = ( - 'django.middleware.common.CommonMiddleware', - 'django.contrib.sessions.middleware.SessionMiddleware', - 'django.middleware.csrf.CsrfViewMiddleware', - 'django.contrib.auth.middleware.AuthenticationMiddleware', - 'django.contrib.messages.middleware.MessageMiddleware', -) - -ROOT_URLCONF = '{{ project_name }}.urls' - -TEMPLATE_DIRS = ( - # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". - # Always use forward slashes, even on Windows. - # Don't forget to use absolute paths, not relative paths. -) - -INSTALLED_APPS = ( - 'django.contrib.auth', - 'django.contrib.contenttypes', - 'django.contrib.sessions', - 'django.contrib.sites', - 'django.contrib.messages', - 'django.contrib.staticfiles', - # Uncomment the next line to enable the admin: - # 'django.contrib.admin', - # Uncomment the next line to enable admin documentation: - # 'django.contrib.admindocs', -) - -# A sample logging configuration. The only tangible logging -# performed by this configuration is to send an email to -# the site admins on every HTTP 500 error. -# See http://docs.djangoproject.com/en/dev/topics/logging for -# more details on how to customize your logging configuration. -LOGGING = { - 'version': 1, - 'disable_existing_loggers': False, - 'handlers': { - 'mail_admins': { - 'level': 'ERROR', - 'class': 'django.utils.log.AdminEmailHandler' - } - }, - 'loggers': { - 'django.request': { - 'handlers': ['mail_admins'], - 'level': 'ERROR', - 'propagate': True, - }, - } -} diff --git a/lib/python2.7/site-packages/django/conf/project_template/urls.py b/lib/python2.7/site-packages/django/conf/project_template/urls.py deleted file mode 100644 index 0ce1ffb98..000000000 --- a/lib/python2.7/site-packages/django/conf/project_template/urls.py +++ /dev/null @@ -1,17 +0,0 @@ -from django.conf.urls.defaults import patterns, include, url - -# Uncomment the next two lines to enable the admin: -# from django.contrib import admin -# admin.autodiscover() - -urlpatterns = patterns('', - # Examples: - # url(r'^$', '{{ project_name }}.views.home', name='home'), - # url(r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')), - - # Uncomment the admin/doc line below to enable admin documentation: - # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), - - # Uncomment the next line to enable the admin: - # url(r'^admin/', include(admin.site.urls)), -) diff --git a/lib/python2.7/site-packages/django/conf/urls/__init__.py b/lib/python2.7/site-packages/django/conf/urls/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/conf/urls/defaults.py b/lib/python2.7/site-packages/django/conf/urls/defaults.py deleted file mode 100644 index 3ab8bab3e..000000000 --- a/lib/python2.7/site-packages/django/conf/urls/defaults.py +++ /dev/null @@ -1,42 +0,0 @@ -from django.core.urlresolvers import RegexURLPattern, RegexURLResolver -from django.core.exceptions import ImproperlyConfigured - -__all__ = ['handler404', 'handler500', 'include', 'patterns', 'url'] - -handler404 = 'django.views.defaults.page_not_found' -handler500 = 'django.views.defaults.server_error' - -def include(arg, namespace=None, app_name=None): - if isinstance(arg, tuple): - # callable returning a namespace hint - if namespace: - raise ImproperlyConfigured('Cannot override the namespace for a dynamic module that provides a namespace') - urlconf_module, app_name, namespace = arg - else: - # No namespace hint - use manually provided namespace - urlconf_module = arg - return (urlconf_module, app_name, namespace) - -def patterns(prefix, *args): - pattern_list = [] - for t in args: - if isinstance(t, (list, tuple)): - t = url(prefix=prefix, *t) - elif isinstance(t, RegexURLPattern): - t.add_prefix(prefix) - pattern_list.append(t) - return pattern_list - -def url(regex, view, kwargs=None, name=None, prefix=''): - if isinstance(view, (list,tuple)): - # For include(...) processing. - urlconf_module, app_name, namespace = view - return RegexURLResolver(regex, urlconf_module, kwargs, app_name=app_name, namespace=namespace) - else: - if isinstance(view, basestring): - if not view: - raise ImproperlyConfigured('Empty URL pattern view name not permitted (for pattern %r)' % regex) - if prefix: - view = prefix + '.' + view - return RegexURLPattern(regex, view, kwargs, name) - diff --git a/lib/python2.7/site-packages/django/conf/urls/i18n.py b/lib/python2.7/site-packages/django/conf/urls/i18n.py deleted file mode 100644 index 00e2d6017..000000000 --- a/lib/python2.7/site-packages/django/conf/urls/i18n.py +++ /dev/null @@ -1,5 +0,0 @@ -from django.conf.urls.defaults import * - -urlpatterns = patterns('', - (r'^setlang/$', 'django.views.i18n.set_language'), -) diff --git a/lib/python2.7/site-packages/django/conf/urls/shortcut.py b/lib/python2.7/site-packages/django/conf/urls/shortcut.py deleted file mode 100644 index 135f3be84..000000000 --- a/lib/python2.7/site-packages/django/conf/urls/shortcut.py +++ /dev/null @@ -1,5 +0,0 @@ -from django.conf.urls.defaults import * - -urlpatterns = patterns('django.views', - (r'^(?P\d+)/(?P.*)/$', 'defaults.shortcut'), -) diff --git a/lib/python2.7/site-packages/django/conf/urls/static.py b/lib/python2.7/site-packages/django/conf/urls/static.py deleted file mode 100644 index 8be564ec7..000000000 --- a/lib/python2.7/site-packages/django/conf/urls/static.py +++ /dev/null @@ -1,25 +0,0 @@ -import re -from django.conf import settings -from django.conf.urls.defaults import patterns, url -from django.core.exceptions import ImproperlyConfigured - -def static(prefix, view='django.views.static.serve', **kwargs): - """ - Helper function to return a URL pattern for serving files in debug mode. - - from django.conf import settings - from django.conf.urls.static import static - - urlpatterns = patterns('', - # ... the rest of your URLconf goes here ... - ) + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT) - - """ - # No-op if not in debug mode or an non-local prefix - if not settings.DEBUG or (prefix and '://' in prefix): - return [] - elif not prefix: - raise ImproperlyConfigured("Empty static prefix not permitted") - return patterns('', - url(r'^%s(?P.*)$' % re.escape(prefix.lstrip('/')), view, kwargs=kwargs), - ) diff --git a/lib/python2.7/site-packages/django/contrib/__init__.py b/lib/python2.7/site-packages/django/contrib/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/contrib/admin/__init__.py b/lib/python2.7/site-packages/django/contrib/admin/__init__.py deleted file mode 100644 index f8e634e6a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/__init__.py +++ /dev/null @@ -1,38 +0,0 @@ -# ACTION_CHECKBOX_NAME is unused, but should stay since its import from here -# has been referenced in documentation. -from django.contrib.admin.helpers import ACTION_CHECKBOX_NAME -from django.contrib.admin.options import ModelAdmin, HORIZONTAL, VERTICAL -from django.contrib.admin.options import StackedInline, TabularInline -from django.contrib.admin.sites import AdminSite, site - - -def autodiscover(): - """ - Auto-discover INSTALLED_APPS admin.py modules and fail silently when - not present. This forces an import on them to register any admin bits they - may want. - """ - - import copy - from django.conf import settings - from django.utils.importlib import import_module - from django.utils.module_loading import module_has_submodule - - for app in settings.INSTALLED_APPS: - mod = import_module(app) - # Attempt to import the app's admin module. - try: - before_import_registry = copy.copy(site._registry) - import_module('%s.admin' % app) - except: - # Reset the model registry to the state before the last import as - # this import will have to reoccur on the next request and this - # could raise NotRegistered and AlreadyRegistered exceptions - # (see #8245). - site._registry = before_import_registry - - # Decide whether to bubble up this error. If the app just - # doesn't have an admin module, we can ignore the error - # attempting to import it, otherwise we want it to bubble up. - if module_has_submodule(mod, 'admin'): - raise diff --git a/lib/python2.7/site-packages/django/contrib/admin/actions.py b/lib/python2.7/site-packages/django/contrib/admin/actions.py deleted file mode 100644 index c68184a76..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/actions.py +++ /dev/null @@ -1,85 +0,0 @@ -""" -Built-in, globally-available admin actions. -""" - -from django import template -from django.core.exceptions import PermissionDenied -from django.contrib.admin import helpers -from django.contrib.admin.util import get_deleted_objects, model_ngettext -from django.db import router -from django.shortcuts import render_to_response -from django.utils.encoding import force_unicode -from django.utils.translation import ugettext_lazy, ugettext as _ - -def delete_selected(modeladmin, request, queryset): - """ - Default action which deletes the selected objects. - - This action first displays a confirmation page whichs shows all the - deleteable objects, or, if the user has no permission one of the related - childs (foreignkeys), a "permission denied" message. - - Next, it delets all selected objects and redirects back to the change list. - """ - opts = modeladmin.model._meta - app_label = opts.app_label - - # Check that the user has delete permission for the actual model - if not modeladmin.has_delete_permission(request): - raise PermissionDenied - - using = router.db_for_write(modeladmin.model) - - # Populate deletable_objects, a data structure of all related objects that - # will also be deleted. - deletable_objects, perms_needed, protected = get_deleted_objects( - queryset, opts, request.user, modeladmin.admin_site, using) - - # The user has already confirmed the deletion. - # Do the deletion and return a None to display the change list view again. - if request.POST.get('post'): - if perms_needed: - raise PermissionDenied - n = queryset.count() - if n: - for obj in queryset: - obj_display = force_unicode(obj) - modeladmin.log_deletion(request, obj, obj_display) - queryset.delete() - modeladmin.message_user(request, _("Successfully deleted %(count)d %(items)s.") % { - "count": n, "items": model_ngettext(modeladmin.opts, n) - }) - # Return None to display the change list page again. - return None - - if len(queryset) == 1: - objects_name = force_unicode(opts.verbose_name) - else: - objects_name = force_unicode(opts.verbose_name_plural) - - if perms_needed or protected: - title = _("Cannot delete %(name)s") % {"name": objects_name} - else: - title = _("Are you sure?") - - context = { - "title": title, - "objects_name": objects_name, - "deletable_objects": [deletable_objects], - 'queryset': queryset, - "perms_lacking": perms_needed, - "protected": protected, - "opts": opts, - "root_path": modeladmin.admin_site.root_path, - "app_label": app_label, - 'action_checkbox_name': helpers.ACTION_CHECKBOX_NAME, - } - - # Display the confirmation page - return render_to_response(modeladmin.delete_selected_confirmation_template or [ - "admin/%s/%s/delete_selected_confirmation.html" % (app_label, opts.object_name.lower()), - "admin/%s/delete_selected_confirmation.html" % app_label, - "admin/delete_selected_confirmation.html" - ], context, context_instance=template.RequestContext(request)) - -delete_selected.short_description = ugettext_lazy("Delete selected %(verbose_name_plural)s") diff --git a/lib/python2.7/site-packages/django/contrib/admin/filterspecs.py b/lib/python2.7/site-packages/django/contrib/admin/filterspecs.py deleted file mode 100644 index 05f6b1ad5..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/filterspecs.py +++ /dev/null @@ -1,282 +0,0 @@ -""" -FilterSpec encapsulates the logic for displaying filters in the Django admin. -Filters are specified in models with the "list_filter" option. - -Each filter subclass knows how to display a filter for a field that passes a -certain test -- e.g. being a DateField or ForeignKey. -""" - -from django.db import models -from django.utils.encoding import smart_unicode, iri_to_uri -from django.utils.translation import ugettext as _ -from django.utils.html import escape -from django.utils.safestring import mark_safe -from django.contrib.admin.util import get_model_from_relation, \ - reverse_field_path, get_limit_choices_to_from_path -import datetime - -class FilterSpec(object): - filter_specs = [] - def __init__(self, f, request, params, model, model_admin, - field_path=None): - self.field = f - self.params = params - self.field_path = field_path - if field_path is None: - if isinstance(f, models.related.RelatedObject): - self.field_path = f.var_name - else: - self.field_path = f.name - - def register(cls, test, factory): - cls.filter_specs.append((test, factory)) - register = classmethod(register) - - def create(cls, f, request, params, model, model_admin, field_path=None): - for test, factory in cls.filter_specs: - if test(f): - return factory(f, request, params, model, model_admin, - field_path=field_path) - create = classmethod(create) - - def has_output(self): - return True - - def choices(self, cl): - raise NotImplementedError() - - def title(self): - return self.field.verbose_name - - def output(self, cl): - t = [] - if self.has_output(): - t.append(_(u'

By %s:

\n
    \n') % escape(self.title())) - - for choice in self.choices(cl): - t.append(u'%s\n' % \ - ((choice['selected'] and ' class="selected"' or ''), - iri_to_uri(choice['query_string']), - choice['display'])) - t.append('
\n\n') - return mark_safe("".join(t)) - -class RelatedFilterSpec(FilterSpec): - def __init__(self, f, request, params, model, model_admin, - field_path=None): - super(RelatedFilterSpec, self).__init__( - f, request, params, model, model_admin, field_path=field_path) - - other_model = get_model_from_relation(f) - if isinstance(f, (models.ManyToManyField, - models.related.RelatedObject)): - # no direct field on this model, get name from other model - self.lookup_title = other_model._meta.verbose_name - else: - self.lookup_title = f.verbose_name # use field name - if hasattr(f, 'rel'): - rel_name = f.rel.get_related_field().name - else: - rel_name = other_model._meta.pk.name - self.lookup_kwarg = '%s__%s__exact' % (self.field_path, rel_name) - self.lookup_kwarg_isnull = '%s__isnull' % self.field_path - self.lookup_val = request.GET.get(self.lookup_kwarg, None) - self.lookup_val_isnull = request.GET.get( - self.lookup_kwarg_isnull, None) - self.lookup_choices = f.get_choices(include_blank=False) - - def has_output(self): - if isinstance(self.field, models.related.RelatedObject) \ - and self.field.field.null or hasattr(self.field, 'rel') \ - and self.field.null: - extra = 1 - else: - extra = 0 - return len(self.lookup_choices) + extra > 1 - - def title(self): - return self.lookup_title - - def choices(self, cl): - from django.contrib.admin.views.main import EMPTY_CHANGELIST_VALUE - yield {'selected': self.lookup_val is None - and not self.lookup_val_isnull, - 'query_string': cl.get_query_string( - {}, - [self.lookup_kwarg, self.lookup_kwarg_isnull]), - 'display': _('All')} - for pk_val, val in self.lookup_choices: - yield {'selected': self.lookup_val == smart_unicode(pk_val), - 'query_string': cl.get_query_string( - {self.lookup_kwarg: pk_val}, - [self.lookup_kwarg_isnull]), - 'display': val} - if isinstance(self.field, models.related.RelatedObject) \ - and self.field.field.null or hasattr(self.field, 'rel') \ - and self.field.null: - yield {'selected': bool(self.lookup_val_isnull), - 'query_string': cl.get_query_string( - {self.lookup_kwarg_isnull: 'True'}, - [self.lookup_kwarg]), - 'display': EMPTY_CHANGELIST_VALUE} - -FilterSpec.register(lambda f: ( - hasattr(f, 'rel') and bool(f.rel) or - isinstance(f, models.related.RelatedObject)), RelatedFilterSpec) - -class BooleanFieldFilterSpec(FilterSpec): - def __init__(self, f, request, params, model, model_admin, - field_path=None): - super(BooleanFieldFilterSpec, self).__init__(f, request, params, model, - model_admin, - field_path=field_path) - self.lookup_kwarg = '%s__exact' % self.field_path - self.lookup_kwarg2 = '%s__isnull' % self.field_path - self.lookup_val = request.GET.get(self.lookup_kwarg, None) - self.lookup_val2 = request.GET.get(self.lookup_kwarg2, None) - - def title(self): - return self.field.verbose_name - - def choices(self, cl): - for k, v in ((_('All'), None), (_('Yes'), '1'), (_('No'), '0')): - yield {'selected': self.lookup_val == v and not self.lookup_val2, - 'query_string': cl.get_query_string( - {self.lookup_kwarg: v}, - [self.lookup_kwarg2]), - 'display': k} - if isinstance(self.field, models.NullBooleanField): - yield {'selected': self.lookup_val2 == 'True', - 'query_string': cl.get_query_string( - {self.lookup_kwarg2: 'True'}, - [self.lookup_kwarg]), - 'display': _('Unknown')} - -FilterSpec.register(lambda f: isinstance(f, models.BooleanField) - or isinstance(f, models.NullBooleanField), - BooleanFieldFilterSpec) - -class ChoicesFilterSpec(FilterSpec): - def __init__(self, f, request, params, model, model_admin, - field_path=None): - super(ChoicesFilterSpec, self).__init__(f, request, params, model, - model_admin, - field_path=field_path) - self.lookup_kwarg = '%s__exact' % self.field_path - self.lookup_val = request.GET.get(self.lookup_kwarg, None) - - def choices(self, cl): - yield {'selected': self.lookup_val is None, - 'query_string': cl.get_query_string({}, [self.lookup_kwarg]), - 'display': _('All')} - for k, v in self.field.flatchoices: - yield {'selected': smart_unicode(k) == self.lookup_val, - 'query_string': cl.get_query_string( - {self.lookup_kwarg: k}), - 'display': v} - -FilterSpec.register(lambda f: bool(f.choices), ChoicesFilterSpec) - -class DateFieldFilterSpec(FilterSpec): - def __init__(self, f, request, params, model, model_admin, - field_path=None): - super(DateFieldFilterSpec, self).__init__(f, request, params, model, - model_admin, - field_path=field_path) - - self.field_generic = '%s__' % self.field_path - - self.date_params = dict([(k, v) for k, v in params.items() - if k.startswith(self.field_generic)]) - - today = datetime.date.today() - one_week_ago = today - datetime.timedelta(days=7) - today_str = isinstance(self.field, models.DateTimeField) \ - and today.strftime('%Y-%m-%d 23:59:59') \ - or today.strftime('%Y-%m-%d') - - self.links = ( - (_('Any date'), {}), - (_('Today'), {'%s__year' % self.field_path: str(today.year), - '%s__month' % self.field_path: str(today.month), - '%s__day' % self.field_path: str(today.day)}), - (_('Past 7 days'), {'%s__gte' % self.field_path: - one_week_ago.strftime('%Y-%m-%d'), - '%s__lte' % self.field_path: today_str}), - (_('This month'), {'%s__year' % self.field_path: str(today.year), - '%s__month' % self.field_path: str(today.month)}), - (_('This year'), {'%s__year' % self.field_path: str(today.year)}) - ) - - def title(self): - return self.field.verbose_name - - def choices(self, cl): - for title, param_dict in self.links: - yield {'selected': self.date_params == param_dict, - 'query_string': cl.get_query_string( - param_dict, - [self.field_generic]), - 'display': title} - -FilterSpec.register(lambda f: isinstance(f, models.DateField), - DateFieldFilterSpec) - - -# This should be registered last, because it's a last resort. For example, -# if a field is eligible to use the BooleanFieldFilterSpec, that'd be much -# more appropriate, and the AllValuesFilterSpec won't get used for it. -class AllValuesFilterSpec(FilterSpec): - def __init__(self, f, request, params, model, model_admin, - field_path=None): - super(AllValuesFilterSpec, self).__init__(f, request, params, model, - model_admin, - field_path=field_path) - self.lookup_kwarg = self.field_path - self.lookup_kwarg_isnull = '%s__isnull' % self.field_path - self.lookup_val = request.GET.get(self.lookup_kwarg, None) - self.lookup_val_isnull = request.GET.get(self.lookup_kwarg_isnull, - None) - parent_model, reverse_path = reverse_field_path(model, self.field_path) - queryset = parent_model._default_manager.all() - # optional feature: limit choices base on existing relationships - # queryset = queryset.complex_filter( - # {'%s__isnull' % reverse_path: False}) - limit_choices_to = get_limit_choices_to_from_path(model, field_path) - queryset = queryset.filter(limit_choices_to) - - self.lookup_choices = \ - queryset.distinct().order_by(f.name).values_list(f.name, flat=True) - - def title(self): - return self.field.verbose_name - - def choices(self, cl): - from django.contrib.admin.views.main import EMPTY_CHANGELIST_VALUE - yield {'selected': self.lookup_val is None - and self.lookup_val_isnull is None, - 'query_string': cl.get_query_string( - {}, - [self.lookup_kwarg, self.lookup_kwarg_isnull]), - 'display': _('All')} - include_none = False - - for val in self.lookup_choices: - if val is None: - include_none = True - continue - val = smart_unicode(val) - - yield {'selected': self.lookup_val == val, - 'query_string': cl.get_query_string( - {self.lookup_kwarg: val}, - [self.lookup_kwarg_isnull]), - 'display': val} - if include_none: - yield {'selected': bool(self.lookup_val_isnull), - 'query_string': cl.get_query_string( - {self.lookup_kwarg_isnull: 'True'}, - [self.lookup_kwarg]), - 'display': EMPTY_CHANGELIST_VALUE} - -FilterSpec.register(lambda f: True, AllValuesFilterSpec) diff --git a/lib/python2.7/site-packages/django/contrib/admin/forms.py b/lib/python2.7/site-packages/django/contrib/admin/forms.py deleted file mode 100644 index f26c10014..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/forms.py +++ /dev/null @@ -1,43 +0,0 @@ -from django import forms - -from django.contrib.auth import authenticate -from django.contrib.auth.forms import AuthenticationForm -from django.contrib.auth.models import User - -from django.utils.translation import ugettext_lazy, ugettext as _ - -ERROR_MESSAGE = ugettext_lazy("Please enter a correct username and password. " - "Note that both fields are case-sensitive.") - -class AdminAuthenticationForm(AuthenticationForm): - """ - A custom authentication form used in the admin app. - - """ - this_is_the_login_form = forms.BooleanField(widget=forms.HiddenInput, initial=1, - error_messages={'required': ugettext_lazy("Please log in again, because your session has expired.")}) - - def clean(self): - username = self.cleaned_data.get('username') - password = self.cleaned_data.get('password') - message = ERROR_MESSAGE - - if username and password: - self.user_cache = authenticate(username=username, password=password) - if self.user_cache is None: - if u'@' in username: - # Mistakenly entered e-mail address instead of username? Look it up. - try: - user = User.objects.get(email=username) - except (User.DoesNotExist, User.MultipleObjectsReturned): - # Nothing to do here, moving along. - pass - else: - if user.check_password(password): - message = _("Your e-mail address is not your username." - " Try '%s' instead.") % user.username - raise forms.ValidationError(message) - elif not self.user_cache.is_active or not self.user_cache.is_staff: - raise forms.ValidationError(message) - self.check_for_test_cookie() - return self.cleaned_data diff --git a/lib/python2.7/site-packages/django/contrib/admin/helpers.py b/lib/python2.7/site-packages/django/contrib/admin/helpers.py deleted file mode 100644 index 0055e8319..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/helpers.py +++ /dev/null @@ -1,344 +0,0 @@ -from django import forms -from django.conf import settings -from django.contrib.admin.util import (flatten_fieldsets, lookup_field, - display_for_field, label_for_field, help_text_for_field) -from django.contrib.contenttypes.models import ContentType -from django.core.exceptions import ObjectDoesNotExist -from django.db.models.fields.related import ManyToManyRel -from django.forms.util import flatatt -from django.template.defaultfilters import capfirst -from django.utils.encoding import force_unicode, smart_unicode -from django.utils.html import escape, conditional_escape -from django.utils.safestring import mark_safe -from django.utils.translation import ugettext_lazy as _ - - -ACTION_CHECKBOX_NAME = '_selected_action' - -class ActionForm(forms.Form): - action = forms.ChoiceField(label=_('Action:')) - select_across = forms.BooleanField(label='', required=False, initial=0, - widget=forms.HiddenInput({'class': 'select-across'})) - -checkbox = forms.CheckboxInput({'class': 'action-select'}, lambda value: False) - -class AdminForm(object): - def __init__(self, form, fieldsets, prepopulated_fields, readonly_fields=None, model_admin=None): - self.form, self.fieldsets = form, normalize_fieldsets(fieldsets) - self.prepopulated_fields = [{ - 'field': form[field_name], - 'dependencies': [form[f] for f in dependencies] - } for field_name, dependencies in prepopulated_fields.items()] - self.model_admin = model_admin - if readonly_fields is None: - readonly_fields = () - self.readonly_fields = readonly_fields - - def __iter__(self): - for name, options in self.fieldsets: - yield Fieldset(self.form, name, - readonly_fields=self.readonly_fields, - model_admin=self.model_admin, - **options - ) - - def first_field(self): - try: - fieldset_name, fieldset_options = self.fieldsets[0] - field_name = fieldset_options['fields'][0] - if not isinstance(field_name, basestring): - field_name = field_name[0] - return self.form[field_name] - except (KeyError, IndexError): - pass - try: - return iter(self.form).next() - except StopIteration: - return None - - def _media(self): - media = self.form.media - for fs in self: - media = media + fs.media - return media - media = property(_media) - -class Fieldset(object): - def __init__(self, form, name=None, readonly_fields=(), fields=(), classes=(), - description=None, model_admin=None): - self.form = form - self.name, self.fields = name, fields - self.classes = u' '.join(classes) - self.description = description - self.model_admin = model_admin - self.readonly_fields = readonly_fields - - def _media(self): - if 'collapse' in self.classes: - js = ['js/jquery.min.js', 'js/jquery.init.js', 'js/collapse.min.js'] - return forms.Media(js=['%s%s' % (settings.ADMIN_MEDIA_PREFIX, url) for url in js]) - return forms.Media() - media = property(_media) - - def __iter__(self): - for field in self.fields: - yield Fieldline(self.form, field, self.readonly_fields, model_admin=self.model_admin) - -class Fieldline(object): - def __init__(self, form, field, readonly_fields=None, model_admin=None): - self.form = form # A django.forms.Form instance - if not hasattr(field, "__iter__"): - self.fields = [field] - else: - self.fields = field - self.model_admin = model_admin - if readonly_fields is None: - readonly_fields = () - self.readonly_fields = readonly_fields - - def __iter__(self): - for i, field in enumerate(self.fields): - if field in self.readonly_fields: - yield AdminReadonlyField(self.form, field, is_first=(i == 0), - model_admin=self.model_admin) - else: - yield AdminField(self.form, field, is_first=(i == 0)) - - def errors(self): - return mark_safe(u'\n'.join([self.form[f].errors.as_ul() for f in self.fields if f not in self.readonly_fields]).strip('\n')) - -class AdminField(object): - def __init__(self, form, field, is_first): - self.field = form[field] # A django.forms.BoundField instance - self.is_first = is_first # Whether this field is first on the line - self.is_checkbox = isinstance(self.field.field.widget, forms.CheckboxInput) - - def label_tag(self): - classes = [] - if self.is_checkbox: - classes.append(u'vCheckboxLabel') - contents = force_unicode(escape(self.field.label)) - else: - contents = force_unicode(escape(self.field.label)) + u':' - if self.field.field.required: - classes.append(u'required') - if not self.is_first: - classes.append(u'inline') - attrs = classes and {'class': u' '.join(classes)} or {} - return self.field.label_tag(contents=contents, attrs=attrs) - - def errors(self): - return mark_safe(self.field.errors.as_ul()) - -class AdminReadonlyField(object): - def __init__(self, form, field, is_first, model_admin=None): - label = label_for_field(field, form._meta.model, model_admin) - # Make self.field look a little bit like a field. This means that - # {{ field.name }} must be a useful class name to identify the field. - # For convenience, store other field-related data here too. - if callable(field): - class_name = field.__name__ != '' and field.__name__ or '' - else: - class_name = field - self.field = { - 'name': class_name, - 'label': label, - 'field': field, - 'help_text': help_text_for_field(class_name, form._meta.model) - } - self.form = form - self.model_admin = model_admin - self.is_first = is_first - self.is_checkbox = False - self.is_readonly = True - - def label_tag(self): - attrs = {} - if not self.is_first: - attrs["class"] = "inline" - label = self.field['label'] - contents = capfirst(force_unicode(escape(label))) + u":" - return mark_safe('%(contents)s' % { - "attrs": flatatt(attrs), - "contents": contents, - }) - - def contents(self): - from django.contrib.admin.templatetags.admin_list import _boolean_icon - from django.contrib.admin.views.main import EMPTY_CHANGELIST_VALUE - field, obj, model_admin = self.field['field'], self.form.instance, self.model_admin - try: - f, attr, value = lookup_field(field, obj, model_admin) - except (AttributeError, ValueError, ObjectDoesNotExist): - result_repr = EMPTY_CHANGELIST_VALUE - else: - if f is None: - boolean = getattr(attr, "boolean", False) - if boolean: - result_repr = _boolean_icon(value) - else: - result_repr = smart_unicode(value) - if getattr(attr, "allow_tags", False): - result_repr = mark_safe(result_repr) - else: - if value is None: - result_repr = EMPTY_CHANGELIST_VALUE - elif isinstance(f.rel, ManyToManyRel): - result_repr = ", ".join(map(unicode, value.all())) - else: - result_repr = display_for_field(value, f) - return conditional_escape(result_repr) - -class InlineAdminFormSet(object): - """ - A wrapper around an inline formset for use in the admin system. - """ - def __init__(self, inline, formset, fieldsets, readonly_fields=None, model_admin=None): - self.opts = inline - self.formset = formset - self.fieldsets = fieldsets - self.model_admin = model_admin - if readonly_fields is None: - readonly_fields = () - self.readonly_fields = readonly_fields - - def __iter__(self): - for form, original in zip(self.formset.initial_forms, self.formset.get_queryset()): - yield InlineAdminForm(self.formset, form, self.fieldsets, - self.opts.prepopulated_fields, original, self.readonly_fields, - model_admin=self.opts) - for form in self.formset.extra_forms: - yield InlineAdminForm(self.formset, form, self.fieldsets, - self.opts.prepopulated_fields, None, self.readonly_fields, - model_admin=self.opts) - yield InlineAdminForm(self.formset, self.formset.empty_form, - self.fieldsets, self.opts.prepopulated_fields, None, - self.readonly_fields, model_admin=self.opts) - - def fields(self): - fk = getattr(self.formset, "fk", None) - for i, field in enumerate(flatten_fieldsets(self.fieldsets)): - if fk and fk.name == field: - continue - if field in self.readonly_fields: - yield { - 'label': label_for_field(field, self.opts.model, self.opts), - 'widget': { - 'is_hidden': False - }, - 'required': False - } - else: - yield self.formset.form.base_fields[field] - - def _media(self): - media = self.opts.media + self.formset.media - for fs in self: - media = media + fs.media - return media - media = property(_media) - -class InlineAdminForm(AdminForm): - """ - A wrapper around an inline form for use in the admin system. - """ - def __init__(self, formset, form, fieldsets, prepopulated_fields, original, - readonly_fields=None, model_admin=None): - self.formset = formset - self.model_admin = model_admin - self.original = original - if original is not None: - self.original_content_type_id = ContentType.objects.get_for_model(original).pk - self.show_url = original and hasattr(original, 'get_absolute_url') - super(InlineAdminForm, self).__init__(form, fieldsets, prepopulated_fields, - readonly_fields, model_admin) - - def __iter__(self): - for name, options in self.fieldsets: - yield InlineFieldset(self.formset, self.form, name, - self.readonly_fields, model_admin=self.model_admin, **options) - - def has_auto_field(self): - if self.form._meta.model._meta.has_auto_field: - return True - # Also search any parents for an auto field. - for parent in self.form._meta.model._meta.get_parent_list(): - if parent._meta.has_auto_field: - return True - return False - - def field_count(self): - # tabular.html uses this function for colspan value. - num_of_fields = 0 - if self.has_auto_field(): - num_of_fields += 1 - num_of_fields += len(self.fieldsets[0][1]["fields"]) - if self.formset.can_order: - num_of_fields += 1 - if self.formset.can_delete: - num_of_fields += 1 - return num_of_fields - - def pk_field(self): - return AdminField(self.form, self.formset._pk_field.name, False) - - def fk_field(self): - fk = getattr(self.formset, "fk", None) - if fk: - return AdminField(self.form, fk.name, False) - else: - return "" - - def deletion_field(self): - from django.forms.formsets import DELETION_FIELD_NAME - return AdminField(self.form, DELETION_FIELD_NAME, False) - - def ordering_field(self): - from django.forms.formsets import ORDERING_FIELD_NAME - return AdminField(self.form, ORDERING_FIELD_NAME, False) - -class InlineFieldset(Fieldset): - def __init__(self, formset, *args, **kwargs): - self.formset = formset - super(InlineFieldset, self).__init__(*args, **kwargs) - - def __iter__(self): - fk = getattr(self.formset, "fk", None) - for field in self.fields: - if fk and fk.name == field: - continue - yield Fieldline(self.form, field, self.readonly_fields, - model_admin=self.model_admin) - -class AdminErrorList(forms.util.ErrorList): - """ - Stores all errors for the form/formsets in an add/change stage view. - """ - def __init__(self, form, inline_formsets): - if form.is_bound: - self.extend(form.errors.values()) - for inline_formset in inline_formsets: - self.extend(inline_formset.non_form_errors()) - for errors_in_inline_form in inline_formset.errors: - self.extend(errors_in_inline_form.values()) - -def normalize_fieldsets(fieldsets): - """ - Make sure the keys in fieldset dictionaries are strings. Returns the - normalized data. - """ - result = [] - for name, options in fieldsets: - result.append((name, normalize_dictionary(options))) - return result - -def normalize_dictionary(data_dict): - """ - Converts all the keys in "data_dict" to strings. The keys must be - convertible using str(). - """ - for key, value in data_dict.items(): - if not isinstance(key, str): - del data_dict[key] - data_dict[str(key)] = value - return data_dict diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo deleted file mode 100644 index a6f1fa760..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.po deleted file mode 100644 index 971f20260..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/django.po +++ /dev/null @@ -1,819 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:02+0100\n" -"PO-Revision-Date: 2011-03-17 17:55+0000\n" -"Last-Translator: okhayat \n" -"Language-Team: Arabic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "تم حذ٠%(count)d %(items)s بنجاح." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "لا يمكن حذ٠%(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "هل أنت متأكد؟" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "حذ٠سجلات %(verbose_name_plural)s المحددة" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

By %s:

\n" -"
    \n" -msgstr "" -"

    حسب %s:

    \n" -"
      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "الكل" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "نعم" - -#: filterspecs.py:139 -msgid "No" -msgstr "لا" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "مجهول" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "أي تاريخ" - -#: filterspecs.py:197 -msgid "Today" -msgstr "اليوم" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "الأيام السبعة الماضية" - -#: filterspecs.py:203 -msgid "This month" -msgstr "هذا الشهر" - -#: filterspecs.py:205 -msgid "This year" -msgstr "هذه السنة" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"رجاءً أدخل اسم مستخدم وكلمة مرور صحيحين، وانتبه إلى أن كلا الحقلين حساس لحالة " -"الأحرÙ." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "رجاءً ادخل مرةً أخرى لأن جلستك انتهت." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"بريدك الإلكتروني ليس اسم المستخدم الخاص بك، جرب استخدام '%s' بدلا من ذلك." - -#: helpers.py:19 -msgid "Action:" -msgstr "إجراء:" - -#: models.py:19 -msgid "action time" -msgstr "وقت الإجراء" - -#: models.py:22 -msgid "object id" -msgstr "معر٠العنصر" - -#: models.py:23 -msgid "object repr" -msgstr "ممثل العنصر" - -#: models.py:24 -msgid "action flag" -msgstr "علامة الإجراء" - -#: models.py:25 -msgid "change message" -msgstr "غيّر الرسالة" - -#: models.py:28 -msgid "log entry" -msgstr "Ù…Ùدخل السجل" - -#: models.py:29 -msgid "log entries" -msgstr "Ù…Ùدخلات السجل" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "لاشيء" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "عدّل %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "Ùˆ" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "أضا٠%(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "غيّر %(list)s ÙÙŠ %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "حذ٠%(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "لم يتم تغيير أية حقول." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "تم اضاÙØ© %(name)s \"%(obj)s\" بنجاح." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "يمكنك تعديله مجددا ÙÙŠ الأسÙÙ„." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "يمكنك إضاÙØ© %s آخر بالأسÙÙ„." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "تم تغيير %(name)s \"%(obj)s\" بنجاح." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "تمت إضاÙØ© %(name)s \"%(obj)s\" بنجاح، يمكنك تعديله مرة أخرى بالأسÙÙ„." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "يجب تحديد العناصر لتطبيق الإجراءات عليها. لم يتم تغيير أية عناصر." - -#: options.py:846 -msgid "No action selected." -msgstr "لم يحدد أي إجراء." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "أض٠%s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "العنصر %(name)s الذي به الحقل الأساسي %(key)r غير موجود." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "عدّل %s" - -#: options.py:1065 -msgid "Database error" -msgstr "خطـأ ÙÙŠ قاعدة البيانات" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "لم يتم تغيير أي شيء" -msgstr[1] "تم تغيير %(count)s %(name)s بنجاح." -msgstr[2] "تم تغيير %(count)s %(name)s بنجاح." -msgstr[3] "تم تغيير %(count)s %(name)s بنجاح." -msgstr[4] "تم تغيير %(count)s %(name)s بنجاح." -msgstr[5] "تم تغيير %(count)s %(name)s بنجاح." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "لم يتم تحديد أي شيء" -msgstr[1] "تم تحديد %(total_count)s" -msgstr[2] "تم تحديد %(total_count)s" -msgstr[3] "تم تحديد %(total_count)s" -msgstr[4] "تم تحديد %(total_count)s" -msgstr[5] "تم تحديد %(total_count)s" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "لا شيء محدد من %(cnt)s" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "تم حذ٠%(name)s \"%(obj)s\" بنجاح." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "تاريخ التغيير: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "ادخل" - -#: sites.py:375 -msgid "Site administration" -msgstr "إدارة الموقع" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "إدارة %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "التاريخ:" - -#: widgets.py:75 -msgid "Time:" -msgstr "الوقت:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "ابحث" - -#: widgets.py:246 -msgid "Add Another" -msgstr "أض٠آخر" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "تعذر العثور على الصÙحة" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "نحن آسÙون، لكننا لم نعثر على الصÙحة المطلوبة." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "الرئيسية" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "خطأ ÙÙŠ المزود" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "خطأ ÙÙŠ المزود (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "خطأ ÙÙŠ المزود (500)" - -#: 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 "" -"حدث خطأ، وقم تم الابلاغ عنه إلى مدراء الموقع عبر البريد الإلكتروني وسيتم حل " -"المشكلة قريبا. شكرا لك على صبرك." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Ù†ÙØ° الإجراء المحدّد" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Ù†Ùّذ" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "اضغط هنا لتحديد جميع العناصر ÙÙŠ جميع الصÙحات" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "اختيار %(total_count)s %(module_name)s جميعها" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "إزالة الاختيار" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "أهلا، " - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "الوثائق" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "غيّر كلمة المرور" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "اخرج" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "إدارة موقع جانغو" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "إدارة جانغو" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "أضÙ" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "تاريخ" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "مشاهدة على الموقع" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "الرجاء تصحيح الخطأ أدناه." -msgstr[1] "الرجاء تصحيح الخطأ أدناه." -msgstr[2] "الرجاء تصحيح الخطأين أدناه." -msgstr[3] "الرجاء تصحيح الأخطاء أدناه." -msgstr[4] "الرجاء تصحيح الخطأ أدناه." -msgstr[5] "الرجاء تصحيح الخطأ أدناه." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "أض٠%(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "مرشّح" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "احذÙ" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"حذ٠العنصر %(object_name)s '%(escaped_object)s' سيتسبب بحذ٠العناصر المرتبطة " -"به، إلا أنك لا تملك صلاحية حذ٠العناصر التالية:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"حذ٠%(object_name)s '%(escaped_object)s' سيتسبب أيضاً بحذ٠العناصر المرتبطة، " -"إلا أن حسابك ليس لديه صلاحية حذ٠أنواع العناصر التالية:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"متأكد أنك تريد حذ٠العنصر %(object_name)s \"%(escaped_object)s\"ØŸ سيتم حذ٠" -"جميع العناصر التالية المرتبطة به:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "نعم، أنا متأكد" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "حذ٠عدّة عناصر" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"حذ٠عناصر %(objects_name)s المÙحدّدة سيتسبب بحذ٠العناصر المرتبطة، إلا أن " -"حسابك ليس له صلاحية حذ٠أنواع العناصر التالية:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"حذ٠عناصر %(objects_name)s المحدّدة قد يتطلب حذ٠العناصر المحميّة المرتبطة " -"التالية:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"أأنت متأكد أنك تريد حذ٠عناصر %(objects_name)s المحددة؟ جميع العناصر التالية " -"والعناصر المرتبطة بها سيتم حذÙها:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " حسب %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "النماذج المتوÙرة ÙÙŠ التطبيق %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "عدّل" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "ليست لديك الصلاحية لتعديل أي شيء." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "آخر الإجراءات" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "إجراءاتي" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "لا يوجد" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Ù…Ùحتوى مجهول" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"هنالك أمر خاطئ ÙÙŠ تركيب قاعدة بياناتك، تأكد من أنه تم انشاء جداول قاعدة " -"البيانات الملائمة، وأن قاعدة البيانات قابلة للقراءة من قبل المستخدم الملائم." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "اسم المستخدم:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "كلمة المرور:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "التاريخ/الوقت" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "المستخدم" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "إجراء" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"ليس لهذا العنصر سجلّ تغييرات، على الأغلب أنه لم ÙŠÙنشأ من خلال نظام إدارة " -"الموقع." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "أظهر الكل" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "احÙظ" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "ابحث" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "لا نتائج" -msgstr[1] "نتيجة واحدة" -msgstr[2] "نتيجتان" -msgstr[3] "%(counter)s نتائج" -msgstr[4] "%(counter)s نتيجة" -msgstr[5] "%(counter)s نتيجة" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "المجموع %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "احÙظ كجديد" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "احÙظ وأض٠آخر" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "احÙظ واستمر بالتعديل" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"أولاً، أدخل اسم مستخدم وكلمة مرور. ومن ثم تستطيع تعديل المزيد من خيارات " -"المستخدم." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "أدخل اسم مستخدم وكلمة مرور." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "أدخل كلمة مرور جديدة للمستخدم %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "كلمة المرور" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "كلمة المرور (مجدداً)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "أدخل كلمة المرور ذاتها التي أعلاه لتأكيدها." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "إضاÙØ© سجل %(verbose_name)s آخر" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "أزل" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "احذÙه؟" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "شكراً لك على قضائك بعض الوقت مع الموقع اليوم." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "ادخل مجدداً" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "غيّر كلمة مرورك" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "تم تغيير كلمة المرور بنجاح" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "تمّ تغيير كلمة مرورك." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"رجاءً أدخل كلمة مرورك القديمة، للأمان، ثم أدخل كلمة مرور الجديدة مرتين كي " -"تتأكّد من كتابتها بشكل صحيح." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "كلمة المرور القديمة" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "كلمة المرور الجديدة" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "غيّر كلمة مروري" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "استعادة كلمة المرور" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "تم استعادة كلمة المرور" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "تم تعيين كلمة مرورك. يمكن الاستمرار وتسجيل دخولك الآن." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "تأكيد استعادة كلمة المرور" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "أدخل كلمة المرور الجديدة" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "رجاءً أدخل كلمة مرورك الجديدة مرتين كي تتأكّد من كتابتها بشكل صحيح." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "كلمة المرور الجديدة:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "أكّد كلمة المرور:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "تم إعادة تعيين كلمة المرور بنجاح" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"رابط استعادة كلمة المرور غير صحيح، ربما لأنه استÙخدم من قبل. رجاءً اطلب " -"استعادة كلمة المرور مرة أخرى." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "تم إعادة ضبط كلمة المرور بنجاح" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"لقد قمنا بإرسال تعليمات تعيين كلمة مرورك إلى عنوان البريد الإلكتروني الذي " -"كتبته. يجب أن تصلك رسالتنا قريباً." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"تصلك هذه الرسالة لأنك طلبت إستعادة كلمة المرور الخاصة بك على الموقع %" -"(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "رجاءً اذهب إلى الصÙحة التالية واختر كلمة مرور جديدة:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "اسم المستخدم الخاص بك، ÙÙŠ حال كنت قد نسيته:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "شكراً لاستخدامك موقعنا!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Ùريق %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"نسيت كلمة مرورك؟ أدخل عنوان بريدك الإلكتروني بالأسÙÙ„ وسنقوم بإرسال تعليمات " -"تعيين كلمة مرور جديدة." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "عنوان البريد الإلكتروني:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "استعد كلمة مروري" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "كاÙØ© التواريخ" - -#: views/main.py:27 -msgid "(None)" -msgstr "(لاشيء)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "اختر %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "اختر %s لتغييره" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 6a8f34b62..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po deleted file mode 100644 index 384b86f3d..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ar/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-17 15:51+0000\n" -"Last-Translator: okhayat \n" -"Language-Team: Arabic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s المتوÙرة" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "انتقاء" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "اختر الكل" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "أضÙ" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "احذÙ" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s المÙختارة" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "حدد خياراتك واضغط" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "امسح الكل" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "لا شي محدد" -msgstr[1] "%(sel)s من %(cnt)s محدد" -msgstr[2] "%(sel)s من %(cnt)s محدد" -msgstr[3] "%(sel)s من %(cnt)s محددة" -msgstr[4] "%(sel)s من %(cnt)s محدد" -msgstr[5] "%(sel)s من %(cnt)s محدد" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"لديك تعديلات غير محÙوظة على بعض الحقول القابلة للتعديل. إن Ù†Ùذت أي إجراء " -"Ùسو٠تخسر تعديلاتك." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"اخترت إجراءً لكن دون أن تحÙظ تغييرات التي قمت بها. رجاء اضغط زر المواÙقة " -"لتحÙظ تعديلاتك. ستحتاج إلى إعادة تنÙيذ الإجراء." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "اخترت إجراءً دون تغيير أي حقل. لعلك تريد زر التنÙيذ بدلاً من زر الحÙظ." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"يناير Ùبراير مارس إبريل مايو يونيو يوليو أغسطس سبتمبر أكتوبر نوÙمبر ديسمبر" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "Ø£ Ø¥ Ø« Ø£ Ø® ج س" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "أظهر" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "اخÙ" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "الأحد الإثنين الثلاثاء الأربعاء الخميس الجمعة السبت" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "الآن" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "الساعة" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "اختر وقتاً" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "منتص٠الليل" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 ص." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "الظهر" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "ألغ" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "اليوم" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "التقويم" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "أمس" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "غداً" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo deleted file mode 100644 index a815c4e60..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.po deleted file mode 100644 index 5ec686e30..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/django.po +++ /dev/null @@ -1,763 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:12-0400\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Azerbaijani \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: az\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

      By %s:

      \n" -"
        \n" -msgstr "" - -#: filterspecs.py:104 filterspecs.py:136 filterspecs.py:205 filterspecs.py:257 -msgid "All" -msgstr "" - -#: filterspecs.py:164 -msgid "Any date" -msgstr "" - -#: filterspecs.py:165 -msgid "Today" -msgstr "" - -#: filterspecs.py:168 -msgid "Past 7 days" -msgstr "" - -#: filterspecs.py:171 -msgid "This month" -msgstr "" - -#: filterspecs.py:173 -msgid "This year" -msgstr "" - -#: filterspecs.py:205 -msgid "Yes" -msgstr "" - -#: filterspecs.py:205 -msgid "No" -msgstr "" - -#: filterspecs.py:216 -msgid "Unknown" -msgstr "" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" - -#: helpers.py:19 -msgid "Action:" -msgstr "" - -#: models.py:19 -msgid "action time" -msgstr "" - -#: models.py:22 -msgid "object id" -msgstr "" - -#: models.py:23 -msgid "object repr" -msgstr "" - -#: models.py:24 -msgid "action flag" -msgstr "" - -#: models.py:25 -msgid "change message" -msgstr "" - -#: models.py:28 -msgid "log entry" -msgstr "" - -#: models.py:29 -msgid "log entries" -msgstr "" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:645 -msgid "No fields changed." -msgstr "" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "" - -#: options.py:1065 -msgid "Database error" -msgstr "" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "" - -#: sites.py:375 -msgid "Site administration" -msgstr "" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "" - -#: widgets.py:75 -msgid "Date:" -msgstr "" - -#: widgets.py:75 -msgid "Time:" -msgstr "" - -#: widgets.py:140 -msgid "Lookup" -msgstr "" - -#: widgets.py:246 -msgid "Add Another" -msgstr "" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "" - -#: 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 "" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo deleted file mode 100644 index cf9f55604..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po deleted file mode 100644 index 0647087b5..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/az/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,144 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Azerbaijani \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: az\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo deleted file mode 100644 index b3a2b8ef0..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.po deleted file mode 100644 index b7ef1dff0..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/django.po +++ /dev/null @@ -1,809 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:02+0100\n" -"PO-Revision-Date: 2011-03-15 05:55+0000\n" -"Last-Translator: tlubenov \n" -"Language-Team: Bulgarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "УÑпешно премахнати %(count)d %(items)s ." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Ðе може да изтриете %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Сериозно?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Изтриване на избраните %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

        By %s:

        \n" -"
          \n" -msgstr "" -"

          По %s:

          \n" -"
            \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Ð’Ñички" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Да" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ðе" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "ÐеизвеÑтно" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "КоÑ-да-е дата" - -#: filterspecs.py:197 -msgid "Today" -msgstr "ДнеÑ" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "ПоÑледните 7 дни" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Този меÑец" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Тази година" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Въведете коректно потребителÑко име и парола. И двете полета правÑÑ‚ разлика " -"между малки и големи букви!" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "МолÑ, влезте отново, тъй като ÑеÑиÑта е изтекла." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "E-mail адреÑÑŠÑ‚ ти не ти е потребителÑко име. Пробвай '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "ДейÑтвие:" - -#: models.py:19 -msgid "action time" -msgstr "време на дейÑтвие" - -#: models.py:22 -msgid "object id" -msgstr "id на обекта" - -#: models.py:23 -msgid "object repr" -msgstr "repr на обекта" - -#: models.py:24 -msgid "action flag" -msgstr "флаг за дейÑтвие" - -#: models.py:25 -msgid "change message" -msgstr "Ñмени Ñъобщение" - -#: models.py:28 -msgid "log entry" -msgstr "запиÑка" - -#: models.py:29 -msgid "log entries" -msgstr "запиÑки" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "None" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Променен %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "и" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Добавени %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Променени %(list)s за %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Изтрити %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "ÐÑма променени полета." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Обектът %(name)s \"%(obj)s\" бе уÑпешно добавен. " - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Може да го редактирате отново по-долу. " - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Може да добавите още един обект %s по-долу. " - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Обектът %(name)s \"%(obj)s\" бе уÑпешно актуализиран. " - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Обектът %(name)s \"%(obj)s\" бе уÑпешно добавен. Може да го редактирате по-" -"долу. " - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Елементите Ñ‚Ñ€Ñбва да бъдат избрани, за да Ñе извършат дейÑÑ‚Ð²Ð¸Ñ Ð¿Ð¾ Ñ‚ÑÑ…. ÐÑма " -"променени елементи." - -#: options.py:846 -msgid "No action selected." -msgstr "Ðе Ñе предприемат дейÑÑ‚Ð²Ð¸Ñ Ð¸Ð·Ð±Ñ€Ð°Ð½." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Добави %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s обект Ñ Ð¿ÑŠÑ€Ð²Ð¸Ñ‡ÐµÐ½ ключ %(key)r не ÑъщеÑтвува." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Промени %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Грешка Ñ Ð±Ð°Ð·Ð°Ñ‚Ð° данни" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s беше променено уÑпешно." -msgstr[1] "%(count)s %(name)s бÑха променени уÑпешно." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s избран" -msgstr[1] "Ð’Ñички %(total_count)s Ñа избрани" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 от %(cnt)s избрани" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Обектът %(name)s \"%(obj)s\" бе уÑпешно изтрит. " - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð½Ð° промените: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Вход" - -#: sites.py:375 -msgid "Site administration" -msgstr "ÐдминиÑÑ‚Ñ€Ð°Ñ†Ð¸Ñ Ð½Ð° Ñайта" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s админиÑтрациÑ" - -#: widgets.py:75 -msgid "Date:" -msgstr "Дата:" - -#: widgets.py:75 -msgid "Time:" -msgstr "ЧаÑ:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "ТърÑене" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Добави Друг" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Страница не е намерена" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "СъжалÑвам, но извиканата Ñтраница не е намерена." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Ðачало" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Сървърна грешка" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Сървърна грешка (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Грешка в Ñървъра (500)" - -#: 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 "" -"Има грешка. ÐдминиÑтраторът на Ñайта е уведомен за Ñлучилото Ñе по e-mail. " -"Благодарим за търпението." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Стартирай избраните дейÑтвиÑ" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Давай" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Щракнете тук, за да изберете обектите във вÑички Ñтраници" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Избери вÑички %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "ИзчиÑти ÑелекциÑта" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Добре дошли," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "ДокументациÑ" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Промени парола" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Изход" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "ÐдминиÑтративен панел" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "ÐдминиÑтративен панел" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Добави" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ИÑториÑ" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Разгледай в Ñайта" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "МолÑ, поправете грешката по-долу." -msgstr[1] "МолÑ, поправете грешките по-долу." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Добави %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Филтър" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Изтрий" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Изтриването на обекта %(object_name)s '%(escaped_object)s' не може да бъде " -"извършено без да Ñе изтриÑÑ‚ и нÑкой Ñвързани обекти, върху които обаче " -"нÑмате права: " - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Изтриването на %(object_name)s '%(escaped_object)s' изиÑква заличаването на " -"Ñледните защитени Ñвързани обекти:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"ÐаиÑтина ли иÑкате да Ñе изтриÑÑ‚ обектите %(object_name)s \"%(escaped_object)" -"s\"? Следните Ñвързани елементи Ñъщо ще бъдат изтрити:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Да, Ñигурен Ñъм" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Изтриване на множеÑтво обекти" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Изтриването на избраните %(objects_name)s ще доведе до изтриване на " -"Ñвързаните обекти, но Ð²Ð°ÑˆÐ¸Ñ Ð¿Ñ€Ð¾Ñ„Ð¸Ð» нÑма разрешение да триете Ñледните типове " -"обекти:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Изтриването на избраните %(objects_name)s изиÑква заличаването на Ñледните " -"защитени Ñвързани обекти:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"ÐаиÑтина ли иÑкате да изтриете избраните %(objects_name)s? Ð’Ñички от " -"изброените обекти и Ñвързаните Ñ Ñ‚ÑÑ… обекти ще бъдат изтрити:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " По %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Модели в приложението %(name)s " - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Промени" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "ÐÑмате права да редактирате каквото и да е." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "ПоÑледни дейÑтвиÑ" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Моите дейÑтвиÑ" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "ÐÑма налични" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "ÐеизвеÑтно Ñъдържание" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Има нÑкакъв проблем Ñ Ð±Ð°Ð·Ð°Ñ‚Ð° данни. Проверете дали необходимите таблици Ñа " -"Ñъздадени и дали ÑÑŠÐ¾Ñ‚Ð²ÐµÑ‚Ð½Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ» има необходимите права за доÑтъп. " - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Потребител:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Парола:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Дата/чаÑ" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Потребител" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "ДейÑтвие" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Този обект нÑма иÑÑ‚Ð¾Ñ€Ñ Ð½Ð° промените. ВероÑтно не е добавен чрез " -"админиÑÑ‚Ñ€Ð°Ñ‚Ð¸Ð²Ð½Ð¸Ñ Ð¿Ð°Ð½ÐµÐ». " - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Покажи вÑички" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "ЗапиÑ" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "ТърÑене" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s резултат" -msgstr[1] "%(counter)s резултати" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s общо" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Ð—Ð°Ð¿Ð¸Ñ ÐºÐ°Ñ‚Ð¾ нов" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Ð—Ð°Ð¿Ð¸Ñ Ð¸ нов" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Ð—Ð°Ð¿Ð¸Ñ Ð¸ продължение" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Първо, въведете потребител и парола. След това ще можете да редактирате " -"повече детайли. " - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Въведете потребителÑко име и парола." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Въведете нова парола за потребител %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Парола" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Парола (отново)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Въведете Ñъщата парола още веднъж за проверка. " - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Добави друг %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Премахване" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Изтриване?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Благодарим Ви, че използвахте този Ñайт днеÑ." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Влез пак" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "ПромÑна на парола" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Паролата е Ñменена уÑпешно" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Паролата ви е Ñменена." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Въведете Ñтарата Ñи парола /за ÑигурноÑÑ‚/, Ñлед което въведете желаната нова " -"парола два пъти за да не Ñтават грешки." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Стара парола" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Ðова парола" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "ПромÑна на парола" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Ðова парола" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "ВъзÑтановÑване на парола завърши" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Паролата е определена. Можете да продължите и да влезете вече." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Парола за потвърждение" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Въведете нова парола" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"МолÑ, въведете новата парола два пъти за да може да Ñе потвърди, че Ñте Ñ " -"напиÑали правилно." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Ðова парола:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Потвърдете паролата:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "СмÑна на паролата неуÑпешена" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Връзката за възÑтановÑване на паролата е невалидна, може би защото вече е " -"използвана. МолÑ, да поиÑкате ново нулиране на паролата." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Паролата е уÑпешно обновена" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Пратили Ñме ви ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñ Ð·Ð° задаване на парола за доÑтъп на поÑÐ¾Ñ‡ÐµÐ½Ð¸Ñ Ð¾Ñ‚ Ð²Ð°Ñ " -"е-мейл. ТрÑбва да ги получите Ñкоро." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Вие получавате този е-мейл, защото пожелахте възÑтановÑване на паролата за " -"Ð²Ð°ÑˆÐ¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÐ±Ð¸Ñ‚ÐµÐ»Ñки профил в %(site_name)s ." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "МолÑ, отидете на Ñледващата Ñтраница и да изберете нова парола:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Вашето потребителÑко име, ако не го помните:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Благодарим, че ползвате Ñайта ни!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Готините хора от %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Забравена парола? Въведете Ð²Ð°ÑˆÐ¸Ñ Ðµ-мейл Ð°Ð´Ñ€ÐµÑ Ð¿Ð¾-долу, и ние ще пратим на " -"електронната ви поща инÑтрукции за Ñъздаване на нова." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mail адреÑ:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Ðова парола" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Ð’Ñички дати" - -#: views/main.py:27 -msgid "(None)" -msgstr "(None)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Изберете %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Изберете %s за промÑна" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 6be3da879..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po deleted file mode 100644 index 125beb541..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/bg/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,153 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-10 05:17+0000\n" -"Last-Translator: tlubenov \n" -"Language-Team: Bulgarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Ðалични %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Филтър" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Избери вÑички" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Добави" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Премахни" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Избрахме %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Ðаправете ÑÐ²Ð¾Ñ Ð¸Ð·Ð±Ð¾Ñ€ и щракнете " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "ИзчиÑти вÑички" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s на %(cnt)s е избран" -msgstr[1] "%(sel)s на %(cnt)s Ñа избрани" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Имате незапазени промени по отделни полета за редактиране. Ðко започнете " -"друго, незапиÑаните промени ще бъдат загубени." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Вие Ñте избрали дейÑтвие, но не Ñте запиÑали промените по полета. МолÑ, " -"кликнете ОК, за да Ñе запишат. ТрÑбва отново да започнете дейÑтвие." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Вие Ñте избрали дадена дейноÑÑ‚, а не Ñте направили нÑкакви промени по " -"полетата. ВероÑтно Ñ‚ÑŠÑ€Ñите Go бутон, а не бутона Save." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Януари Февруари Март Ðприл Май Юни Юли ÐвгуÑÑ‚ Септември Октомври Ðоември " -"Декември" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "РП Ð’ С Ч П С" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Покажи" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Скрий" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ÐÐµÐ´ÐµÐ»Ñ ÐŸÐ¾Ð½ÐµÐ´ÐµÐ»Ð½Ð¸Ðº Вторник СрÑда Четвъртък Петък Събота" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Сега" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "ЧаÑовник" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Избери време" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Полунощ" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "По обÑд" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Отказ" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "ДнеÑ" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Календар" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Вчера" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Утре" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo deleted file mode 100644 index 20357d6b5..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.po deleted file mode 100644 index 9e6e0a354..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/django.po +++ /dev/null @@ -1,790 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:02+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Bengali <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "আপনি কি নিশà§à¦šà¦¿à¦¤?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

            By %s:

            \n" -"
              \n" -msgstr "" -"

              %s অনà§à¦¯à¦¾à§Ÿà§€:

              \n" -"
                \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "সকল" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "হà§à¦¯à¦¾à¦" - -#: filterspecs.py:139 -msgid "No" -msgstr "না" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "অজানা" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "যে কোন তারিখ" - -#: filterspecs.py:197 -msgid "Today" -msgstr "â€à¦†à¦œ" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "শেষ ৭ দিন" - -#: filterspecs.py:203 -msgid "This month" -msgstr "ঠমাসে" - -#: filterspecs.py:205 -msgid "This year" -msgstr "ঠবছরে" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "অনà§à¦—à§à¦°à¦¹à¦ªà§‚রà§à¦¬à¦• সঠিক সদসà§à¦¯à¦¨à¦¾à¦® ও পাসওয়ারà§à¦¡ পà§à¦°à¦¬à§‡à¦¶ করান।" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "অনà§à¦—à§à¦°à¦¹ করে পà§à¦¨à¦°à¦¾à§Ÿ পà§à¦°à¦¬à§‡à¦¶ করà§à¦¨, কেননা আপনার সেশনের মেয়াদ শেষ।" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "আপনার ইমেইল ঠিকানা, আপনার সদসà§à¦¯à¦¨à¦¾à¦® নয়। ’%s' চেষà§à¦Ÿà¦¾ করতে পারেন।" - -#: helpers.py:19 -msgid "Action:" -msgstr "" - -#: models.py:19 -msgid "action time" -msgstr "কারà§à¦¯ সময়" - -#: models.py:22 -msgid "object id" -msgstr "অবজেকà§à¦Ÿ আইডি" - -#: models.py:23 -msgid "object repr" -msgstr "অবজেকà§à¦Ÿ উপসà§à¦¥à¦¾à¦ªà¦•" - -#: models.py:24 -msgid "action flag" -msgstr "কারà§à¦¯à¦šà¦¿à¦¹à§à¦¨" - -#: models.py:25 -msgid "change message" -msgstr "বারà§à¦¤à¦¾ পরিবরà§à¦¤à¦¨ করà§à¦¨" - -#: models.py:28 -msgid "log entry" -msgstr "লগ à¦à¦¨à§à¦Ÿà§à¦°à¦¿" - -#: models.py:29 -msgid "log entries" -msgstr "লগ à¦à¦¨à§à¦Ÿà§à¦°à¦¿à¦¸à¦®à§‚হ" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "কিছৠনা" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s পরিবরà§à¦¤à¦¿à¦¤ হয়েছে।" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "à¦à¦¬à¦‚" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" যà§à¦•à§à¦¤ হয়েছে।" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" à¦à¦° জনà§à¦¯ %(list)s পরিবরà§à¦¤à¦¿à¦¤ হয়েছে।" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" মোছা হয়েছে।" - -#: options.py:645 -msgid "No fields changed." -msgstr "কোন ফিলà§à¦¡ পরিবরà§à¦¤à¦¨ হয়নি।" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" সফলতার সাথে যà§à¦•à§à¦¤ হয়েছে।" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "আপনি নিচে থেকে à¦à¦Ÿà¦¿ পà§à¦¨à¦°à¦¾à§Ÿ সমà§à¦ªà¦¾à¦¦à¦¨ করতে পারেন।" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "আপনি নিচে থেকে আরেকটি %s যোগ করতে পারেন।" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" সফলতার সাথে পরিবরà§à¦¤à¦¿à¦¤ হয়েছে।" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" সফলতার সাথে যà§à¦•à§à¦¤ হয়েছে। আপনি নিচে থেকে à¦à¦Ÿà¦¿ পà§à¦¨à¦°à¦¾à§Ÿ সমà§à¦ªà¦¾à¦¦à¦¨ " -"করতে পারেন।" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s যোগ করà§à¦¨" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s পরিবরà§à¦¤à¦¨ করà§à¦¨" - -#: options.py:1065 -msgid "Database error" -msgstr "ডাটাবেস সমসà§à¦¯à¦¾" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" -msgstr[1] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" -msgstr[1] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" সফলতার সাথে মà§à¦›à§‡ ফেলা হয়েছে।" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ইতিহাস পরিবরà§à¦¤à¦¨à¦ƒ %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "পà§à¦°à¦¬à§‡à¦¶ করà§à¦¨" - -#: sites.py:375 -msgid "Site administration" -msgstr "সাইট পà§à¦°à¦¶à¦¾à¦¸à¦¨" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s পà§à¦°à¦¶à¦¾à¦¸à¦¨" - -#: widgets.py:75 -msgid "Date:" -msgstr "তারিখঃ" - -#: widgets.py:75 -msgid "Time:" -msgstr "সময়ঃ" - -#: widgets.py:140 -msgid "Lookup" -msgstr "খà§à¦à¦œà§à¦¨" - -#: widgets.py:246 -msgid "Add Another" -msgstr "আরেকটি যোগ করà§à¦¨" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "পৃষà§à¦ à¦¾ পাওয়া যায়নি" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "দà§à¦ƒà¦–িত, অনà§à¦°à§‡à¦¾à¦§à¦•à§ƒà¦¤ পাতাটি পাওয়া যায়নি।" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "নীড়পাতা" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "সারà§à¦­à¦¾à¦° সমসà§à¦¯à¦¾" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "সারà§à¦­à¦¾à¦° সমসà§à¦¯à¦¾ (৫০০)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "সারà§à¦­à¦¾à¦° সমসà§à¦¯à¦¾ (৫০০)" - -#: 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 "" -"à¦à¦•à¦Ÿà¦¿ সমসà§à¦¯à¦¾ দেখা গিয়েছে। সাইট পà§à¦°à¦¶à¦¾à¦¸à¦¨à¦•à§‡ ইমেইলের মাধà§à¦¯à¦®à§‡ অবহিত করা হয়েছে। খà§à¦¬ " -"শীঘà§à¦°à¦‡ সমসà§à¦¯à¦¾à¦° সমাধান হবে আশা করা যাচà§à¦›à§‡à¥¤ অনà§à¦—à§à¦°à¦¹à¦ªà§‚রà§à¦¬à¦• অপেকà§à¦·à¦¾ করà§à¦¨à¥¤" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "যান" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "সà§à¦¬à¦¾à¦—তম," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "সহায়িকা" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "পাসওয়ারà§à¦¡ বদলান" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "পà§à¦°à¦¸à§à¦¥à¦¾à¦¨" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "জà§à¦¯à¦¾à¦™à§à¦—ো সাইট পà§à¦°à¦¶à¦¾à¦¸à¦•" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "জà§à¦¯à¦¾à¦™à§à¦—ো পà§à¦°à¦¶à¦¾à¦¸à¦¨" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "যোগ করà§à¦¨" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ইতিহাস" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "সাইটে দেখà§à¦¨" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "অনà§à¦—à§à¦°à¦¹ করে নিচের ভà§à¦²à¦Ÿà¦¿ সংশোধন করà§à¦¨à¥¤" -msgstr[1] "অনà§à¦—à§à¦°à¦¹ করে নিচের ভà§à¦²à¦—à§à¦²à§‡à¦¾ সংশোধন করà§à¦¨à¥¤" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s যোগ করà§à¦¨" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "ফিলà§à¦Ÿà¦¾à¦°" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "মà§à¦›à§à¦¨" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s' মà§à¦›à§‡ ফেললে à¦à¦° সমà§à¦ªà¦°à§à¦•à¦¿à¦¤ অবজেকà§à¦Ÿà¦—à§à¦²à§‡à¦¾à¦“ মà§à¦›à§‡ " -"যাবে, কিনà§à¦¤à§ আপনার নিমà§à¦¨à¦¬à¦°à§à¦£à¦¿à¦¤ অবজেকà§à¦Ÿà¦—à§à¦²à§‡à¦¾ মোছার অধিকার নেইঃ" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"আপনি কি %(object_name)s \"%(escaped_object)s\" মà§à¦›à§‡ ফেলার বà§à¦¯à¦¾à¦ªà¦¾à¦°à§‡ নিশà§à¦šà¦¿à¦¤? " -"নিমà§à¦¨à§‡ বরà§à¦£à¦¿à¦¤ সকল আইটেম মà§à¦›à§‡ যাবেঃ" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "হà§à¦¯à¦¾à¦¼à¦, আমি নিশà§à¦šà¦¿à¦¤" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s অনà§à¦¯à¦¾à§Ÿà§€ " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s à¦à§à¦¯à¦ªà§à¦²à¦¿à¦•à§‡à¦¶à¦¨à§‡ অবসà§à¦¥à¦¿à¦¤ মডেলসমূহ" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "পরিবরà§à¦¤à¦¨" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "কোন কিছৠপরিবরà§à¦¤à¦¨à§‡ আপনার অধিকার নেই।" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "সামà§à¦ªà§à¦°à¦¤à¦¿à¦• কারà§à¦¯à¦¾à¦¬à¦²à§€" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "আমার কারà§à¦¯à¦¾à¦¬à¦²à§€" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "কিছà§à¦‡ পাওয়া যায়নি" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"আপনার ডাটাবেস ইনসà§à¦Ÿà¦²à§‡ সমসà§à¦¯à¦¾ হয়েছে। নিশà§à¦šà¦¿à¦¤ করà§à¦¨ যে, ডাটাবেস টেবিলগà§à¦²à§‡à¦¾ সঠিকভাবে " -"তৈরী হয়েছে, à¦à¦¬à¦‚ যথাযথ সদসà§à¦¯à§‡à¦° ডাটাবেস পড়ার অধিকার রয়েছে।" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "সদসà§à¦¯à¦¨à¦¾à¦®à¦ƒ" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "পাসওয়ারà§à¦¡à¦ƒ" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "তারিখ/সময়" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "সদসà§à¦¯" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "কারà§à¦¯" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "à¦à¦‡ অবজেকà§à¦Ÿà§‡à¦° কোন ইতিহাস নেই। সমà§à¦­à¦¬à¦¤ à¦à¦Ÿà¦¿ পà§à¦°à¦¶à¦¾à¦¸à¦¨ সাইট দিয়ে তৈরী করা হয়নি।" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "সব দেখান" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "সংরকà§à¦·à¦£ করà§à¦¨" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" -msgstr[1] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "মোট %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "নতà§à¦¨à¦­à¦¾à¦¬à§‡ সংরকà§à¦·à¦£ করà§à¦¨" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "সংরকà§à¦·à¦£ করà§à¦¨ à¦à¦¬à¦‚ আরেকটি যোগ করà§à¦¨" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "সংরকà§à¦·à¦£ করà§à¦¨ à¦à¦¬à¦‚ সমà§à¦ªà¦¾à¦¦à¦¨à¦¾ চালিয়ে যান" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"পà§à¦°à¦¥à¦®à§‡ à¦à¦•à¦Ÿà¦¿ সদসà§à¦¯à¦¨à¦¾à¦® ও পাসওয়ারà§à¦¡ পà§à¦°à¦¬à§‡à¦¶ করান। তারপরে আপনি â€à¦†à¦°à¦“ সদসà§à¦¯-অপশন যà§à¦•à§à¦¤ করতে " -"পারবেন।" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "%(username)s সদসà§à¦¯à§‡à¦° জনà§à¦¯ নতà§à¦¨ পাসওয়ারà§à¦¡ দিন।" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "পাসওয়ারà§à¦¡" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "পাসওয়ারà§à¦¡ (পà§à¦¨à¦°à¦¾à§Ÿ)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "উপরের পাসওয়ারà§à¦¡à¦Ÿà¦¿ পà§à¦¨à¦°à¦¾à§Ÿ পà§à¦°à¦¬à§‡à¦¶ করান, যাচাইয়ের জনà§à¦¯à¥¤" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "মà§à¦›à§‡ ফেলà§à¦¨?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "ওয়েবসাইটে কিছৠসময় কাটানোর জনà§à¦¯ আপনাকে আনà§à¦¤à¦°à¦¿à¦• ধনà§à¦¯à¦¬à¦¾à¦¦à¥¤" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "পà§à¦¨à¦°à¦¾à§Ÿ পà§à¦°à¦¬à§‡à¦¶ করà§à¦¨" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "পাসওয়ারà§à¦¡ বদলান" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "পাসওয়ারà§à¦¡ বদল সফল হয়েছে" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "আপনার পাসওয়ারà§à¦¡ বদলানো হয়েছে।" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"অনà§à¦—à§à¦°à¦¹ করে আপনার পà§à¦°à¦¨à§‡à¦¾ পাসওয়ারà§à¦¡ পà§à¦°à¦¬à§‡à¦¶ করান, নিরাপতà§à¦¤à¦¾à¦° কাতিরে, à¦à¦¬à¦‚ পরপর দà§â€™à¦¬à¦¾à¦° " -"নতà§à¦¨ পাসওয়ারà§à¦¡ পà§à¦°à¦¬à§‡à¦¶ করান, যাচাই করার জনà§à¦¯à¥¤" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "পà§à¦°à¦¨à§‡à¦¾ পাসওয়ারà§à¦¡" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "নতà§à¦¨ পাসওয়ারà§à¦¡" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "আমার পাসওয়ারà§à¦¡ পরিবরà§à¦¤à¦¨ করà§à¦¨" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "পাসওয়ারà§à¦¡ রিসেট করà§à¦¨" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "পাসওয়ারà§à¦¡ রিসেট সমà§à¦ªà¦¨à§à¦¨ হয়েছে" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "আপনার পাসওয়ারà§à¦¡ দেয়া হয়েছে। আপনি à¦à¦–ন পà§à¦°à¦¬à§‡à¦¶ (লগইন) করতে পারেন।" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "পাসওয়ারà§à¦¡ রিসেট নিশà§à¦šà¦¿à¦¤ করà§à¦¨" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "নতà§à¦¨ পাসওয়ারà§à¦¡ দিন" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"অনà§à¦—à§à¦°à¦¹ করে আপনার পাসওয়ারà§à¦¡ দà§à¦¬à¦¾à¦° পà§à¦°à¦¬à§‡à¦¶ করান, যাতে আমরা যাচাই করতে পারি আপনি " -"সঠিকভাবে টাইপ করেছেন।" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "নতà§à¦¨ পাসওয়ারà§à¦¡à¦ƒ" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "পাসওয়ারà§à¦¡ নিশà§à¦šà¦¿à¦¤à¦•à¦°à¦£à¦ƒ" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "পাসওয়ারà§à¦¡ রিসেট সফল হয়নি" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"পাসওয়ারà§à¦¡ রিসেট লিঙà§à¦•à¦Ÿà¦¿ ঠিক নয়, হয়তো à¦à¦Ÿà¦¾ ইতোমধà§à¦¯à§‡ বà§à¦¯à¦¬à¦¹à§ƒà¦¤ হয়েছে। পাসওয়ারà§à¦¡ " -"রিসেটের জনà§à¦¯ অনà§à¦—à§à¦°à¦¹ করে নতà§à¦¨à¦­à¦¾à¦¬à§‡ আবেদন করà§à¦¨à¥¤" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "পাসওয়ারà§à¦¡ রিসেট সফল হয়েছে" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"আপনার পাসওয়ারà§à¦¡ ঠিক করার নিয়ম আপনাকে ইমেইল করা হয়েছে। শীঘà§à¦°à¦‡ আপনি ইমেইল পাবেন।" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "অনà§à¦—à§à¦°à¦¹ করে নিচের পাতাটিতে যান à¦à¦¬à¦‚ নতà§à¦¨ পাসওয়ারà§à¦¡ বাছাই করà§à¦¨à¦ƒ" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "আপনার সদসà§à¦¯à¦¨à¦¾à¦®, যদি ভà§à¦²à§‡ গিয়ে থাকেনঃ" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "আমাদের সাইট বà§à¦¯à¦¬à¦¹à¦¾à¦°à§‡à¦° জনà§à¦¯ ধনà§à¦¯à¦¬à¦¾à¦¦!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s দল" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"পাসওয়ারà§à¦¡ ভà§à¦²à§‡ গেছেন? আপনার ইমেইল ঠিকানা দিন, আমরা নতà§à¦¨ পাসওয়ারà§à¦¡ দেয়ার নিয়ম " -"আপনাকে মেইল করে দেবো।" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "ইমেইল ঠিকানঃ" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "আমার পাসওয়ারà§à¦¡ রিসেট করà§à¦¨" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "সকল তারিখ" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s বাছাই করà§à¦¨" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "%s পরিবরà§à¦¤à¦¨à§‡à¦° জনà§à¦¯ বাছাই করà§à¦¨" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 75ee1354d..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po deleted file mode 100644 index a2f285b42..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/bn/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,146 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Bengali <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s বিদà§à¦¯à¦®à¦¾à¦¨" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "সব বাছাই করà§à¦¨" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "যোগ করà§à¦¨" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "মà§à¦›à§‡ ফেলà§à¦¨" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s বাছাই করা হয়েছে" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "আপনার পছনà§à¦¦ বাছাই à¦à¦¬à¦‚ কà§à¦²à¦¿à¦• করà§à¦¨" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "সব পরিষà§à¦•à¦¾à¦° করà§à¦¨" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" -msgstr[1] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"জানà§à§Ÿà¦¾à¦°à¦¿ ফেবà§à¦°à§à§Ÿà¦¾à¦°à¦¿ মারà§à¦š à¦à¦ªà§à¦°à¦¿à¦² মে জà§à¦¨ জà§à¦²à¦¾à¦‡ অাগসà§à¦Ÿ সেপà§à¦Ÿà§‡à¦®à§à¦¬à¦° অকà§à¦Ÿà§‡à¦¾à¦¬à¦° নভেমà§à¦¬à¦° ডিসেমà§à¦¬à¦°" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "র স ম ব ব শ শ" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "দেখান" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "লà§à¦•à¦¾à¦¨" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "রবিবার সোমবার মঙà§à¦—লবার বà§à¦§à¦¬à¦¾à¦° বৃহসà§à¦ªà¦¤à¦¿à¦¬à¦¾à¦° শà§à¦•à§à¦°à¦¬à¦¾à¦° শনিবার" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "à¦à¦–ন" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "ঘড়ি" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "সময় নিরà§à¦¬à¦¾à¦šà¦¨ করà§à¦¨" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "মধà§à¦¯à¦°à¦¾à¦¤" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "৬ পূরà§à¦¬à¦¾à¦¹à§à¦¨" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "দà§à¦ªà§à¦°" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "বাতিল" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "আজ" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "দিনপঞà§à¦œà¦¿à¦•à¦¾" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "গতকাল" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "আগামীকাল" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo deleted file mode 100644 index f485104c9..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.po deleted file mode 100644 index e78025480..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/django.po +++ /dev/null @@ -1,804 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:02+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Bosnian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "UspjeÅ¡no obrisano: %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Da li ste sigurni?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "BriÅ¡i oznaÄene objekte klase %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                By %s:

                \n" -"
                  \n" -msgstr "" -"

                  %s:

                  \n" -"
                    \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Svi" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Da" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ne" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Nepoznato" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Svi datumi" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Danas" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Poslednjih 7 dana" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Ovaj mesec" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Ova godina" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Unesite taÄno korisniÄko ime i lozinku. Pazite na razliku izmjeÄ‘u malih i " -"velikih slova u oba polja" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Prijavite se ponovo poÅ¡to je vaÅ¡a sesija istekla." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "VaÅ¡a email adresa nije vaÅ¡e korisniÄko ime. Probajte sa „%s“." - -#: helpers.py:19 -msgid "Action:" -msgstr "Radnja:" - -#: models.py:19 -msgid "action time" -msgstr "vrijeme radnje" - -#: models.py:22 -msgid "object id" -msgstr "id objekta" - -#: models.py:23 -msgid "object repr" -msgstr "opis objekta" - -#: models.py:24 -msgid "action flag" -msgstr "oznaka radnje" - -#: models.py:25 -msgid "change message" -msgstr "opis izmjene" - -#: models.py:28 -msgid "log entry" -msgstr "zapis u logovima" - -#: models.py:29 -msgid "log entries" -msgstr "zapisi u logovima" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "NiÅ¡ta" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Izmjenjena polja %s" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "i" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "SaÄuvan objekat „%(object)s“ klase %(name)s." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Izmjenjena polja %(list)s objekata „%(object)s“ klase %(name)s ." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Obrisan objekat „%(object)s“ klase %(name)s." - -#: options.py:645 -msgid "No fields changed." -msgstr "Bez izmjena u poljima." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Objekat „%(obj)s“ klase %(name)s saÄuvan je uspjeÅ¡no." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Dole možete ponovo unositi izmjene." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Dole možete dodati novi objekat klase %s" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Objekat „%(obj)s“ klase %(name)s izmjenjen je uspjeÅ¡no." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Objekat „%(obj)s“ klase %(name)s dodat je uspjeÅ¡no. Dole možete unjeti " -"dodatne izmjene." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Predmeti moraju biti izabrani da bi se mogla obaviti akcija nad njima. " -"Nijedan predmet nije bio izmjenjen." - -#: options.py:846 -msgid "No action selected." -msgstr "Nijedna akcija nije izabrana." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Dodaj objekat klase %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Objekat klase %(name)s sa primarnim kljuÄem %(key)r ne postoji." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Izmjeni objekat klase %s" - -#: options.py:1065 -msgid "Database error" -msgstr "GreÅ¡ka u bazi podataka" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 od %(cnt)s izabrani" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Objekat „%(obj)s“ klase %(name)s obrisan je uspjeÅ¡no." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Historijat izmjena: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Prijava" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administracija sistema" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administracija %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Datum:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Vrijeme:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Pretraži" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Dodaj joÅ¡ jedan" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Stranica nije pronaÄ‘ena" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Žao nam je, tražena stranica nije pronaÄ‘ena." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "PoÄetna" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "GreÅ¡ka na serveru" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "GreÅ¡ka na serveru (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "GreÅ¡ka na serveru (500)" - -#: 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 "" -"DoÅ¡lo je do greÅ¡ke. Administrator sajta je obaveÅ¡ten emailom i greÅ¡ka će " -"biti uskoro otklonjena. Hvala na strpljenju." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Pokreni odabranu radnju" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "PoÄni" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Kliknite ovdje da izaberete objekte preko svih stranica" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Izaberite svih %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "IzbriÅ¡ite izbor" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "DobrodoÅ¡li," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentacija" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Promjena lozinke" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Odjava" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django administracija sajta" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django administracija" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Dodaj" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historijat" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Pregled na sajtu" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Dodaj objekat klase %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filter" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "ObriÅ¡i" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Uklanjanje %(object_name)s „%(escaped_object)s“ povlaÄi uklanjanje svih " -"objekata koji su povezani sa ovim objektom, ali vaÅ¡ nalog nema dozvole za " -"brisanje slijedećih tipova objekata:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Da li ste sigurni da želite da obriÅ¡ete %(object_name)s „%(escaped_object)" -"s“? Slijedeći objekti koji su u vezi sa ovim objektom će takoÄ‘er biti " -"obrisani:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Da, siguran sam" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Brisanje viÅ¡e objekata" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modeli dostupni u aplikaciji %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Izmjeni" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Nemate dozvole da unosite bilo kakve izmjene." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Posjlednje radnje" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Moje radnje" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Nema podataka" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Nepoznat sadržaj" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"NeÅ¡to nije uredu sa vaÅ¡om bazom podataka. Provjerite da li postoje " -"odgovarajuće tabele i da li odgovarajući korisnik ima pristup bazi." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Korisnik:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Lozinka:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Datum/vrijeme" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Korisnik" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Radnja" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Ovaj objekat nema zabilježen historijat izmjena. Vjerovatno nije dodan kroz " -"ovaj sajt za administraciju." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Prikaži sve" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "SaÄuvaj" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Pretraga" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "ukupno %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "SaÄuvaj kao novi" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "SaÄuvaj i dodaj slijedeći" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "SaÄuvaj i nastavi sa izmjenama" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Prvo unesite korisniÄko ime i lozinku. Potom ćete moći da mijenjate joÅ¡ " -"korisniÄkih podeÅ¡avanja." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Unesite novu lozinku za korisnika %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Lozinka" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Lozinka (ponovite)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Radi provjere taÄnosti ponovo unesite lozinku koju ste unijeli gore." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Dodaj joÅ¡ jedan %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "ObriÅ¡i" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Brisanje?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Hvala Å¡to ste danas proveli vrijeme na ovom sajtu." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Ponovna prijava" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Izmjena lozinke" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "uspjeÅ¡na izmjena lozinke" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "VaÅ¡a lozinka je izmjenjena." - -#: templates/registration/password_change_form.html:22 -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 "" -"Iz bezbjednosnih razloga prvo unesite svoju staru lozinku, a novu zatim " -"unesite dva puta da bismo mogli da provjerimo da li ste je pravilno unijeli." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Stara lozinka" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nova lozinka" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Izmijeni moju lozinku" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Resetovanje lozinke" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Resetovanje lozinke uspjeÅ¡no" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "VaÅ¡a lozinka je postavljena. Možete se prijaviti." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Potvrda resetovanja lozinke" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Unesite novu lozinku" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Unesite novu lozinku dva puta kako bismo mogli da provjerimo da li ste je " -"pravilno unijeli." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nova lozinka:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Potvrda lozinke:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Resetovanje lozinke neuspjeÅ¡no" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Link za resetovanje lozinke nije važeći, vjerovatno zato Å¡to je već " -"iskorišćen. Ponovo zatražite resetovanje lozinke." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Resetovanje lozinke uspjeÅ¡no." - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Poslali smo uputstva za postavljanje nove lozinke na email adresu koju ste " -"nam dali. Uputstva ćete dobiti uskoro." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Idite na slijedeću stranicu i postavite novu lozinku." - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Ukoliko ste zaboravili, vaÅ¡e korisniÄko ime:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Hvala Å¡to koristite naÅ¡ sajt!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "UredniÅ¡tvo sajta %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Zaboravili ste lozinku? Unesite svoju email adresu dole i poslaćemo vam " -"uputstva za postavljanje nove." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Email adresa:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Resetuj moju lozinku" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Svi datumi" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Odaberi objekat klase %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Odaberi objekat klase %s za izmjenu" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 91e6c5cad..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po deleted file mode 100644 index 138ebf3ff..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/bs/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Bosnian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo deleted file mode 100644 index 4e9a61791..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.po deleted file mode 100644 index 3ae2407b9..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/django.po +++ /dev/null @@ -1,814 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-05 18:52+0000\n" -"Last-Translator: txels \n" -"Language-Team: Catalan \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Eliminat/s %(count)d %(items)s satisfactòriament." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "No es pot esborrar %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "N'esteu segur?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Eliminar els %(verbose_name_plural)s seleccionats" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                    By %s:

                    \n" -"
                      \n" -msgstr "" -"

                      Per %s:

                      \n" -"
                        \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Tots" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Sí" - -#: filterspecs.py:139 -msgid "No" -msgstr "No" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Desconegut" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Qualsevol data" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Avui" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Últims 7 dies" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Aquest mes" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Aquest any" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Si us plau, introduïu un nom d'usuari i contrasenya vàlids. Tingueu en " -"compte que tots dos camps son sensibles a majúscules i minúscules." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Si us plau, entreu de nou perquè la vostra sessió ha caducat." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"La vostra adreça de correu no és el vostre nom d'usuari. Provi '%s' en el " -"seu lloc." - -#: helpers.py:19 -msgid "Action:" -msgstr "Acció:" - -#: models.py:19 -msgid "action time" -msgstr "moment de l'acció" - -#: models.py:22 -msgid "object id" -msgstr "id de l'objecte" - -#: models.py:23 -msgid "object repr" -msgstr "'repr' de l'objecte" - -#: models.py:24 -msgid "action flag" -msgstr "indicador de l'acció" - -#: models.py:25 -msgid "change message" -msgstr "missatge del canvi" - -#: models.py:28 -msgid "log entry" -msgstr "entrada del registre" - -#: models.py:29 -msgid "log entries" -msgstr "entrades del registre" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "cap" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Modificat %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "i" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Afegit %(name)s \"%(object)s\"" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Modificat %(list)s per a %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Eliminat %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Cap camp modificat." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "El/la %(name)s \"%(obj)s\" ha estat afegit/da amb èxit." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Podeu editar-lo de nou a sota." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Podeu afegir un altre %s a sota." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "S'ha modificat amb èxit el/la %(name)s \"%(obj)s." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"S'ha afegit amb èxit el/la %(name)s \"%(obj)s\". Pot editar-lo de nou a sota." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Heu de seleccionar els elements per poder realitzar-hi accions. No heu " -"seleccionat cap element." - -#: options.py:846 -msgid "No action selected." -msgstr "no heu seleccionat cap acció" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Afegir %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "No existeix cap objecte %(name)s amb la clau primària %(key)r." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Modificar %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Error de base de dades" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s s'ha modificat amb èxit." -msgstr[1] "%(count)s %(name)s s'han modificat amb èxit." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s seleccionat(s)" -msgstr[1] "Tots %(total_count)s seleccionat(s)" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 de %(cnt)s seleccionats" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "El/la %(name)s \"%(obj)s\" s'ha eliminat amb èxit." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Modificar històric: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Iniciar sessió" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administració del lloc" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administració de %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Data:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Hora:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Cercar" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Afegir-ne un altre" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "No s'ha pogut trobar la pàgina" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Ho sentim, però no s'ha pogut trobar la pàgina sol·licitada" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Inici" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Error del servidor" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Error del servidor (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Error del servidor (500)" - -#: 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 "" -"S'ha produït un error. Se n'ha informat els administradors del lloc per " -"correu electrònic, i hauria d'arreglar-se en breu. Gràcies per la vostra " -"paciència." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Executar l'acció seleccionada" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Anar" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Feu clic aquí per seleccionar els objectes a totes les pàgines" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Seleccioneu tots %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Netejar la selecció" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Benvingut/da," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentació" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Canviar contrasenya" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Finalitzar sessió" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Lloc administratiu de Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administració de Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Afegir" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Històric" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Veure al lloc" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Si us plau, corregiu l'error mostrat a sota." -msgstr[1] "Si us plau, corregiu els errors mostrats a sota." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Afegir %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtre" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Eliminar" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Eliminar el/la %(object_name)s '%(escaped_object)s' provocaria l'eliminació " -"d'objectes relacionats, però el vostre compte no te permisos per esborrar " -"els tipus d'objecte següents:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Esborrar %(object_name)s '%(escaped_object)s' requeriria esborrar els " -"següents objectes relacionats protegits:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Esteu segurs de voler esborrar els/les %(object_name)s \"%(escaped_object)s" -"\"? S'esborraran els següents elements relacionats:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Sí, n'estic segur" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Eliminar múltiples objectes" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Esborrar els %(objects_name)s seleccionats faria que s'esborréssin objectes " -"relacionats, però el vostre compte no té permisos per esborrar els següents " -"tipus d'objectes:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Esborrar els %(objects_name)s seleccionats requeriria esborrar els següents " -"objectes relacionats protegits:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"N'esteu segur de voler esborrar els %(objects_name)s seleccionats? " -"S'esborraran tots els objects següents i els seus elements relacionats:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "Per %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Models disponibles a l'aplicació %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Modificar" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "No teniu permís per editar res." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Accions recents" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Les meves accions" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Cap disponible" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Contingut desconegut" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Hi ha algun problema a la instal·lació de la vostra base de dades. Assegureu-" -"vos que s'han creat les taules adients, i que la base de dades és llegible " -"per l'usuari apropiat." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Nom d'usuari:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Contrasenya:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Data/hora" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Usuari" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Acció" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Aquest objecte no té historial de canvis. Probablement no es va afegir " -"utilitzant aquest lloc administratiu." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Mostrar tots" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Desar" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Cerca" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultat" -msgstr[1] "%(counter)s resultats" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s en total" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Desar com a nou" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Desar i afegir-ne un de nou" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Desar i continuar editant" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Primer, entreu un nom d'usuari i una contrasenya. Després podreu editar més " -"opcions de l'usuari." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Introduïu un nom d'usuari i contrasenya." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Introduïu una contrasenya per l'usuari %(username)s" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Contrasenya" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Contrasenya (de nou)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Introduïu la mateixa contrasenya de dalt, per fer-ne la verificació." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Afegir un/a altre/a %(verbose_name)s." - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Eliminar" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Eliminar?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Gràcies per passar una estona de qualitat al web durant el dia d'avui." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Iniciar sessió de nou" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Canvi de contrasenya" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Contrasenya canviada amb èxit" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "La seva contrasenya ha estat canviada." - -#: templates/registration/password_change_form.html:22 -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 "" -"Si us plau, introduïu la vostra contrasenya antiga, per seguretat, i tot " -"seguit introduïu la vostra contrasenya nova dues vegades per verificar que " -"l'heu escrita correctament." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Contrasenya antiga" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Contrasenya nova" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Canviar la meva contrasenya:" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Restablir contrasenya" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Contrasenya restablerta" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" -"S'ha canviat la vostra contrasenya. Ara podeu continuar i iniciar sessió." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Confirmació de restabliment de contrasenya" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Introduïu la nova contrasenya" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Si us plau, introduïu la vostra nova contrasenya dues vegades, per verificar " -"que l'heu escrita correctament." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Contrasenya nova:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Confirmar contrasenya:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Restabliment de contrasenya fallat" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"L'enllaç de restabliment de contrasenya era invàlid, potser perquè ja s'ha " -"utilitzat. Si us plau, sol·liciteu un nou reestabliment de contrasenya." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Restabliment de contrasenya amb èxit" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Us hem enviat les instruccions per canviar la vostra contrasenya a l'adreça " -"de correu electrònic que ens heu indicat. L'hauríeu de rebre en breu." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Heu rebut aquest correu perquè vau sol·licitar un reinici de contrasenya per " -"al vostre compte d'usuari a %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Si us plau, aneu a la pàgina següent i escolliu una nova contrasenya:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "El vostre nom d'usuari, en cas que l'hagueu oblidat:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Gràcies per fer ús del nostre lloc!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "L'equip de %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Heu oblidat la vostra contrasenya? Introduïu la vostra adreça de correu " -"electrònic a sota, i us enviarem instruccions per canviar-la." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Adreça de correu electrònic:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Restablir la meva contrasenya" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Totes les dates" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Cap)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Seleccioneu %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Seleccioneu %s per modificar" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo deleted file mode 100644 index b8a2a13fc..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po deleted file mode 100644 index a4e11efd3..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ca/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-05 18:53+0000\n" -"Last-Translator: txels \n" -"Language-Team: Catalan \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s Disponibles" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtre" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Seleccionar tots" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Afegir" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Eliminar" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s Escollits" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Faci les seves seleccions i faci click a" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Deseleccionar tots" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s de %(cnt)s seleccionat" -msgstr[1] "%(sel)s of %(cnt)s seleccionats" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Teniu canvis sense desar a camps editables individuals. Si executeu una " -"acció, es perdran aquests canvis no desats." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Heu seleccionat una acció, però encara no heu desat els vostres canvis a " -"camps individuals. Si us plau premeu OK per desar. Haureu de tornar a " -"executar l'acció." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Heu seleccionat una acció i no heu fet cap canvi a camps individuals. " -"Probablement esteu cercant el botó 'Anar' enlloc de 'Desar'." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Gener Febrer Març Abril Maig Juny Juliol Agost Setembre Octubre Novembre " -"Desembre" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "dg dl dt dc dj dv ds" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Mostrar" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Ocultar" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Diumenge Dilluns Dimarts Dimecres Dijous Divendres Dissabte" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Ara" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Rellotge" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Esculli una hora" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Mitjanit" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Migdia" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Cancel·lar" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Avui" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendari" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Ahir" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Demà" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo deleted file mode 100644 index aa3bdbd46..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.po deleted file mode 100644 index 68d18ea6b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/django.po +++ /dev/null @@ -1,814 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: JirkaV \n" -"Language-Team: Czech \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Úspěšně odstraněno: %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Nelze smazat %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Jste si jisti?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Odstranit vybrané %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                        By %s:

                        \n" -"
                          \n" -msgstr "" -"

                          %s:

                          \n" -"
                            \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "VÅ¡e" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ano" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ne" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Neznámé" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Libovolné datum" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Dnes" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Posledních 7 dní" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Tento mÄ›síc" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Tento rok" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Vložte správné uživatelské jméno a heslo (u obou položek se rozliÅ¡ují malá a " -"velká písmena)." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "PÅ™ihlaste se znovu, vaÅ¡e sezení vyprÅ¡elo." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"VaÅ¡e e-mailová adresa není vaÅ¡e uživatelské jméno. Zkuste místo toho \"%s\"." - -#: helpers.py:19 -msgid "Action:" -msgstr "Operace:" - -#: models.py:19 -msgid "action time" -msgstr "Äas operace" - -#: models.py:22 -msgid "object id" -msgstr "id položky" - -#: models.py:23 -msgid "object repr" -msgstr "reprez. položky" - -#: models.py:24 -msgid "action flag" -msgstr "příznak operace" - -#: models.py:25 -msgid "change message" -msgstr "zpráva o zmÄ›nÄ›" - -#: models.py:28 -msgid "log entry" -msgstr "položka protokolu" - -#: models.py:29 -msgid "log entries" -msgstr "položky protokolu" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Žádný" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "ZmÄ›nÄ›no: %s" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "a" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Položka \"%(object)s\" typu %(name)s byla pÅ™idána." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "" -"Pole \"%(list)s\" pro položku \"%(object)s\" typu %(name)s zmÄ›nÄ›no/zmÄ›nÄ›na." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Položka \"%(object)s\" typu %(name)s byla odstranÄ›na." - -#: options.py:645 -msgid "No fields changed." -msgstr "Nebyla zmÄ›nÄ›na žádná pole." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Položka \"%(obj)s\" typu %(name)s byla úspěšnÄ› pÅ™idána." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "V úpravách můžete pokraÄovat níže." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Níže můžete pÅ™idat další položku typu %s." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Položka \"%(obj)s\" typu %(name)s byla úspěšnÄ› zmÄ›nÄ›na." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Položka \"%(obj)s\" typu %(name)s byla úspěšnÄ› pÅ™idána. Níže můžete v " -"úpravách pokraÄovat." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"K provedení hromadných operací je tÅ™eba vybrat nÄ›jaké položky. NedoÅ¡lo k " -"žádným zmÄ›nám." - -#: options.py:846 -msgid "No action selected." -msgstr "Nebyla vybrána žádná operace." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s: pÅ™idat" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Položka \"%(name)s\" s primárním klíÄem \"%(key)r\" neexistuje." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s: zmÄ›nit" - -#: options.py:1065 -msgid "Database error" -msgstr "Chyba databáze" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "Položka %(name)s byla úspěšnÄ› zmÄ›nÄ›na." -msgstr[1] "%(count)s položky %(name)s byly úspěšnÄ› zmÄ›nÄ›ny." -msgstr[2] "%(count)s položek %(name)s bylo úspěšnÄ› zmÄ›nÄ›no." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s položka vybrána." -msgstr[1] "VÅ¡echny %(total_count)s položky vybrány." -msgstr[2] "Vybráno vÅ¡ech %(total_count)s položek." - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "Vybraných je 0 položek z celkem %(cnt)s." - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Položka \"%(obj)s\" typu %(name)s byla úspěšnÄ› odstranÄ›na." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Historie zmÄ›n: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "PÅ™ihlášení" - -#: sites.py:375 -msgid "Site administration" -msgstr "Správa webu" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Správa aplikace %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Datum:" - -#: widgets.py:75 -msgid "Time:" -msgstr "ÄŒas:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Hledat" - -#: widgets.py:246 -msgid "Add Another" -msgstr "PÅ™idat další" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Stránka nenalezena" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Požadovaná stránka nebyla bohužel nalezena." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Domů" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Chyba serveru" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Chyba serveru (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Chyba serveru (500)" - -#: 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 "" -"DoÅ¡lo k chybÄ›. Byla oznámena správci serveru e-mailem a mÄ›la by být brzy " -"odstranÄ›na. DÄ›kujeme za trpÄ›livost." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Provést vybranou operaci" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Provést" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Klepnutím zde vyberete položky ze vÅ¡ech stránek." - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Vybrat vÅ¡echny položky typu %(module_name)s, celkem %(total_count)s." - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "ZruÅ¡it výbÄ›r" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Vítejte, uživateli" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentace" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "ZmÄ›nit heslo" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Odhlásit se" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Správa webu Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Správa systému Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "PÅ™idat" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historie" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Zobrazení na webu" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Opravte níže uvedenou chybu." -msgstr[1] "Opravte níže uvedené chyby." -msgstr[2] "Opravte níže uvedené chyby." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s: pÅ™idat" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtr" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Odstranit" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"OdstranÄ›ní položky \"%(escaped_object)s\" typu %(object_name)s by vyústilo v " -"odstranÄ›ní souvisejících položek. Nemáte vÅ¡ak oprávnÄ›ní k odstranÄ›ní položek " -"následujících typů:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"OdstranÄ›ní položky '%(escaped_object)s' typu %(object_name)s by vyžadovalo " -"odstranÄ›ní souvisejících chránÄ›ných položek:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Opravdu má být odstranÄ›na položka \"%(escaped_object)s\" typu %(object_name)" -"s? Následující související položky budou vÅ¡echny odstranÄ›ny:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ano, jsem si jist(a)" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Odstranit vybrané položky" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"OdstranÄ›ní položky typu %(objects_name)s by vyústilo v odstranÄ›ní " -"souvisejících položek. Nemáte vÅ¡ak oprávnÄ›ní k odstranÄ›ní položek " -"následujících typů:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"OdstranÄ›ní vybrané položky typu %(objects_name)s by vyžadovalo odstranÄ›ní " -"následujících souvisejících chránÄ›ných položek:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Opravdu má být odstranÄ›ny vybrané položky typu %(objects_name)s? VÅ¡echny " -"vybrané a s nimi související položky budou odstranÄ›ny:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Dle: %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Dostupné modely v aplikaci %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "ZmÄ›nit" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Nemáte oprávnÄ›ní nic mÄ›nit." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Poslední operace" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "VaÅ¡e operace" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Nic" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Neznámý obsah" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Potíže s nainstalovanou databází. UjistÄ›te se, že byly vytvoÅ™eny " -"odpovídající tabulky a že databáze je přístupná pro Ätení přísluÅ¡ným " -"uživatelem." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Uživatelské jméno:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Heslo:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Datum a Äas" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Uživatel" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Operace" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Tato položka nemá historii zmÄ›n. PravdÄ›podobnÄ› nebyla pÅ™idána tímto " -"administraÄním rozhraním." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Zobrazit vÅ¡e" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Uložit" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Hledat" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s výsledek" -msgstr[1] "%(counter)s výsledky" -msgstr[2] "%(counter)s výsledků" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "Celkem %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Uložit jako novou položku" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Uložit a pÅ™idat další položku" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Uložit a pokraÄovat v úpravách" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Nejdříve vložte uživatelské jméno a heslo. Poté budete moci upravovat více " -"uživatelských nastavení." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Vložte uživatelské jméno a heslo." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Vložte nové heslo pro uživatele %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Heslo" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Heslo (znovu)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Pro ověření vložte stejné heslo znovu." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "PÅ™idat %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Odebrat" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Odstranit?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "DÄ›kujeme za Äas strávený s tímto webem." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "PÅ™ihlaste se znovu" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "ZmÄ›na hesla" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "ZmÄ›na hesla byla úspěšná" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "VaÅ¡e heslo bylo zmÄ›nÄ›no." - -#: templates/registration/password_change_form.html:22 -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 "" -"Vložte svoje souÄasné heslo a poté vložte dvakrát heslo nové. Omezíme tak " -"možnost pÅ™eklepu." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "SouÄasné heslo" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nové heslo" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "ZmÄ›nit heslo" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Obnovení hesla" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Heslo bylo obnoveno" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "VaÅ¡e heslo bylo nastaveno. Nyní se můžete pÅ™ihlásit." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Potvrzení obnovy hesla" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Vložte nové heslo" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "Vložte dvakrát nové heslo. Tak ověříme, že bylo zadáno správnÄ›." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nové heslo:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Potvrdit heslo:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Obnovení hesla bylo neúspěšné" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Odkaz pro obnovení hesla byl neplatný, možná již byl použit. Požádejte o " -"obnovení hesla znovu." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Obnovení hesla bylo úspěšné" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Poslali jsme vám e-mailem pokyny pro nastavení hesla na vámi zadanou e-" -"mailovou adresu. Za chvíli by mÄ›ly dorazit do vaší schránky." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Obdrželi jste tento e-mail, protože byl vyžádán reset hesla pro vaÅ¡e " -"uživatelské jméno na %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "PÅ™ejdÄ›te na následující stránku a zadejte nové heslo:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Pro jistotu vaÅ¡e uživatelské jméno:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "DÄ›kujeme za používání naÅ¡eho webu!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Tým aplikace %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"ZapomnÄ›l(a) jste své souÄasné heslo? Vložte svou e-mailovou adresu a e-" -"mailem obdržíte pokyny pro nastavení nového." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mailová adresa:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Obnovit heslo" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "VÅ¡echna data" - -#: views/main.py:27 -msgid "(None)" -msgstr "(None)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s: vybrat" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Vyberte položku %s ke zmÄ›nÄ›" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 87b83fac5..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po deleted file mode 100644 index b888918f2..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/cs/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: JirkaV \n" -"Language-Team: Czech \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Dostupné položky: %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtr" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Vybrat vÅ¡e" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "PÅ™idat" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Odebrat" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Vybrané položky: %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Vyberte si a kliknÄ›te " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Odebrat vÅ¡e" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "Vybrána je %(sel)s položka z celkem %(cnt)s." -msgstr[1] "Vybrány jsou %(sel)s položky z celkem %(cnt)s." -msgstr[2] "Vybraných je %(sel)s položek z celkem %(cnt)s." - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"V jednotlivých polích jsou neuložené zmÄ›ny, které budou ztraceny, pokud " -"operaci provedete." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Byla vybrána operace, ale dosud nedoÅ¡lo k uložení zmÄ›n jednotlivých polí. " -"Uložíte klepnutím na tlaÄítko OK. Pak bude tÅ™eba operaci spustit znovu." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Byla vybrána operace a jednotlivá pole nejsou zmÄ›nÄ›ná. PatrnÄ› hledáte " -"tlaÄítko Provést spíše než Uložit." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"leden únor bÅ™ezen duben kvÄ›ten Äerven Äervenec srpen září říjen listopad " -"prosinec" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "n p ú s Ä p s" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Zobrazit" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Skrýt" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "NedÄ›le PondÄ›lí Úterý StÅ™eda ÄŒtvrtek Pátek Sobota" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Nyní" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Hodiny" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Vyberte Äas" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Půlnoc" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6h ráno" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Poledne" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Storno" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Dnes" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalendář" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "VÄera" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Zítra" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo deleted file mode 100644 index 99231318b..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.po deleted file mode 100644 index 83c770af4..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/django.po +++ /dev/null @@ -1,782 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " -"11) ? 2 : 3\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Ydych yn sicr?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                            By %s:

                            \n" -"
                              \n" -msgstr "" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ie" - -#: filterspecs.py:139 -msgid "No" -msgstr "Na" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Unrhyw dyddiad" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Heddiw" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "7 diwrnod gorffennol" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Mis yma" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Blwyddyn yma" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" - -#: helpers.py:19 -msgid "Action:" -msgstr "" - -#: models.py:19 -msgid "action time" -msgstr "amser gweithred" - -#: models.py:22 -msgid "object id" -msgstr "id gwrthrych" - -#: models.py:23 -msgid "object repr" -msgstr "repr gwrthrych" - -#: models.py:24 -msgid "action flag" -msgstr "fflag gweithred" - -#: models.py:25 -msgid "change message" -msgstr "neges newid" - -#: models.py:28 -msgid "log entry" -msgstr "cofnod" - -#: models.py:29 -msgid "log entries" -msgstr "cofnodion" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Newidiwyd %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ac" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:645 -msgid "No fields changed." -msgstr "" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Ychwanegu %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Newidio %s" - -#: options.py:1065 -msgid "Database error" -msgstr "" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Hanes newid: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Mewngofnodi" - -#: sites.py:375 -msgid "Site administration" -msgstr "Gweinyddiad safle" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "" - -#: widgets.py:75 -msgid "Date:" -msgstr "Dyddiad:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Amser:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "" - -#: widgets.py:246 -msgid "Add Another" -msgstr "" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Tudalen heb ei ddarganfod" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Mae'n ddrwg gennym, ond nid darganfwyd y dudalen a dymunwyd" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Adref" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Gwall gweinyddwr" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Gwall gweinyddwr (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Gwall Gweinyddwr (500)" - -#: 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 "" -"Mae gwall wedi digwydd. Adroddwyd i weinyddwyr y safle drwy e-bost ac ddylai " -"cael ei drwsio cyn bo hir." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Ewch" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Croeso," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dogfennaeth" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Newid cyfrinair" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Allgofnodi" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Gweinyddiad safle Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Gweinyddiad Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Ychwanegu" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Hanes" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Gweld ar safle" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Ychwanegu %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Dileu" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Yndw, rwy'n sicr" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Newidio" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Does genych ddim hawl i olygu unrhywbeth." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Gweithredau Diweddar" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Fy Ngweithredau" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Dim ar gael" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Enw defnyddiwr:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Cyfrinair:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Dyddiad/amser" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Defnyddiwr" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Gweithred" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Does dim hanes newid gan y gwrthrych yma. Mae'n debyg ni ychwanegwyd drwy'r " -"safle gweinydd yma." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Cadw" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Cadw fel newydd" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Cadw ac ychwanegu un arall" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Cadw ac parhau i olygu" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Diolch am dreulio amser ansawdd gyda'r safle we heddiw 'ma." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Ailmewngofnodi" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Newid cyfrinair" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Newid cyfrinair yn lwyddianus" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Newidwyd eich cyfrinair." - -#: templates/registration/password_change_form.html:22 -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 "" -"Rhowch eich cyfrinair hen, er mwyn gwarchodaeth, yna rhowch eich cyfrinair " -"newydd dwywaith er mwyn i ni wirio y teipiwyd yn gywir." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Newidio fy nghyfrinair" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Ailosod cyfrinair" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Cyfrinair newydd:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Cadarnhewch cyfrinair:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Ailosod cyfrinair yn lwyddianus" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Eich enw defnyddiwr, rhag ofn chi wedi anghofio:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Diolch am ddefnyddio ein safle!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Y tîm %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Cyfeiriad e-bost:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Ailosodi fy nghyfrinair" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Dyddiadau i gyd" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Dewis %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Dewis %s i newid" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 5fcea3a55..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po deleted file mode 100644 index 9f0ee0480..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/cy/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " -"11) ? 2 : 3\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Ionawr Chwefror Mawrth Ebrill Mai Mehefin Gorffennaf Medi Hydref Tachwedd " -"Rhagfyr" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S Ll M M I G S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Nawr" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Cloc" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Dewis amser" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Hanner nos" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 y.b." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Hanner dydd" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Diddymu" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Heddiw" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendr" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Ddoe" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Yfory" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo deleted file mode 100644 index 745968f7e..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.po deleted file mode 100644 index 144c2d928..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/django.po +++ /dev/null @@ -1,809 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-07 20:44+0000\n" -"Last-Translator: finngruwier \n" -"Language-Team: Danish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s blev slettet." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Kan ikke slette %(name)s " - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Er du sikker?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Slet valgte %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                              By %s:

                              \n" -"
                                \n" -msgstr "" -"

                                Efter %s:

                                \n" -"
                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Alle" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ja" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nej" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Ukendt" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Når som helst" - -#: filterspecs.py:197 -msgid "Today" -msgstr "I dag" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "De sidste 7 dage" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Denne måned" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Dette år" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Indtast venligst et korrekt brugernavn og adgangskode. Bemærk, at begge " -"felter er versalfølsomme." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Log venligst ind igen, da din session er udløbet." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Din e-mail-adresse er ikke dit brugernavn. Prøv '%s' i stedet." - -#: helpers.py:19 -msgid "Action:" -msgstr "Handling" - -#: models.py:19 -msgid "action time" -msgstr "handlingstid" - -#: models.py:22 -msgid "object id" -msgstr "objekt-ID" - -#: models.py:23 -msgid "object repr" -msgstr "objekt repr" - -#: models.py:24 -msgid "action flag" -msgstr "handlingsflag" - -#: models.py:25 -msgid "change message" -msgstr "ændringsmeddelelse" - -#: models.py:28 -msgid "log entry" -msgstr "logmeddelelse" - -#: models.py:29 -msgid "log entries" -msgstr "logmeddelelser" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ingen" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Ændrede %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "og" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Tilføjede %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Ændrede %(list)s for %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Slettede %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Ingen felter ændret." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" blev tilføjet i databasen." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Du kan redigere det igen herunder." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Du kan tilføje endnu en %s herunder." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" blev ændret." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" blev tilføjet. Du kan redigere det igen herunder." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Der skal være valgt nogle emner for at man kan udføre handlinger på dem. " -"Ingen emner er blev ændret." - -#: options.py:846 -msgid "No action selected." -msgstr "Ingen handling valgt." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Tilføj %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Der findes ikke et %(name)s-objekt med primærnøgle %(key)r." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Ret %s" - -#: options.py:1065 -msgid "Database error" -msgstr "databasefejl" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s blev ændret." -msgstr[1] "%(count)s %(name)s blev ændret." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s valgt" -msgstr[1] "Alle %(total_count)s valgt" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 af %(cnt)s valgt" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" blev slettet." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Ændringshistorik: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Log ind" - -#: sites.py:375 -msgid "Site administration" -msgstr "Website-administration" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administration af %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Dato:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Tid:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Slå op" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Tilføj endnu en" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Siden blev ikke fundet" - -#: 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" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Hjem" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Serverfejl" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Serverfejl (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Serverfejl (500)" - -#: 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 website-administratoren via e-" -"mail, og vil blive rettet hurtigst muligt. Tak for din tålmodighed." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Udfør den valgte handling" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Udfør" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Klik her for at vælge objekter på tværs af alle sider" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Vælg alle %(total_count)s %(module_name)s " - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Ryd valg" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Velkommen," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentation" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Skift adgangskode" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Log ud" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django website-administration" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django administration" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Tilføj" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historik" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Se på website" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Ret venligst fejlen herunder." -msgstr[1] "Ret venligst fejlene herunder." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Tilføj %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtrer" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Slet" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_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 '%(escaped_object)s', vil du også slette " -"relaterede objekter, men din konto har ikke rettigheder til at slette " -"følgende objekttyper:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Sletning af %(object_name)s ' %(escaped_object)s ' vil kræve sletning af " -"følgende beskyttede relaterede objekter:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Er du sikker på du vil slette %(object_name)s \"%(escaped_object)s\"? Alle " -"de følgende relaterede objekter vil blive slettet:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ja, jeg er sikker" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Slet flere objekter" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Sletning af de valgte %(objects_name)s ville resultere i sletning af " -"relaterede objekter, men din konto har ikke tilladelse til at slette " -"følgende typer af objekter:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Sletning af de valgte %(objects_name)s vil kræve sletning af følgende " -"beskyttede relaterede objekter:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Er du sikker på du vil slette de valgte %(objects_name)s? Alle de følgende " -"objekter og deres relaterede emner vil blive slettet:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Efter %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modeller til rådighed i %(name)s-applikationen." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Ret" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Du har ikke rettigheder til at foretage ændringer." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Seneste handlinger" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mine handlinger" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ingen tilgængelige" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Ukendt indhold" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Der er noget galt med databaseinstallationen. Kontroller om " -"databasetabellerne er blevet oprettet og at databasen er læsbar for den " -"pågældende bruger." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Brugernavn:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Adgangskode:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Dato/tid" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Bruger" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Funktion" - -#: templates/admin/object_history.html:38 -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" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Vis alle" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Gem" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Søg" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] " %(counter)s resultat" -msgstr[1] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s i alt" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Gem som ny" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Gem og tilføj endnu en" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Gem og fortsæt med at redigere" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Indtast først et brugernavn og en adgangskode. Derefter får du yderligere " -"redigeringsmuligheder." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Indtast et brugernavn og en adgangskode." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Indtast en ny adgangskode for brugeren %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Adgangskode" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Adgangskode (igen)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Indtast den samme adgangskode som ovenfor for verifikation." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Tilføj endnu en %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Fjern" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Slet?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Tak for den kvalitetstid du brugte på websitet i dag." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Log ind igen" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Skift adgangskode" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Adgangskoden blev ændret" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Din adgangskode blev ændret." - -#: templates/registration/password_change_form.html:22 -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 for en sikkerheds skyld og indtast så " -"din nye adgangskode to gange, så vi kan være sikre på, at den er indtastet " -"korrekt." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Gammel adgangskode" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Ny adgangskode" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Skift min adgangskode" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Nulstil adgangskode" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Adgangskoden blev nulstillet" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Din adgangskode er blevet sat. Du kan logge ind med den nu." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Bekræftelse for nulstilling af adgangskode" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Indtast ny adgangskode" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Indtast venligst din nye adgangskode to gange, så vi kan være sikre på, at " -"den er indtastet korrekt." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Ny adgangskode:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Bekræft ny adgangskode:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Adgangskoden blev ikke nulstillet" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Linket for nulstilling af adgangskoden er ugyldigt, måske fordi det allerede " -"har været brugt. Anmod venligst påny om nulstilling af adgangskoden." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Adgangskoden blev nulstillet" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Vi har sendt en instruktion til din e-mail-adresse. Du skulle modtage den om " -"ganske kort tid." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Du modtager denne e-mail, fordi du har anmodet om en nulstilling af " -"adgangskoden til din brugerkonto ved %(site_name)s ." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Gå venligst til denne side og vælg en ny adgangskode:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "For det tilfælde at du skulle have glemt dit brugernavn er det:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Tak fordi du brugte vores website!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Med venlig hilsen %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Har du glemt din adgangskode? Indtast din e-mail-adresse herunder, så sender " -"vi dig en instruktion vedrørende ny adgangskode." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mail-adresse:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Nulstil min adgangskode" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Alle datoer" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ingen)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Vælg %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Vælg %s, der skal ændres" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo deleted file mode 100644 index a301f76e3..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po deleted file mode 100644 index fc1b22e66..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/da/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,153 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-07 20:45+0000\n" -"Last-Translator: finngruwier \n" -"Language-Team: Danish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Tilgængelige %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtrér" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Vælg alle" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Tilføj" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Fjern" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Valgte %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Foretag dit/dine valg og klik " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Fravælg alle" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s af %(cnt)s valgt" -msgstr[1] "%(sel)s af %(cnt)s valgt" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Du har ugemte ændringer af et eller flere redigerbare felter. Hvis du " -"udfører en handling fra drop-down-menuen, vil du miste disse ændringer." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Du har valgt en handling, men du har ikke gemt dine ændringer til et eller " -"flere felter. Klik venligst OK for at gemme og vælg dernæst handlingen igen." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Du har valgt en handling, og du har ikke udført nogen ændringer på felter. " -"Det, du søger er formentlig Udfør-knappen i stedet for Gem-knappen." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Januar Februar Marts April Maj Juni Juli August September Oktober November " -"December" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M T O T F L" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Vis" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Skjul" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Søndag Mandag Tirsdag Onsdag Torsdag Fredag Lørdag" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Nu" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Ur" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Vælg et tidspunkt" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Midnat" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 morgen" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Middag" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Annuller" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "I dag" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalender" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "I går" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "I morgen" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.mo deleted file mode 100644 index 61cef1d9e..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.po deleted file mode 100644 index 8712ba365..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/django.po +++ /dev/null @@ -1,819 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: German <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Erfolgreich %(count)d %(items)s gelöscht." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Kann %(name)s nicht löschen" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Sind Sie sicher?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Ausgewählte %(verbose_name_plural)s löschen" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                  By %s:

                                  \n" -"
                                    \n" -msgstr "" -"

                                    Nach %s:

                                    \n" -"
                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Alle" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ja" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nein" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Unbekannt" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Alle Daten" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Heute" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Letzte 7 Tage" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Diesen Monat" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Dieses Jahr" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Bitte einen gültigen Benutzernamen und ein Passwort eingeben. Beide Felder " -"berücksichtigen die Groß-/Kleinschreibung." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Bitte melden Sie sich erneut an, da Ihre Sitzung abgelaufen ist." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Die E-Mail-Adresse entspricht nicht Ihrem Benutzernamen. Bitte stattdessen '%" -"s' versuchen." - -#: helpers.py:19 -msgid "Action:" -msgstr "Aktion:" - -#: models.py:19 -msgid "action time" -msgstr "Zeitpunkt der Aktion" - -#: models.py:22 -msgid "object id" -msgstr "Objekt-ID" - -#: models.py:23 -msgid "object repr" -msgstr "Objekt Darst." - -#: models.py:24 -msgid "action flag" -msgstr "Aktionskennzeichen" - -#: models.py:25 -msgid "change message" -msgstr "Änderungsmeldung" - -#: models.py:28 -msgid "log entry" -msgstr "Logeintrag" - -#: models.py:29 -msgid "log entries" -msgstr "Logeinträge" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "-" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s geändert." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "und" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" hinzugefügt." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(list)s von %(name)s \"%(object)s\" geändert." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" gelöscht." - -#: options.py:645 -msgid "No fields changed." -msgstr "Keine Felder geändert." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" wurde erfolgreich hinzugefügt." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Das Element kann jetzt erneut bearbeitet werden." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Es kann ein weiteres Element des Typs %s angelegt werden." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" wurde erfolgreich geändert." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" wurde erfolgreich hinzugefügt. Das Element kann jetzt " -"geändert werden." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Es müssen Objekte aus der Liste ausgewählt werden, um Aktionen " -"durchzuführen. Es wurden keine Objekte geändert." - -#: options.py:846 -msgid "No action selected." -msgstr "Keine Aktion ausgewählt." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s hinzufügen" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" -"Das %(name)s-Objekt mit dem Primärschlüssel %(key)r ist nicht vorhanden." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s ändern" - -#: options.py:1065 -msgid "Database error" -msgstr "Datenbankfehler" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s \"%(name)s\" wurde erfolgreich geändert." -msgstr[1] "%(count)s \"%(name)s\" wurden erfolgreich geändert." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s ausgewählt" -msgstr[1] "Alle %(total_count)s ausgewählt" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 von %(cnt)s ausgewählt" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" wurde erfolgreich gelöscht." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Änderungsgeschichte: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Anmelden" - -#: sites.py:375 -msgid "Site administration" -msgstr "Website-Verwaltung" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s-Verwaltung" - -#: widgets.py:75 -msgid "Date:" -msgstr "Datum:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Zeit:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Suchen" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Neu hinzufügen" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Seite nicht gefunden" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "" -"Es tut uns leid, aber die angeforderte Seite konnte nicht gefunden werden." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Start" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Serverfehler" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Serverfehler (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Serverfehler (500)" - -#: 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 "" -"Ein Fehler ist aufgetreten. Dieser Fehler wurde an die Serververwalter per E-" -"Mail gemeldet und sollte in Kürze behoben sein. Vielen Dank für Ihr " -"Verständnis." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Ausgewählte Aktion ausführen" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Ausführen" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Hier klicken, um die Objekte aller Seiten auszuwählen" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Alle %(total_count)s %(module_name)s auswählen" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Auswahl widerrufen" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Willkommen," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentation" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Passwort ändern" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Abmelden" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django-Systemverwaltung" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django-Verwaltung" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Hinzufügen" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Geschichte" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Auf der Website anzeigen" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Bitte den aufgeführten Fehler korrigieren." -msgstr[1] "Bitte die aufgeführten Fehler korrigieren." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s hinzufügen" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filter" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Löschen" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Das Löschen des %(object_name)s '%(escaped_object)s' hätte das Löschen davon " -"abhängiger Daten zur Folge, aber Sie haben nicht die nötigen Rechte, um die " -"folgenden davon abhängigen Daten zu löschen:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Das Löschen von %(object_name)s „%(escaped_object)s“ würde ein Löschen der " -"folgenden geschützten verwandten Objekte erfordern:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Sind Sie sicher, dass Sie %(object_name)s \"%(escaped_object)s\" löschen " -"wollen? Es werden zusätzlich die folgenden davon abhängigen Daten gelöscht:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ja, ich bin sicher" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Mehrere Objekte löschen" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Das Löschen der ausgewählten %(objects_name)s würde im Löschen geschützter " -"verwandter Objekte resultieren, allerdings besitzt Ihr Benutzerkonto nicht " -"die nötigen Rechte um diese zu löschen:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Das Löschen der ausgewählten %(objects_name)s würde ein Löschen der " -"folgenden geschützten verwandten Objekte erfordern:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Sind Sie sicher, dass Sie die ausgewählten %(objects_name)s löschen wollen? " -"Alle folgenden Objekte und ihre verwandten Objekte werden gelöscht:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Nach %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modelle, die in der Anwendung %(name)s vorhanden sind." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Ändern" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Sie haben keine Berechtigung, irgendetwas zu ändern." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Kürzliche Aktionen" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Meine Aktionen" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Keine vorhanden" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Unbekannter Inhalt" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Etwas stimmt nicht mit der Datenbankkonfiguration. Bitte sicherstellen, dass " -"die richtigen Datenbanktabellen angelegt wurden und die Datenbank vom " -"verwendeten Datenbankbenutzer auch lesbar ist." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Benutzername:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Passwort:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Datum/Zeit" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Benutzer" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Aktion" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Dieses Objekt hat keine Änderungsgeschichte. Es wurde möglicherweise nicht " -"über diese Verwaltungsseiten angelegt." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Zeige alle" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Sichern" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Suchen" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s Ergebnis" -msgstr[1] "%(counter)s Ergebnisse" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s gesamt" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Als neu sichern" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Sichern und neu hinzufügen" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Sichern und weiter bearbeiten" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Zuerst einen Benutzer und ein Passwort eingeben. Danach können weitere " -"Optionen für den Benutzer geändert werden." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Bitte einen Benutzernamen und ein Passwort eingeben." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Bitte geben Sie ein neues Passwort für den Benutzer %(username)s ein." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Passwort" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Passwort (wiederholen)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Bitte das gleiche Passwort zur Ãœberprüfung nochmal eingeben." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "%(verbose_name)s hinzufügen" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Entfernen" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Löschen?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Vielen Dank, dass Sie hier ein paar nette Minuten verbracht haben." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Erneut anmelden" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Passwort ändern" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Passwort erfolgreich geändert" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Ihr Passwort wurde geändert." - -#: templates/registration/password_change_form.html:22 -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 "" -"Bitte geben Sie aus Sicherheitsgründen erst Ihr altes Passwort und darunter " -"dann zweimal (um sicherzustellen, dass Sie es korrekt eingegeben haben) das " -"neue Passwort ein." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Altes Passwort" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Neues Passwort" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Mein Passwort ändern" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Passwort zurücksetzen" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Passwort zurücksetzen beendet" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Ihr Passwort wurde zurückgesetzt. Sie können sich nun anmelden." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Zurücksetzen des Passworts bestätigen" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Neues Passwort eingeben" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Bitte geben Sie Ihr neues Passwort zweimal ein, damit wir überprüfen können, " -"ob es richtig eingetippt wurde." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Neues Passwort:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Passwort wiederholen:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Passwort wurde nicht erfolgreich zurückgesetzt" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Der Link zum Zurücksetzen Ihres Passworts ist ungültig, wahrscheinlich weil " -"er schon einmal benutzt wurde. Bitte setzen Sie Ihr Passwort erneut zurück." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Passwort wurde erfolgreich zurückgesetzt" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Wir haben Ihnen eine E-Mail mit Anweisungen zum Zurücksetzen Ihres Passwort " -"an die von Ihnen angegebene E-Mail-Adresse geschickt. Sie sollten diese in " -"Kürze erhalten." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Sie erhalten diese E-Mail, da Sie das Passwort für ihren %(site_name)s " -"Account zurücksetzen lassen möchten." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Bitte öffnen Sie folgende Seite, um Ihr neues Passwort einzugeben:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Ihr Benutzername, falls Sie ihn vergessen haben:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Vielen Dank, dass Sie unsere Website benutzen!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Das Team von %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Passwort vergessen? Einfach Ihre E-Mail-Adresse eingeben und wir senden " -"Ihnen Anweisungen zum Zurücksetzen Ihres Passworts." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-Mail-Adresse:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Mein Passwort zurücksetzen" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Alle Daten" - -#: views/main.py:27 -msgid "(None)" -msgstr "(leer)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s auswählen" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "%s zur Änderung auswählen" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 2997062f1..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po deleted file mode 100644 index 4dd5a1f02..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/de/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,156 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: ahagenbruch \n" -"Language-Team: German <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Verfügbare %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filter" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Alles auswählen" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Hinzufügen" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Entfernen" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Ausgewählte %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Auswahl treffen und Klick auf" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Alles abwählen" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s von %(cnt)s ausgewählt" -msgstr[1] "%(sel)s von %(cnt)s ausgewählt" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Sie haben Änderungen an editierbaren Feldern vorgenommen und nicht " -"gespeichert. Wollen Sie die Aktion trotzdem ausführen und Ihre Änderungen " -"verwerfen?" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Sie haben eine Aktion ausgewählt, aber ihre vorgenommenen Änderungen nicht " -"gespeichert. Klicken Sie OK, um dennoch zu speichern. Danach müssen Sie die " -"Aktion erneut ausführen." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Sie haben eine Aktion ausgewählt, aber keine Änderungen an editierbaren " -"Feldern vorgenommen. Sie wollten wahrscheinlich auf 'Ausführen' und nicht " -"auf 'Speichern' klicken." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Januar Februar März April Mai Juni Juli August September Oktober November " -"Dezember" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M D M D F S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Einblenden" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Ausblenden" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Sonntag Montag Dienstag Mittwoch Donnerstag Freitag Samstag" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Jetzt" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Uhr" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Uhrzeit" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Mitternacht" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 Uhr" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Mittag" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Abbrechen" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Heute" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalender" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Gestern" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Morgen" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo deleted file mode 100644 index 26736ccf6..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.po deleted file mode 100644 index bb3903ece..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/django.po +++ /dev/null @@ -1,830 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: pagles \n" -"Language-Team: Greek <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Επιτυχημένη διαγÏαφή %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "ΑδÏνατη τη διαγÏαφή του %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Είστε σίγουÏοι;" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "ΔιαγÏαφη επιλεγμένων %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                      By %s:

                                      \n" -"
                                        \n" -msgstr "" -"

                                        Από %s:

                                        \n" -"
                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Όλα" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Îαι" - -#: filterspecs.py:139 -msgid "No" -msgstr "Όχι" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Άγνωστο" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Οποιαδήποτε ημεÏομηνία" - -#: filterspecs.py:197 -msgid "Today" -msgstr "ΣήμεÏα" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Τελευταίες 7 ημέÏες" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Αυτόν το μήνα" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Αυτόν το χÏόνο" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"ΠαÏακαλοÏμε εισάγετε ένα σωστό όνομα χÏήστη και συνθηματικό. Îα σημειωθεί " -"ότι και τα δÏο πεδία κάνουν διάκÏιση Î¼ÎµÏ„Î±Î¾Ï Ï€ÎµÎ¶ÏŽÎ½ και κεφαλαίων." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Η συνεδÏία σας έχει λήξει. ΠαÏακαλοÏμε συνδεθείτε ξανά." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Η ηλεκτÏονική σας διεÏθυνση δεν είναι το όνομα χÏήστη σας. Δοκιμάστε '%s' " -"στη θέση αυτοÏ." - -#: helpers.py:19 -msgid "Action:" -msgstr "ΕνέÏγεια:" - -#: models.py:19 -msgid "action time" -msgstr "ÏŽÏα ενέÏγειας" - -#: models.py:22 -msgid "object id" -msgstr "κωδικός αντικειμένου" - -#: models.py:23 -msgid "object repr" -msgstr "αναπαÏάσταση αντικειμένου" - -#: models.py:24 -msgid "action flag" -msgstr "σημαία ενέÏγειας" - -#: models.py:25 -msgid "change message" -msgstr "αλλαγή μηνÏματος" - -#: models.py:28 -msgid "log entry" -msgstr "εγγÏαφή καταγÏαφής" - -#: models.py:29 -msgid "log entries" -msgstr "εγγÏαφές καταγÏαφής" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Κανένα" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Έγινε επεξεÏγασία του %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "και" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "ΠÏοστέθηκε %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Έγινε επεξεÏγασία %(list)s για %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "ΔιαγÏάφη %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Κανένα πεδίο δεν άλλαξε." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Το %(name)s \"%(obj)s\" αποθηκεÏτηκε με επιτυχία." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "ΜποÏείτε να το επεξεÏγαστείτε ξανά παÏακάτω." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "ΜποÏείτε να Ï€Ïοσθέσετε ακόμα ένα %s παÏακάτω." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Το %(name)s \"%(obj)s\" αλλάχτηκε με επιτυχία." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Το %(name)s \"%(obj)s\" αποθηκεÏτηκε με επιτυχία. ΜποÏείτε να το " -"επεξεÏγαστείτε πάλι παÏακάτω." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Καμμία αλλαγή δεν έχει Ï€Ïαγματοποιηθεί ακόμα γιατί δεν έχετε επιλέξει κανένα " -"αντικείμενο. ΠÏέπει να επιλέξετε ένα ή πεÏισσότεÏα αντικείμενα για να " -"Ï€Ïαγματοποιήσετε ενέÏγειες σε αυτά." - -#: options.py:846 -msgid "No action selected." -msgstr "Δεν έχει επιλεγεί ενέÏγεια." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "ΠÏοσθήκη %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr " Το αντικείμενο %(name)s με Ï€ÏωτεÏον κλειδί %(key)r δεν βÏέθηκε." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Αλλαγή του %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Σφάλμα βάσης δεδομένων" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s άλλαξε επιτυχώς." -msgstr[1] "%(count)s %(name)s άλλαξαν επιτυχώς." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "Επιλέχθηκε %(total_count)s" -msgstr[1] "Επιλέχθηκαν και τα %(total_count)s" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "Επιλέγησαν 0 από %(cnt)s" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Το %(name)s \"%(obj)s\" διαγÏάφηκε με επιτυχία." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ΙστοÏικό αλλαγών: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "ΣÏνδεση" - -#: sites.py:375 -msgid "Site administration" -msgstr "ΔιαχείÏιση του ιστότοπου" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "ΔιαχείÏιση %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Ημ/νία:" - -#: widgets.py:75 -msgid "Time:" -msgstr "ÎÏα:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Αναζήτηση" - -#: widgets.py:246 -msgid "Add Another" -msgstr "ΠÏοσθέστε κι άλλο" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Η σελίδα δε βÏέθηκε" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Λυπόμαστε, αλλά η σελίδα που ζητήθηκε δε μπόÏεσε να βÏεθεί." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "ΑÏχική" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Σφάλμα εξυπηÏετητή" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Σφάλμα εξυπηÏετητή (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Σφάλμα εξυπηÏετητή (500)" - -#: 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 "" -"ΥπήÏξε ένα σφάλμα. Έχει αναφεÏθεί στους διαχειÏιστές του ιστότοπου μέσω ηλ. " -"ταχυδÏομείου και θα Ï€Ïέπει να επιδιοÏθωθεί σÏντομα. ΕυχαÏιστοÏμε για την " -"υπομονή σας." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Εκτέλεση της επιλεγμένης ενέÏγειας" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Μετάβαση" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Κάντε κλικ εδώ για να επιλέξετε τα αντικείμενα σε όλες τις σελίδες" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Επιλέξτε και τα %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "ΚαθαÏισμός επιλογής" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "ΚαλωσήÏθατε," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "ΤεκμηÏίωση" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Αλλαγή συνθηματικοÏ" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "ΑποσÏνδεση" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "ΔιαχειÏιστής ιστότοπου Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "ΔιαχείÏιση Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "ΠÏοσθήκη" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ΙστοÏικό" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "ΠÏοβολή στην ιστοσελίδα" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "ΠαÏακαλοÏμε διοÏθώστε το παÏακάτω λάθος." -msgstr[1] "ΠαÏακαλοÏμε διοÏθώστε τα παÏακάτω λάθη." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "ΠÏοσθήκη %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "ΦίλτÏο" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "ΔιαγÏαφή" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Επιλέξατε την διαγÏαφή του αντικειμένου '%(escaped_object)s' είδους %" -"(object_name)s. Αυτό συνεπάγεται την διαγÏαφή συσχετισμένων αντικειμενων για " -"τα οποία δεν έχετε δικάιωμα διαγÏαφής. Τα είδη των αντικειμένων αυτών είναι:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Η διαγÏαφή του %(object_name)s '%(escaped_object)s' απαιτεί την διαγÏαφή " -"των παÏακάτω Ï€Ïοστατευμένων αντικειμένων:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Επιβεβαιώστε ότι επιθημείτε την διαγÏαφή του %(object_name)s \"%" -"(escaped_object)s\". Αν Ï€ÏοχωÏήσετε με την διαγÏαφή όλα τα παÏακάτω " -"συσχετισμένα αντικείμενα θα διαγÏαφοÏν επίσης:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Îαι, είμαι βέβαιος" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "ΔιαγÏαφή πολλών αντικειμένων" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Η διαγÏαφή των επιλεγμένων %(objects_name)s θα είχε σαν αποτέλεσμα την " -"διαγÏαφή συσχετισμένων αντικειμένων για τα οποία δεν έχετε το διακαίωμα " -"διαγÏαφής:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Η διαγÏαφή των επιλεγμένων %(objects_name)s απαιτεί την διαγÏαφή των " -"παÏακάτω Ï€Ïοστατευμένων αντικειμένων:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Επιβεβαιώστε ότι επιθημείτε την διαγÏαφή των επιλεγμένων %(objects_name)s . " -"Αν Ï€ÏοχωÏήσετε με την διαγÏαφή όλα τα παÏακάτω συσχετισμένα αντικείμενα θα " -"διαγÏαφοÏν επίσης:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Ανά %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Διαθέσιμα μοντέλα στην εφαÏμογή %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "ΕπεξεÏγασία" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Δεν έχετε δικαίωμα να επεξεÏγαστείτε τίποτα." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "ΠÏόσφατες ενέÏγειες" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Οι ενέÏγειες μου" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Κανένα διαθέσιμο" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Άγνωστο πεÏιεχόμενο" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Φαίνεται να υπάÏχει Ï€Ïόβλημα με την εγκατάσταση της βάσης σας. Θα Ï€Ïέπει να " -"βεβαιωθείτε ότι οι απαÏαίτητοι πίνακες έχουν δημιουÏγηθεί και ότι η βάση " -"είναι Ï€Ïοσβάσιμη από τον αντίστοιχο χÏήστη που έχετε δηλώσει." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Όνομα χÏήστη:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Συνθηματικό:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "ΗμεÏομηνία/ÏŽÏα" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "ΧÏήστης" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "ΕνέÏγεια" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Δεν υπάÏχει ιστοÏικό αλλαγών γι' αυτό το αντικείμενο. Είναι πιθανό η " -"Ï€Ïοσθήκη του να μην Ï€Ïαγματοποιήθηκε χÏησιμοποιώντας το διαχειÏιστικό." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Εμφάνιση όλων" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Αποθήκευση" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Αναζήτηση" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s αποτέλεσμα" -msgstr[1] "%(counter)s αποτελέσματα" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s συνολικά" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Αποθήκευση ως νέο" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Αποθήκευση και Ï€Ïοσθήκη καινοÏÏιου" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Αποθήκευση και συνέχεια επεξεÏγασίας" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"ΑÏχικά εισάγετε το όνομα χÏήστη και τον κωδικό Ï€Ïόσβασης. Μετά την " -"ολοκλήÏωση Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… βήματος θα έχετε την επιλογή να Ï€Ïοσθέσετε όλα τα " -"υπόλοιπα στοιχεία για τον χÏήστη." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Εισάγετε όνομα χÏήστη και κωδικό Ï€Ïόσβασης." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Εισάγετε ένα νέο κωδικό Ï€Ïόσβασης για τον χÏήστη %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Συνθηματικό" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Συνθηματικό (ξανά)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Εισάγετε το ίδιο συνθηματικό όπως παÏαπάνω, για λόγους επιβεβαίωσης." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "ΠÏοσθήκη νέου %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "ΑφαίÏεση" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Θέλετε να Ï€Ïαγματοποιηθεί διαγÏαφή?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "ΕυχαÏιστοÏμε που διαθέσατε κάποιο ποιοτικό χÏόνο στον ιστότοπο σήμεÏα." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "ΣÏνδεση ξανά" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Αλλαγή συνθηματικοÏ" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Επιτυχής αλλαγή συνθηματικοÏ" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Το συνθηματικό σας έχει αλλαχτεί." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"ΠαÏακαλοÏμε εισάγετε το παλιό σας συνθηματικό, για λόγους ασφάλειας, και " -"κατόπιν εισάγετε το νέο σας συνθηματικό δÏο φοÏές οÏτως ώστε να " -"πιστοποιήσουμε ότι το πληκτÏολογήσατε σωστά." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "ΠÏοηγοÏμενος κωδικός Ï€Ïόσβασης" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Îέος κωδικός Ï€Ïόσβασης" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Αλλαγή του ÏƒÏ…Î½Î¸Î·Î¼Î±Ï„Î¹ÎºÎ¿Ï Î¼Î¿Ï…" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "ΕπαναφοÏά συνθηματικοÏ" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "ΟλοκληÏώθηκε η επαναφοÏά του ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης." - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" -"ΟÏίσατε επιτυχώς έναν κωδικό Ï€Ïόσβασής. Πλέον έχετε την δυνατότητα να " -"συνδεθήτε." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Επιβεβαίωση επαναφοÏάς ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "ΠληκτÏολογήστε νέο συνθηματικό" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"ΠαÏακαλοÏμε πληκτÏολογήστε το νέο κωδικό Ï€Ïόσβασης δÏο φοÏές ώστε να " -"βεβαιωθοÏμε ότι δεν πληκτÏολογήσατε κάποιον χαÏακτήÏα λανθασμένα." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Îέο συνθηματικό:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Επιβεβαίωση συνθηματικοÏ:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "ΕπαναφοÏά ÏƒÏ…Î½Î¸Î·Î¼Î±Ï„Î¹ÎºÎ¿Ï Î±Î½ÎµÏ€Î¹Ï„Ï…Ï‡Î®Ï‚" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Ο σÏνδεσμος που χÏησιμοποιήσατε για την επαναφοÏά του ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασης δεν " -"είναι πλεόν διαθέσιμος. Πιθανώς έχει ήδη χÏησιμοποιηθεί. Θα χÏειαστεί να " -"Ï€Ïαγματοποιήσετε και πάλι την διαδικασία αίτησης επαναφοÏάς του ÎºÏ‰Î´Î¹ÎºÎ¿Ï " -"Ï€Ïόσβασης." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Επιτυχής επαναφοÏά συνθηματικοÏ" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Σας έχουν σταλεί οδηγίες για την επαναφοÏά του ÎºÏ‰Î´Î¹ÎºÎ¿Ï Ï€Ïόσβασής σας στην " -"διÏεθυνση ηλεκτÏÎ¿Î½Î¹ÎºÎ¿Ï Ï„Î±Ï‡Ï…Î´Ïομίου που δηλώσατε. Ελέγξτε το ηλεκτÏονικό σας " -"ταχυδÏομείο για την παÏαλαβή τους." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Έχετε λάβει αυτό το μήνυμα επειδή ζητήσατε την επαναφοÏά του ÎºÏ‰Î´Î¹ÎºÎ¿Ï " -"Ï€Ïόσβασής σας στον ιστότοπο %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" -"ΠαÏακαλοÏμε επισκεφθήτε την ακόλουθη σελίδα και επιλέξτε ένα νέο κωδικό " -"Ï€Ïόσβασης: " - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "" -"Το όνομα χÏήστη με το οποίο είστε καταχωÏημένος για την πεÏίπτωση στην οποία " -"το έχετε ξεχάσει:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "ΕυχαÏιστοÏμε που χÏησιμοποιήσατε τον ιστότοπο μας!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Η ομάδα του %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Ξεχάσατε τον κωδικό Ï€Ïόσβασής? ΜποÏείτε να εισάγετε την διεÏθυνση του " -"ηλεκτÏÎ¿Î½Î¹ÎºÎ¿Ï ÏƒÎ±Ï‚ ταχυδÏομείου και θα σας στείλουμε οδηγίες για να δηλώσετε " -"ένα νέο κωδικό." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "ΗλεκτÏονική διεÏθυνση:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "ΕπαναφοÏά του ÏƒÏ…Î½Î¸Î·Î¼Î±Ï„Î¹ÎºÎ¿Ï Î¼Î¿Ï…" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Όλες οι ημεÏομηνίες" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Κενό)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Επιλέξτε %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Επιλέξτε %s Ï€Ïος αλλαγή" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 5dd4d5e3a..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po deleted file mode 100644 index bf4d4a32f..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/el/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: glezos \n" -"Language-Team: Greek <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Διαθέσιμο %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "ΦίλτÏο" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Επιλογή Όλων" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "ΠÏοσθήκη" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "ΑφαίÏεση" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Επιλεχθέντα %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Επιλέξτε και κάντε κλικ." - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "ΚαθαÏισμός όλων" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s από %(cnt)s επιλέγηκε" -msgstr[1] "%(sel)s από %(cnt)s επιλέγηκαν" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Έχετε μη αποθηκευμένες αλλαγές σε επιμέÏους επεξεÏγάσημα πεδία. Εάν " -"εκτελέσετε μια ενέÏγεια, οι αλλαγές σας θα χαθοÏν." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Έχετε επιλέξει μια ενέÏγεια, αλλά ακόμη δεν έχετε αποθηκεÏσει τις αλλαγές " -"επιμέÏους πεδίων. ΠαÏακαλώ επιλέξτε ΟΚ για να αποθηκεÏσετε. Θα χÏειαστεί να " -"επαναλάβετε την ενέÏγεια." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Έχετε επιλέξει μια ενέÏγεια και δεν έχετε κάνει καμία αλλαγή σε επιμέÏους " -"πεδία. Πιθανώς ψάχνετε για το κουμπί Go και όχι το κουμπί Αποθήκευση." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"ΙανουάÏιος ΦεβÏουάÏιος ΜάÏτιος ΑπÏίλιος Μάιος ΙοÏνιος ΙοÏλιος ΑÏγουστος " -"ΣεπτέμβÏιος ΟκτώβÏιος ÎοέμβÏιος ΔεκέμβÏιος" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "Κ Δ Τ Τ Π Π Σ" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Εμφάνιση" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "ΑπόκÏυψη" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ΚυÏιακή ΔευτέÏα ΤÏίτη ΤετάÏτη Πέμπτη ΠαÏασκευή Σάββατο" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "ΤώÏα" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Ρολόι" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Διαλέξτε ÏŽÏα" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Μεσάνυχτα" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 Ï€.μ." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "ΜεσημέÏι" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "ΆκυÏο" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "ΣήμεÏα" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "ΗμεÏολόγιο" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Χθες" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "ΑÏÏιο" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.mo deleted file mode 100644 index bedbdf015..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.po deleted file mode 100644 index 46c5d509b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/django.po +++ /dev/null @@ -1,765 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2010-05-13 15:35+0200\n" -"Last-Translator: Django team\n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                          By %s:

                                          \n" -"
                                            \n" -msgstr "" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "" - -#: filterspecs.py:139 -msgid "No" -msgstr "" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "" - -#: filterspecs.py:197 -msgid "Today" -msgstr "" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "" - -#: filterspecs.py:203 -msgid "This month" -msgstr "" - -#: filterspecs.py:205 -msgid "This year" -msgstr "" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" - -#: helpers.py:19 -msgid "Action:" -msgstr "" - -#: models.py:19 -msgid "action time" -msgstr "" - -#: models.py:22 -msgid "object id" -msgstr "" - -#: models.py:23 -msgid "object repr" -msgstr "" - -#: models.py:24 -msgid "action flag" -msgstr "" - -#: models.py:25 -msgid "change message" -msgstr "" - -#: models.py:28 -msgid "log entry" -msgstr "" - -#: models.py:29 -msgid "log entries" -msgstr "" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:645 -msgid "No fields changed." -msgstr "" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "" - -#: options.py:1065 -msgid "Database error" -msgstr "" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" -msgstr[1] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" -msgstr[1] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "" - -#: sites.py:375 -msgid "Site administration" -msgstr "" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "" - -#: widgets.py:75 -msgid "Date:" -msgstr "" - -#: widgets.py:75 -msgid "Time:" -msgstr "" - -#: widgets.py:140 -msgid "Lookup" -msgstr "" - -#: widgets.py:246 -msgid "Add Another" -msgstr "" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "" - -#: 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 "" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "" -msgstr[1] "" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" -msgstr[1] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo deleted file mode 100644 index af5a3ca35..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po deleted file mode 100644 index ac312b420..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,143 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2010-05-13 15:35+0200\n" -"Last-Translator: Django team\n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" -msgstr[1] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo deleted file mode 100644 index 40245ea70..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po deleted file mode 100644 index 71b3f1a20..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/django.po +++ /dev/null @@ -1,807 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: English (United Kingdom) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Successfully deleted %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Cannot delete %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Are you sure?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Delete selected %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                            By %s:

                                            \n" -"
                                              \n" -msgstr "" -"

                                              By %s:

                                              \n" -"
                                                \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "All" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Yes" - -#: filterspecs.py:139 -msgid "No" -msgstr "No" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Unknown" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Any date" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Today" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Past 7 days" - -#: filterspecs.py:203 -msgid "This month" -msgstr "This month" - -#: filterspecs.py:205 -msgid "This year" -msgstr "This year" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Please log in again, because your session has expired." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Your e-mail address is not your username. Try '%s' instead." - -#: helpers.py:19 -msgid "Action:" -msgstr "Action:" - -#: models.py:19 -msgid "action time" -msgstr "action time" - -#: models.py:22 -msgid "object id" -msgstr "object id" - -#: models.py:23 -msgid "object repr" -msgstr "object repr" - -#: models.py:24 -msgid "action flag" -msgstr "action flag" - -#: models.py:25 -msgid "change message" -msgstr "change message" - -#: models.py:28 -msgid "log entry" -msgstr "log entry" - -#: models.py:29 -msgid "log entries" -msgstr "log entries" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "None" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Changed %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "and" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Added %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Changed %(list)s for %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Deleted %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "No fields changed." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "The %(name)s \"%(obj)s\" was added successfully." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "You may edit it again below." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "You may add another %s below." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "The %(name)s \"%(obj)s\" was changed successfully." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." - -#: options.py:846 -msgid "No action selected." -msgstr "No action selected." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Add %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s object with primary key %(key)r does not exist." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Change %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Database error" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s was changed successfully." -msgstr[1] "%(count)s %(name)s were changed successfully." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s selected" -msgstr[1] "All %(total_count)s selected" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 of %(cnt)s selected" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "The %(name)s \"%(obj)s\" was deleted successfully." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Change history: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Log in" - -#: sites.py:375 -msgid "Site administration" -msgstr "Site administration" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s administration" - -#: widgets.py:75 -msgid "Date:" -msgstr "Date:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Time:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Lookup" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Add Another" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Page not found" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "We're sorry, but the requested page could not be found." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Home" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Server error" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Server error (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Server Error (500)" - -#: 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 "" -"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." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Run the selected action" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Go" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Click here to select the objects across all pages" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Select all %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Clear selection" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Welcome," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentation" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Change password" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Log out" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django site admin" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django administration" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Add" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "History" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "View on site" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Please correct the error below." -msgstr[1] "Please correct the errors below." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Add %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filter" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Delete" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Yes, I'm sure" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Delete multiple objects" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " By %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Models available in the %(name)s application." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Change" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "You don't have permission to edit anything." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Recent Actions" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "My Actions" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "None available" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Unknown content" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Username:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Password:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Date/time" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "User" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Action" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Show all" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Save" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Search" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s result" -msgstr[1] "%(counter)s results" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s total" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Save as new" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Save and add another" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Save and continue editing" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Enter a username and password." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Enter a new password for the user %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Password" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Password (again)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Enter the same password as above, for verification." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Add another %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Remove" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Delete?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Thanks for spending some quality time with the Web site today." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Log in again" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Password change" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Password change successful" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Your password was changed." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Old password" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "New password" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Change my password" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Password reset" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Password reset complete" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Your password has been set. You may go ahead and log in now." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Password reset confirmation" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Enter new password" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "New password:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Confirm password:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Password reset unsuccessful" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Password reset successful" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Please go to the following page and choose a new password:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Your username, in case you've forgotten:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Thanks for using our site!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "The %(site_name)s team" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mail address:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Reset my password" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "All dates" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Select %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Select %s to change" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo deleted file mode 100644 index d00cab1d7..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po deleted file mode 100644 index aa1cdd42a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/en_GB/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: rossp \n" -"Language-Team: English (United Kingdom) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Available %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Choose all" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Add" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Remove" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Chosen %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Select your choice(s) and click " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Clear all" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s of %(cnt)s selected" -msgstr[1] "%(sel)s of %(cnt)s selected" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"January February March April May June July August September October November " -"December" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M T W T F S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Show" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Hide" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Now" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Clock" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Choose a time" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Midnight" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Noon" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Cancel" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Today" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendar" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Yesterday" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Tomorrow" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.mo deleted file mode 100644 index e96aec460..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.po deleted file mode 100644 index 6557f54c3..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/django.po +++ /dev/null @@ -1,817 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Spanish (Castilian) <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Eliminado/s %(count)d %(items)s satisfactoriamente." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "No se puede eliminar %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "¿Está seguro?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Eliminar %(verbose_name_plural)s seleccionado/s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                By %s:

                                                \n" -"
                                                  \n" -msgstr "" -"

                                                  Por %s:

                                                  \n" -"
                                                    \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Todo" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Sí" - -#: filterspecs.py:139 -msgid "No" -msgstr "No" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Desconocido" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Cualquier fecha" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Hoy" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Últimos 7 días" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Este mes" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Este año" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Por favor, introduzca un nombre de usuario y contraseña correctos. Note que " -"ambos campos son sensibles a mayúsculas/minúsculas." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Por favor, inicie sesión de nuevo, ya que su sesión ha caducado." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Su dirección de correo no es su nombre de usuario. Pruebe con '%s' en su " -"lugar." - -#: helpers.py:19 -msgid "Action:" -msgstr "Acción:" - -#: models.py:19 -msgid "action time" -msgstr "hora de acción" - -#: models.py:22 -msgid "object id" -msgstr "id de objeto" - -#: models.py:23 -msgid "object repr" -msgstr "repr de objeto" - -#: models.py:24 -msgid "action flag" -msgstr "marca de acción" - -#: models.py:25 -msgid "change message" -msgstr "mensaje de cambio" - -#: models.py:28 -msgid "log entry" -msgstr "entrada de registro" - -#: models.py:29 -msgid "log entries" -msgstr "entradas de registro" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ninguno" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Modificado/a %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "y" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Añadido/a \"%(object)s\" %(name)s." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Modificados %(list)s para \"%(object)s\" %(name)s." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Eliminado/a \"%(object)s\" %(name)s." - -#: options.py:645 -msgid "No fields changed." -msgstr "No ha cambiado ningún campo." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Se añadió con éxito el %(name)s \"%(obj)s\"." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Puede editarlo de nuevo abajo." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Puede añadir otro %s abajo." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Se modificó con éxito el %(name)s \"%(obj)s\"." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Se añadió con éxito el %(name)s \"%(obj)s. Puede editarlo de nuevo abajo." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Se deben seleccionar elementos para poder realizar acciones sobre estos. No " -"se han modificado elementos." - -#: options.py:846 -msgid "No action selected." -msgstr "No se seleccionó ninguna acción." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Añadir %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "No existe ningún objeto %(name)s con la clave primaria %(key)r." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Modificar %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Error en la base de datos" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s fué modificado con éxito." -msgstr[1] "%(count)s %(name)s fueron modificados con éxito." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s seleccionado" -msgstr[1] "Todos %(total_count)s seleccionados" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "seleccionados 0 de %(cnt)s" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Se eliminó con éxito el %(name)s \"%(obj)s\"." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Histórico de modificaciones: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Iniciar sesión" - -#: sites.py:375 -msgid "Site administration" -msgstr "Sitio administrativo" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administración de %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Fecha:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Hora:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Buscar" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Añadir otro" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Página no encontrada" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Lo sentimos, pero no se encuentra la página solicitada." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Inicio" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Error del servidor" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Error del servidor (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Error de servidor (500)" - -#: 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 "" -"Ha ocurrido un error. Se ha informado a los administradores del sitio " -"mediante correo electrónico y debería arreglarse en breve. Gracias por su " -"paciencia." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Ejecutar la acción seleccionada" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Ir" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Pulse aquí para seleccionar los objetos a través de todas las páginas" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Seleccionar todos los %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Limpiar selección" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Bienvenido/a," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentación" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Cambiar contraseña" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Terminar sesión" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Sitio de administración de Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administración de Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Añadir" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Histórico" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Ver en el sitio" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Por favor, corrija el siguiente error." -msgstr[1] "Por favor, corrija los siguientes errores." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Añadir %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtro" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Eliminar" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Eliminar el %(object_name)s '%(escaped_object)s' provocaría la eliminación " -"de objetos relacionados, pero su cuenta no tiene permiso para borrar los " -"siguientes tipos de objetos:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"La eliminación de %(object_name)s %(escaped_object)s requeriría eliminar los " -"siguientes objetos relacionados protegidos:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"¿Está seguro de que quiere borrar los %(object_name)s \"%(escaped_object)s" -"\"? Se borrarán los siguientes objetos relacionados:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Sí, estoy seguro" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Eliminar múltiples objetos." - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"La eliminación del %(objects_name)s seleccionado resultaría en el borrado de " -"objetos relacionados, pero su cuenta no tiene permisos para borrar los " -"siguientes tipos de objetos:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"La eliminación de %(objects_name)s seleccionado requeriría el borrado de los " -"siguientes objetos protegidos relacionados:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"¿Está usted seguro que quiere eliminar el %(objects_name)s seleccionado? " -"Todos los siguientes objetos y sus elementos relacionados serán borrados:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Por %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modelos disponibles en la aplicación %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Modificar" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "No tiene permiso para editar nada." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Acciones recientes" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mis acciones" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ninguno disponible" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Contenido desconocido" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Algo va mal con la instalación de la base de datos. Asegúrese que las tablas " -"necesarias han sido creadas, y que la base de datos puede ser leída por el " -"usuario apropiado." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Usuario:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Contraseña:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Fecha/hora" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Usuario" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Acción" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Este objeto no tiene histórico de cambios. Probablemente no fue añadido " -"usando este sitio de administración." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Mostrar todo" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Grabar" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Buscar" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultado" -msgstr[1] "%(counter)s resultados" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s total" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Grabar como nuevo" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Grabar y añadir otro" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Grabar y continuar editando" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Primero introduzca un nombre de usuario y una contraseña. Luego podrá editar " -"el resto de opciones del usuario." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Entre un nombre de usuario y contraseña" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Introduzca una nueva contraseña para el usuario %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Contraseña" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Contraseña (de nuevo)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Introduzca la misma contraseña que arriba, para verificación." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Agregar otro %(verbose_name)s." - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Eliminar" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "¿Eliminar?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Gracias por el tiempo que ha dedicado hoy al sitio web." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Iniciar sesión de nuevo" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Cambio de contraseña" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Cambio de contraseña exitoso" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Su contraseña ha sido cambiada." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Por favor, introduzca su contraseña antigua, por seguridad, y después " -"introduzca la nueva contraseña dos veces para verificar que la ha escrito " -"correctamente." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Contraseña antigua" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Contraseña nueva" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Cambiar mi contraseña" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Restablecer contraseña" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Restablecimiento de contraseña completado" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" -"Su contraseña ha sido establecida. Ahora puede seguir adelante e iniciar " -"sesión." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Confirmación de restablecimiento de contraseña" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Introduzca una nueva contraseña" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Por favor, introduzca su contraseña nueva dos veces para verificar que la ha " -"escrito correctamente." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Contraseña nueva:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Confirme contraseña:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Restablecimiento de contraseña fallido" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"El enlace de restablecimiento de contraseña era invalido, seguramente por " -"haberse utilizado previamente. Por favor, solicite un nuevo restablecimiento " -"de contraseña." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Restablecimiento de contraseña exitoso" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Le hemos enviado un correo electrónico con instrucciones para cambiar su " -"contraseña a la dirección que nos ha suministrado. Debería recibirlo en " -"breve." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Por favor, vaya a la página siguiente y escoja una nueva contraseña." - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Su nombre de usuario, en caso de haberlo olvidado:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "¡Gracias por usar nuestro sitio!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "El equipo de %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"¿Ha olvidado su contraseña? Introduzca su dirección de correo electrónico, y " -"le enviaremos instrucciones para cambiarla por una nueva." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Dirección de correo electrónico:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Restablecer mi contraseña" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Todas las fechas" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Escoja %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Escoja %s a modificar" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo deleted file mode 100644 index f66aa5226..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po deleted file mode 100644 index 49fa32980..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/es/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: aaloy \n" -"Language-Team: Spanish (Castilian) <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s Disponibles" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Selecciona todos" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Agregar" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Remover" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s Elegidos" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Haz tus elecciones y da click en " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Elimina todos" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "one: %(sel)s de %(cnt)s seleccionado" -msgstr[1] "other: %(sel)s de %(cnt)s seleccionados" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Tienes cambios sin guardar en campos editables individuales. Si ejecutas una " -"acción, los cambios no guardados se perderán." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Has seleccionado una acción, pero no has guardado los cambios en los campos " -"individuales todavía. Pulsa OK para guardar. Tendrás que volver a ejecutar " -"la acción." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Has seleccionado una acción y no has hecho ningún cambio en campos " -"individuales. Probablemente estés buscando el botón Ejecutar en lugar del " -"botón Guardar." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Enero Febrero Marzo Abril Mayo Junio Julio Agosto Septiembre Octubre " -"Noviembre Diciembre" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D L M M J V S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Mostrar" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Esconder" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Domingo Lunes Martes Miércoles Jueves Viernes Sábado" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Ahora" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Reloj" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Elige una hora" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Medianoche" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Mediodía" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Cancelar" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Hoy" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendario" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Ayer" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Mañana" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo deleted file mode 100644 index 27afd794f..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po deleted file mode 100644 index 98a1cbea2..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/django.po +++ /dev/null @@ -1,821 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-14 02:57+0000\n" -"Last-Translator: cramm \n" -"Language-Team: Spanish (Argentinian) <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Se eliminaron con éxito %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "No se puede eliminar %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "¿Está seguro?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Eliminar %(verbose_name_plural)s seleccionados/as" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                    By %s:

                                                    \n" -"
                                                      \n" -msgstr "" -"

                                                      Por %s:

                                                      \n" -"
                                                        \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Todos/as" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Sí" - -#: filterspecs.py:139 -msgid "No" -msgstr "No" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Desconocido" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Cualquier fecha" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Hoy" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Últimos 7 días" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Este mes" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Este año" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Por favor introduzca un nombre de usuario y una contraseña correctos. Note " -"que ambos campos son sensibles a mayúsculas/minúsculas." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Por favor, identifíquese de nuevo porque su sesión ha caducado." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Su dirección de correo electrónico no es su nombre de usuario. Intente " -"nuevamente usando '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Acción:" - -#: models.py:19 -msgid "action time" -msgstr "hora de la acción" - -#: models.py:22 -msgid "object id" -msgstr "id de objeto" - -#: models.py:23 -msgid "object repr" -msgstr "repr de objeto" - -#: models.py:24 -msgid "action flag" -msgstr "marca de acción" - -#: models.py:25 -msgid "change message" -msgstr "mensaje de cambio" - -#: models.py:28 -msgid "log entry" -msgstr "entrada de registro" - -#: models.py:29 -msgid "log entries" -msgstr "entradas de registro" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ninguno" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Modifica %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "y" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Se agregó %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Se modificaron %(list)s en %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Se eliminó %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "No ha modificado ningún campo." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Se agregó con éxito %(name)s \"%(obj)s\"." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Puede modificarlo/a nuevamente abajo." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Puede agregar otro/a %s abajo." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Se modificó con éxito %(name)s \"%(obj)s\"." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Se agregó con éxito %(name)s \"%(obj)s\". Puede modificarlo/a nuevamente " -"abajo." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Deben existir items seleccionados para poder realizar acciones sobre los " -"mismos. No se modificó ningún item." - -#: options.py:846 -msgid "No action selected." -msgstr "No se ha seleccionado ninguna acción." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Agregar %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "No existe un objeto %(name)s con una clave primaria %(key)r." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Modificar %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Error de base de datos" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "Se ha modificado con éxito %(count)s %(name)s." -msgstr[1] "Se han modificado con éxito %(count)s %(name)s." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s seleccionados/as" -msgstr[1] "Todos/as (%(total_count)s en total) han sido seleccionados/as" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 de %(cnt)s seleccionados/as" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Se eliminó con éxito %(name)s \"%(obj)s\"." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Historia de modificaciones: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Identificarse" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administración de sitio" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administración de %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Fecha:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Hora:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Buscar" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Agregar otro/a" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Página no encontrada" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Lo sentimos, pero no se encuentra la página solicitada." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Inicio" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Error del servidor" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Error del servidor (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Error de servidor (500)" - -#: 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 "" -"Ha ocurrido un error. Se ha informado a los administradores del sitio " -"mediante correo electrónico y debería ser solucionado en breve. Gracias por " -"su paciencia." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Ejecutar la acción seleccionada" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Ejecutar" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Haga click aquí para seleccionar los objetos de todas las páginas" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Seleccionar lo(s)/a(s) %(total_count)s de %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Borrar selección" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Bienvenido/a," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentación" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Cambiar contraseña" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Cerrar sesión" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Administración de sitio Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administración de Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Agregar" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historia" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Ver en el sitio" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Por favor, corrija el siguiente error." -msgstr[1] "Por favor, corrija los siguientes errores." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Agregar %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtrar" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Eliminar" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Eliminar el %(object_name)s '%(escaped_object)s' provocaría la eliminación " -"de objetos relacionados, pero su cuenta no tiene permiso para eliminar los " -"siguientes tipos de objetos:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"El eliminar los %(object_name)s '%(escaped_object)s' requeriría eliminar los " -"siguientes objetos relacionados protegidos:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"¿Está seguro de que quiere eliminar los %(object_name)s \"%(escaped_object)s" -"\"? Se eliminarán los siguientes objetos relacionados:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Sí, estoy seguro" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Eliminar múltiples objetos" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"El eliminar los %(objects_name)s seleccionados requeriría eliminar objetos " -"relacionados a los mismos, pero su cuenta de usuario no tiene los permisos " -"necesarios para eliminar los siguientes tipos de objetos:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"El eliminar los %(objects_name)s seleccionados requeriría eliminar los " -"siguientes objetos relacionados protegidos:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"¿Está seguro de que desea eliminar los %(objects_name)s?. Todos los " -"siguientes objetos y los items relacionados a los mismos serán eliminados:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Por %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modelos disponibles en la aplicación %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Modificar" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "No tiene permiso para editar nada." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Acciones recientes" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mis acciones" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ninguna disponible" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Contenido desconocido" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Hay algún problema con su instalación de base de datos. Asegúrese de que las " -"tablas de la misma hayan sido creadas, y asegúrese de que el usuario " -"apropiado tenga permisos de lectura en la base de datos." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Usuario:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Contraseña:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Fecha/hora" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Usuario" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Acción" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Este objeto no tiene historia de modificaciones. Probablemente no fue " -"añadido usando este sitio de administración." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Mostrar todos/as" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Guardar" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Buscar" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultado" -msgstr[1] "%(counter)s resultados" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "total: %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Guardar como nuevo" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Guardar y agregar otro" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Guardar y continuar editando" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Primero introduzca un nombre de usuario y una contraseña. Luego podrá " -"configurar opciones adicionales acerca del usuario." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Introduzca un nombre de usuario y una contraseña." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Introduzca una nueva contraseña para el usuario %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Contraseña" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Contraseña (de nuevo)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "" -"Para verificación, introduzca la misma contraseña que introdujo arriba." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Agregar otro/a %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Eliminar" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Eliminar?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Gracias por el tiempo que ha dedicado al sitio web hoy." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Identificarse de nuevo" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Cambio de contraseña" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Cambio de contraseña exitoso" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Su contraseña ha sido cambiada." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Por favor, por razones de seguridad, introduzca primero su contraseña " -"antigua y luego introduzca la nueva contraseña dos veces para verificar que " -"la ha escrito correctamente." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Contraseña antigua" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Contraseña nueva" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Cambiar mi contraseña" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Recuperar contraseña" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Reinicialización de contraseña completada" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Se le ha enviado su contraseña. Ahora puede continuar e ingresar." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Confirmación de reincialización de contraseña" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Introduzca la nueva contraseña" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Por favor introduzca su nueva contraseña dos veces de manera que podamos " -"verificar que la ha escrito correctamente." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Contraseña nueva:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Confirme contraseña:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Reinicialización de contraseña exitosa" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"El enlace de reinicialización de contraseña es inválido, posiblemente debido " -"a que ya ha sido usado. Por favor solicite una nueva reinicialización de " -"contraseña." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Recuperación de contraseña exitosa" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Le hemos enviado instrucciones sobre como establecer su contraseña a la " -"dirección de correo electrónico que ha suministrado. Debería recibir las " -"mismas en breve." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Ha recibido este email porque ha solicitado la generación de una nueva " -"contraseña de su cuenta de usuario en %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" -"Por favor visite la página que se muestra a continuación y elija una nueva " -"contraseña:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Su nombre de usuario, en caso de haberlo olvidado:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "¡Gracias por usar nuestro sitio!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "El equipo de %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"¿Ha olvidado su contraseña?. Introduzca su dirección de correo electrónico " -"mas abajo y le enviaremos instrucciones para establecer una nueva." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Dirección de correo electrónico:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Recuperar mi contraseña" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Todas las fechas" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ninguno/a)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Seleccione %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Seleccione %s a modificar" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo deleted file mode 100644 index bfd75b8d7..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po deleted file mode 100644 index 279429fb2..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/es_AR/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: cramm \n" -"Language-Team: Spanish (Argentinian) <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s disponibles" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtro" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Seleccionar todos/as" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Agregar" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Eliminar" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s seleccionados" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Seleccione la opción u opcione que desee elegir y haga click en" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Eliminar todos" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s de %(cnt)s seleccionado/a" -msgstr[1] "%(sel)s de %(cnt)s seleccionados/as" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Tiene modificaciones sin guardar en campos modificables individuales. Si " -"ejecuta una acción las mismas se perderán." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Ha seleccionado una acción, pero todavía no ha grabado las modificaciones " -"que ha realizado en campos individuales. Por favor haga click en Aceptar " -"para grabarlas. Necesitará ejecutar la acción nuevamente." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Ha seleccionado una acción pero no ha realizado ninguna modificación en " -"campos individuales. Es probable que lo que necesite usar en realidad sea el " -"botón Ejecutar y no el botón Guardar." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Enero Febrero Marzo Abril Mayo Junio Julio Agosto Setiembre Octubre " -"Noviembre Diciembre" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D L M M J V S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Mostrar" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Ocultar" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Domingo Lunes Martes Miércoles Jueves Viernes Sábado" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Ahora" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Reloj" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Elija una hora" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Medianoche" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Mediodía" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Cancelar" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Hoy" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendario" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Ayer" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Mañana" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo deleted file mode 100644 index 1bb3c2fe7..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po deleted file mode 100644 index a1cab2dd6..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/django.po +++ /dev/null @@ -1,820 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-07 04:27+0000\n" -"Last-Translator: AbeEstrada \n" -"Language-Team: Spanish (Mexican) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Se eliminaron con éxito %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "No se puede eliminar %(name)s " - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "¿Está seguro?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Eliminar %(verbose_name_plural)s seleccionados/as" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                        By %s:

                                                        \n" -"
                                                          \n" -msgstr "" -"

                                                          Por %s:

                                                          \n" -"
                                                            \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Todos/as" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Sí" - -#: filterspecs.py:139 -msgid "No" -msgstr "No" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Desconocido" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Cualquier fecha" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Hoy" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Últimos 7 días" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Este mes" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Este año" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Por favor introduzca un nombre de usuario y una contraseña correctos. Note " -"que ambos campos son sensibles a mayúsculas/minúsculas." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Por favor, identifíquese de nuevo porque su sesión ha expirado." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Su dirección de correo electrónico no es su nombre de usuario. Intente " -"nuevamente usando '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Acción:" - -#: models.py:19 -msgid "action time" -msgstr "hora de la acción" - -#: models.py:22 -msgid "object id" -msgstr "id de objeto" - -#: models.py:23 -msgid "object repr" -msgstr "repr de objeto" - -#: models.py:24 -msgid "action flag" -msgstr "marca de acción" - -#: models.py:25 -msgid "change message" -msgstr "mensaje de cambio" - -#: models.py:28 -msgid "log entry" -msgstr "entrada de registro" - -#: models.py:29 -msgid "log entries" -msgstr "entradas de registro" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ninguno" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Modifica %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "y" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Se agregó %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Se modificaron %(list)s en %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Se eliminó %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "No ha modificado ningún campo." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Se agregó con éxito %(name)s \"%(obj)s\"." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Puede modificarlo/a nuevamente abajo." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Puede agregar otro/a %s abajo." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Se modificó con éxito %(name)s \"%(obj)s\"." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Se agregó con éxito %(name)s \"%(obj)s\". Puede modificarlo/a nuevamente " -"abajo." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Deben existir items seleccionados para poder realizar acciones sobre los " -"mismos. No se modificó ningún item." - -#: options.py:846 -msgid "No action selected." -msgstr "No se ha seleccionado ninguna acción." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Agregar %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "No existe un objeto %(name)s con una clave primaria %(key)r." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Modificar %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Error en la base de datos" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "Se ha modificado con éxito %(count)s %(name)s." -msgstr[1] "Se han modificado con éxito %(count)s %(name)s." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s seleccionados/as" -msgstr[1] "Todos/as (%(total_count)s en total) han sido seleccionados/as" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 de %(cnt)s seleccionados/as" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Se eliminó con éxito %(name)s \"%(obj)s\"." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Historia de modificaciones: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Identificarse" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administración del sitio" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administración de %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Fecha:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Hora:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Buscar" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Agregar otro/a" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Página no encontrada" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Lo sentimos, pero no se encuentra la página solicitada." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Inicio" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Error del servidor" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Error del servidor (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Error de servidor (500)" - -#: 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 "" -"Ha ocurrido un error. Se ha informado a los administradores del sitio " -"mediante correo electrónico y debería ser solucionado en breve. Gracias por " -"su paciencia." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Ejecutar la acción seleccionada" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Ejecutar" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Haga click aquí para seleccionar los objetos de todas las páginas" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Seleccionar lo(s)/a(s) %(total_count)s de %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Borrar selección" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Bienvenido," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentación" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Cambiar contraseña" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Cerrar sesión" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Sitio de administración de Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administración de Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Agregar" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historia" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Ver en el sitio" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Por favor, corrija el siguiente error." -msgstr[1] "Por favor, corrija los siguientes errores." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Agregar %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtrar" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Eliminar" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Eliminar el %(object_name)s '%(escaped_object)s' provocaría la eliminación " -"de objetos relacionados, pero su cuenta no tiene permiso para eliminar los " -"siguientes tipos de objetos:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Para eliminar %(object_name)s '%(escaped_object)s' requiere eliminar los " -"siguientes objetos relacionados protegidos:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"¿Está seguro de que quiere eliminar los %(object_name)s \"%(escaped_object)s" -"\"? Se eliminarán los siguientes objetos relacionados:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Sí, estoy seguro" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Eliminar múltiples objetos" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Para eliminar %(objects_name)s requiere eliminar los objetos relacionado, " -"pero tu cuenta no tiene permisos para eliminar los siguientes tipos de " -"objetos:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Eliminar el seleccionado %(objects_name)s requiere eliminar los siguientes " -"objetos relacionados protegidas:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"¿Está seguro que desea eliminar el seleccionado %(objects_name)s ? Todos los " -"objetos siguientes y sus elementos asociados serán eliminados:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "Por %(filter_title)s" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modelos disponibles en la aplicación %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Modificar" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "No tiene permiso para editar nada" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Acciones recientes" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mis acciones" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ninguna disponible" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Contenido desconocido" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Hay algún problema con su instalación de base de datos. Asegúrese de que las " -"tablas de la misma hayan sido creadas, y asegúrese de que el usuario " -"apropiado tenga permisos de lectura en la base de datos." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Usuario:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Contraseña:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Fecha/hora" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Usuario" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Acción" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Este objeto no tiene historia de modificaciones. Probablemente no fue " -"añadido usando este sitio de administración." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Mostrar todos/as" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Guardar" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Buscar" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s results" -msgstr[1] "%(counter)s resultados" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "total: %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Guardar como nuevo" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Guardar y agregar otro" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Guardar y continuar editando" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Primero introduzca un nombre de usuario y una contraseña. Luego podrá " -"configurar opciones adicionales acerca del usuario." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Introduzca un nombre de usuario y una contraseña." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Introduzca una nueva contraseña para el usuario %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Contraseña" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Contraseña (de nuevo)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Para verificar, introduzca la misma contraseña que introdujo arriba." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Agregar otro/a %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Eliminar" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Eliminar?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Gracias por el tiempo que ha dedicado al sitio web hoy." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Identificarse de nuevo" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Cambio de contraseña" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Cambio de contraseña exitoso" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Su contraseña ha sido cambiada." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Por favor, por razones de seguridad, introduzca primero su contraseña " -"antigua y luego introduzca la nueva contraseña dos veces para verificar que " -"la ha escrito correctamente." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Contraseña anterior" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nueva contraseña" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Cambiar mi contraseña" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Recuperar contraseña" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Reinicialización de contraseña completada" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Se le ha enviado su contraseña. Ahora puede continuar e ingresar." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Confirmación de reincialización de contraseña" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Introduzca la nueva contraseña" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Por favor introduzca su nueva contraseña dos veces de manera que podamos " -"verificar que la ha escrito correctamente." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nueva contraseña:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Confirme contraseña:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Reinicialización de contraseña no exitosa" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"El enlace de reinicialización de contraseña es inválido, posiblemente debido " -"a que ya ha sido usado. Por favor solicite una nueva reinicialización de " -"contraseña." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Recuperación de contraseña exitosa" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Le hemos enviado instrucciones sobre como establecer su contraseña a la " -"dirección de correo electrónico que ha ingresado. Debería recibir las mismas " -"en breve." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Usted está recibiendo este e-mail porque usted solicitó un restablecimiento " -"de la contraseña de su cuenta de usuario en %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" -"Por favor visite la página que se muestra a continuación y elija una nueva " -"contraseña:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Su nombre de usuario, en caso de haberlo olvidado:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "¡Gracias por usar nuestro sitio!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "El equipo de %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"¿Ha olvidado su contraseña?. Introduzca su dirección de correo electrónico " -"mas abajo y le enviaremos instrucciones para establecer una nueva." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Dirección de correo electrónico" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Recuperar mi contraseña" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Todas las fechas" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ninguno)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Seleccione %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Seleccione %s a modificar" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 2761ee139..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po deleted file mode 100644 index f59f6306d..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/es_MX/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-07 04:24+0000\n" -"Last-Translator: AbeEstrada \n" -"Language-Team: Spanish (Mexican) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Disponible %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtro" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Seleccionar todo" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Agregar" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Quitar" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Seleccionados %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Seleccione sus opcion(es) y de click" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Eliminar todos" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s de %(cnt)s seleccionado/a" -msgstr[1] "%(sel)s de %(cnt)s seleccionados/as" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Tiene modificaciones sin guardar en campos modificables individuales. Si " -"ejecuta una acción las mismas se perderán." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Ha seleccionado una acción, pero todavía no ha grabado las modificaciones " -"que ha realizado en campos individuales. Por favor haga click en Aceptar " -"para grabarlas. Necesitará ejecutar la acción nuevamente." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Ha seleccionado una acción pero no ha realizado ninguna modificación en " -"campos individuales. Es probable que lo que necesite usar en realidad sea el " -"botón Ejecutar y no el botón Guardar." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Enero Febrero Marzo Abril Mayo Junio Julio Agosto Setiembre Octubre " -"Noviembre Diciembre" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D L M M J V S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Mostrar" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Ocultar" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Domingo Lunes Marte Miércoles Jueves Viernes Sábado" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Ahora" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Reloj" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Elija una hora" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Medianoche" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Mediodía" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Cancelar" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Hoy" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendario" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Ayer" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Mañana" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.mo deleted file mode 100644 index 1a953e199..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.po deleted file mode 100644 index dc85eb1ab..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/django.po +++ /dev/null @@ -1,811 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-07 21:13+0000\n" -"Last-Translator: eallik \n" -"Language-Team: Estonian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s kustutamine õnnestus" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Ei saa kustutada %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Kas olete kindel?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Kustuta valitud %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                            By %s:

                                                            \n" -"
                                                              \n" -msgstr "" -"

                                                              %s:

                                                              \n" -"
                                                                \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Kõik" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Jah" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ei" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Tundmatu" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Suvaline kuupäev" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Täna" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Viimased 7 päeva" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Käesolev kuu" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Käesolev aasta" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Palun sisestage korrektne kasutajatunnus ja salasõna. Mõlemad väljad on " -"tõstutundlikud." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Teie sessioon on aegunud. Palun logige uuesti sisse." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Teie e-posti aadress ei ole Teie kasutajatunnus. Proovige '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Toiming:" - -#: models.py:19 -msgid "action time" -msgstr "toimingu aeg" - -#: models.py:22 -msgid "object id" -msgstr "objekti id" - -#: models.py:23 -msgid "object repr" -msgstr "objekti esitus" - -#: models.py:24 -msgid "action flag" -msgstr "toimingu lipp" - -#: models.py:25 -msgid "change message" -msgstr "muudatuse tekst" - -#: models.py:28 -msgid "log entry" -msgstr "logisissekanne" - -#: models.py:29 -msgid "log entries" -msgstr "logisissekanded" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Puudub" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Muutsin %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ja" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Lisatud %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Muudetud %(list)s objektil %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Kustutatud %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Ühtegi välja ei muudetud." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" lisamine õnnestus." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Võite jätkata redigeerimist." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Võite jätkata uue %s lisamisega." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" muutmine õnnestus." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" lisamine õnnestus. Te võite seda muuta." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Palun märgistage elemendid, millega soovite toiminguid sooritada. Ühtegi " -"elementi ei muudetud." - -#: options.py:846 -msgid "No action selected." -msgstr "Toiming valimata." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Lisa %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s objekt primaarvõtmega %(key)r ei eksisteeri." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Muuda %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Andmebaasi viga" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s muutmine õnnestus." -msgstr[1] "%(count)s %(name)s muutmine õnnestus." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s valitud" -msgstr[1] "Kõik %(total_count)s valitud" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "valitud 0/%(cnt)s" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" kustutati." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Muudatuste ajalugu: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Sisene" - -#: sites.py:375 -msgid "Site administration" -msgstr "Saidi administreerimine" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s - administreerimine" - -#: widgets.py:75 -msgid "Date:" -msgstr "Kuupäev:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Aeg:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Otsi" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Lisa Uus" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Lehte ei leitud" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Vabandame, kuid soovitud lehte ei leitud." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Kodu" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Serveri viga" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Serveri viga (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Serveri Viga (500)" - -#: 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 "" -"On tekkinud viga. Vastavasisuline teavitus on saadetud süsteemi haldajale " -"ning vea parandamisega tegeletakse esimesel võimalusel. Täname mõistva " -"suhtumise eest!" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Käivita valitud toiming" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Mine" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Kliki siin, et märgistada objektid üle kõigi lehekülgede" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Märgista kõik %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Tühjenda valik" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Tere tulemast," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentatsioon" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Muuda salasõna" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Logi välja" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django administreerimisliides" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django administreerimisliides" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Lisa" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Ajalugu" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Näita lehel" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Palun parandage allolev viga" -msgstr[1] "Palun parandage allolevad vead" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Lisa %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtreeri" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Kustuta" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Selleks, et kustutada %(object_name)s '%(escaped_object)s', on vaja " -"kustutada lisaks ka kõik seotud objecktid, aga teil puudub õigus järgnevat " -"tüüpi objektide kustutamiseks:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Et kustutada %(object_name)s '%(escaped_object)s', on vaja kustutada " -"järgmised kaitstud seotud objektid:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Kas olete kindel, et soovite kustutada objekti %(object_name)s \"%" -"(escaped_object)s\"? Kõik järgnevad seotud objektid kustutatakse koos " -"sellega:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Jah, olen kindel" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Kustuta mitu objekti" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Kui kustutada valitud %(objects_name)s, peaks kustutama ka seotud objektid, " -"aga sinu kasutajakontol pole õigusi järgmiste objektitüüpide kustutamiseks:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Et kustutada valitud %(objects_name)s, on vaja kustutada ka järgmised " -"kaitstud seotud objektid:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Kas oled kindel, et soovid kustutada valitud %(objects_name)s? Kõik " -"järgnevad objektid ja seotud objektid kustutatakse:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Rakenduses %(name)s leitud mudelid" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Muuda" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Teil ei ole õigust midagi muuta." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Hiljutised Toimingud" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Minu Toimingud" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ei leitud ühtegi" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Tundmatu sisu" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"On tekkinud viga seoses andmebaasiga. Veenduge, et kõik vajalikud " -"andmebaasitabelid on loodud ning et andmebaas on vastava kasutaja poolt " -"loetav." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Kasutajatunnus:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Salasõna:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Kuupäev/kellaaeg" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Kasutaja" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Toiming" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Sellel objektil puudub muudatuste ajalugu. Tõenäoliselt ei kasutatud selle " -"objekti lisamisel käesolevat administreerimislidest." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Näita kõiki" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Salvesta" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Otsing" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s tulemus" -msgstr[1] "%(counter)s tulemust" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "Kokku %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Salvesta uuena" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Salvesta ja lisa uus" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Salvesta ja jätka muutmist" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Kõige pealt sisestage kasutajatunnus ja salasõna, seejärel on võimalik muuta " -"täiendavaid kasutajaandmeid." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Sisestage kasutajanimi ja salasõna." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Sisestage uus salasõna kasutajale %(username)s" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Salasõna" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Salasõna (uuesti)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "" -"Sisestage sama salasõna uuesti veendumaks, et sisestamisel ei tekkinud vigu" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Lisa veel üks %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Eemalda" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Kustutan?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Tänan, et veetsite aega meie lehel." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Logi uuesti sisse" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Salasõna muutmine" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Salasõna muutmine õnnestus" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Teie salasõna on vahetatud." - -#: templates/registration/password_change_form.html:22 -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 "" -"Turvalisuse tagamiseks palun sisestage oma praegune salasõna ning seejärel " -"uus salasõna.Veendumaks, et uue salasõna sisestamisel ei tekkinud vigu, " -"palun sisestage see kaks korda." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Vana salasõna" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Uus salasõna" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Muuda salasõna" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Uue parooli loomine" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Uue salasõna loomine valmis" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Teie salasõna on määratud. Võite nüüd sisse logida." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Uue salasõna loomise kinnitamine" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Sisestage uus salasõna" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Palun sisestage uus salasõna kaks korda, et saaksime veenduda, et " -"sisestamisel ei tekkinud vigu." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Uus salasõna:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Kinnita salasõna:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Uue salasõna loomine ebaõnnestus" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Uue salasõna loomise link ei olnud korrektne. Võimalik, et seda on varem " -"kasutatud. Esitage uue salasõna taotlus uuesti." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Uue parooli loomine õnnestus" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Teie poolt sisestatud e-posti aadressile on saadetud juhised uue salasõna " -"määramiseks. Kiri peaks kohale jõudma varsti." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Oled selle kirja saanud, sest soovisite salasõna algseadistust oma " -"kasutajakontole saidil %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Palun minge järmisele lehele ning sisestage uus salasõna" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Teie kasutajatunnus juhul, kui olete unustanud:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Täname meie lehte külastamast!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s meeskond" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Unustasid parool? Sisesta oma e-posti aadress ning me saadame sulle juhised " -"uue parooli määramiseks." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-posti aadress:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Reseti parool" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Kõik kuupäevad" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Puudub)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Vali %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Vali %s mida muuta" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 3a508fd0d..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po deleted file mode 100644 index fd9df6f3a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/et/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,153 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-07 21:21+0000\n" -"Last-Translator: eallik \n" -"Language-Team: Estonian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Saadaval %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filter" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Vali kõik" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Lisa" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Eemalda" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Valitud %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Tee valik(ud) ja klõpsa" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Puhasta kõik" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s %(cnt)sst valitud" -msgstr[1] "%(sel)s %(cnt)sst valitud" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Muudetavates lahtrites on salvestamata muudatusi. Kui sooritate mõne " -"toimingu, lähevad salvestamata muudatused kaotsi." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Valisid toimingu, kuid pole salvestanud muudatusi lahtrites. Salvestamiseks " -"palun vajuta OK. Pead toimingu uuesti käivitama." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Valisid toimingu, kuid sa pole ühtegi lahtrit muutnud. Tõenäoliselt peaksid " -"vajutama 'Mine' mitte 'Salvesta' nuppu." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Jaanuar Veebruar Märts Aprill Mai Juuni Juuli August September Oktoober " -"November Detsember" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "P E T K N R L" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Näita" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Varja" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Pühapäev Esmaspäev Teisipäev Kolmapäev Neljapäev Reede Laupäev" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Praegu" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Kell" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Vali aeg" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Kesköö" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 hommikul" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Keskpäev" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Tühista" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Täna" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalender" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Eile" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Homme" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo deleted file mode 100644 index 59b0d8f30..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.po deleted file mode 100644 index 293f9c001..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/django.po +++ /dev/null @@ -1,806 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Basque \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s elementu ezabatu dira." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Ezin ezabatu %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Ziur al zaude?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Ezabatu aukeratutako %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                By %s:

                                                                \n" -"
                                                                  \n" -msgstr "" -"

                                                                  %s gatik:

                                                                  \n" -"
                                                                    \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Dena" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Bai" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ez" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Ezezaguna" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Edozein data" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Gaur" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Aurreko 7 egunak" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Hilabete hau" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Urte hau" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Mesedez idatzi erabiltzaile izen eta pasahitz egokiak. Maiskula eta " -"minuskulak ondo bereiztu." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" -"Zure sesioa iraungitu da. Mesedez sartu berriro.\n" -"." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Zure e-mail helbidea ez da zure erabiltzaile izena. Saiatu '%s' rekin." - -#: helpers.py:19 -msgid "Action:" -msgstr "Ekintza:" - -#: models.py:19 -msgid "action time" -msgstr "Ekintza hordua" - -#: models.py:22 -msgid "object id" -msgstr "Objetuaren id-a" - -#: models.py:23 -msgid "object repr" -msgstr "Objeturaren aurkezpena" - -#: models.py:24 -msgid "action flag" -msgstr "Ekintza botoia" - -#: models.py:25 -msgid "change message" -msgstr "Mezua aldatu" - -#: models.py:28 -msgid "log entry" -msgstr "Log sarrera" - -#: models.py:29 -msgid "log entries" -msgstr "log sarrerak" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "None" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s aldatuta." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "eta" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" gehituta." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Changed %(list)s for %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" ezabatuta." - -#: options.py:645 -msgid "No fields changed." -msgstr "Ez da eremurik aldatu." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" ondo gehitu da." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Berriro alkatu zenezake beherago." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Beste %s gehitu dezakezu jarraian." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" ondo aldatu da." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" ondo gehitu da. Jarraian aldatu dezakezu berriro." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Elementuak aukeratu behar dira beraien gain ekintzak burutzeko. Ez da " -"elementurik aldatu." - -#: options.py:846 -msgid "No action selected." -msgstr "Ez dago ekintzarik aukeratuta." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s gehitu" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Ez da existitzen %(key)r gakodun %(name)s objecturik." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s aldatu" - -#: options.py:1065 -msgid "Database error" -msgstr "Data base errorea" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(name)s %(count)s ondo aldatu da." -msgstr[1] "%(count)s %(name)s ondo aldatu dira." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "Guztira %(total_count)s aukeratuta" -msgstr[1] "Guztira %(total_count)s aukeratuta" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "Guztira %(cnt)s, 0 aukeratuta" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" ondo ezabatu da." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Aldaketa zerrenda: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Sartu" - -#: sites.py:375 -msgid "Site administration" -msgstr "Web gunearen kudeaketa" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s kudeaketa" - -#: widgets.py:75 -msgid "Date:" -msgstr "Data:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Ordua:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Lookup" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Beste bat gehitu" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Ez da orririk aurkitu" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Barkatu, eskatutako orria ezin daiteke aurkitu" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Hasiera" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Zerbitzari errorea" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Zerbitzari errorea (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Zerbitzari Errorea (500)" - -#: 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 "" -"Arazo bat izan da. Web guneraren administradoreri abisu email bat bidali " -"zaio eta laister konpondua egon beharko luke. Barkatu eragozpenak." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Aukeratutako ekintza burutu" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Aurrera" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Egin klik hemen orri guztietako objectuak aukeratzeko" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Aukeratu %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Garbitu aukeraketa" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Ongi etorri." - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentazioa" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Pasahitza aldatu" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Atera" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django kudeaketa gunea" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django kudeaketa" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Gehitu" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Aurrekoak" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Webgunean ikusi" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Arren zuzendu akatsa" -msgstr[1] "Arren zuzendu akatsak" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Gehitu %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtroa" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Ezabatu" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"%(object_name)s ezabatzean bere '%(escaped_object)s' ere ezabatzen dira, " -"baina zure kontuak ez dauka baimenik objetu mota hauek ezabatzeko:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s' ezabatzeak, lotutako babestutako " -"objektu hauek ezabatzea eskatzen du:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Ziur zaude %(object_name)s \"%(escaped_object)s\" ezabatu nahi dituzula? " -"Erlazionaturik dauden hurrengo elementuak ere ezabatuko dira:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Bai, ziur nago" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Ezabatu hainbat objektu" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Aukeratutako %(objects_name)s ezabatzeak, erlazionatutako objektuak " -"ezabatzea eskatzen du, baina zure kontuak ez dauzka nahiko baimen objektu " -"mota hauek ezabatzeko: " - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Aukeratutako %(objects_name)s ezabatzeak, lotutako babestutako objektu hauek " -"ezabatzea eskatzen du:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Ziur zaude aukeratutako %(objects_name)s ezabatu nahi duzula? Objektu guzti " -"hauek eta eralzionatutako elementu guztiak ezabatuko dira:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s gatik" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s aplikazioan eskuragarri dauden modeloak." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Aldatu" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Ezer aldatzeko baimenik ez duzu." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Azken ekintzak" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Nere ekintzak" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ez dago ezer" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Eduki ezezaguna" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Zerbait gaizki dago zure data-basearekin. Ziurtatu ezazu datu-baseko taulak " -"sortu direla eta erabiltzaile egokiak duela irakurketa baimena" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Erabiltzaile izena:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Pasahitza:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Data/ordua" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Erabiltzailea" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Ekintza" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Objetu honek ez dauka aldaketa zerrendarik. Ziur asko, kudeaketa gunetik " -"kanpo gehituko zen." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Dena erakutsi" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Gorde" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Bilatu" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "Emaitza %(counter)s " -msgstr[1] "%(counter)s emaitza" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s guztira" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Berria bezala gorde" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Gorde eta beste bat gehitu" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Gorde eta aldatzen jarraitu" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Lehenengo erabiltzaile izena eta pasahitza idatzi. Gero erabiltzaile aukera " -"gehiago aldatzeko aukera gehiago izango duzu" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Sartu erabiltzaile izen eta pasahitza." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Pasahitz berria idatzi %(username)s erabiltzailearentzat." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Pasahitza" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Pasahitza (berriro)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Idatzi berriro pasahitza." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Gehitu beste %(verbose_name)s bat" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Ezabatu" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Ezabatu?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Mila esker gaur zure denbora web gunean erabiltzegatik." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Sartu berriro" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Pasahitza aldatu" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Pasahitza ondo aldatu da" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Pasahitza aldatu da" - -#: templates/registration/password_change_form.html:22 -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 "" -"Idatzi pasahitz zaharra segurtasun arrazoiengatik eta gero pasahitz berria " -"bi aldiz, akatsik egiten ez duzula ziurtatu dezagun." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Pasahitz zaharra" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Pasahitz berria" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Nire pasahitza aldatu" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Pasahitza berrezarri" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Pasahitza berresartzea burutu da" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Zure pasahitza ezarri da. Orain aurrera egin eta sartu zaitezke." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Pasahitza berresartzeko konfirmazioa" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Sartu pasahitz berroa" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Mesedez sartu pasahitz berria birritan ondo idatzita dagoela ziurta dezagun." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Pasahitz berria:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Pasahitza baieztatu:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Pasahitza ez da berrezarri" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Pasahitza berresartzeko lotura ez da balekoa. Baliteke lotura aurretik " -"erabilita egotea. Mesedez eskatu berriro pasahitz berrezarpena." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Pasahitza ondo berrezarri da" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Emandako eposta helbidera bidali dizugu pasahitz berrezarketareko " -"jarraibideak. Epe laburrean jaso beharko zenuke." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Mesedez, zoaz hurrengo orrira eta aukeratu pasahitz berria:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Zure erabiltzaile izena (ahaztu badezu):" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Mila esker gure web gunea erabiltzeagatik!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s web guneko taldea" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Pasahitza ahaztu duzu? Sartu zure eposta helbidea eta berri bat ezartzeko " -"jarraibideak bidaliko dizkizugu." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mail helbidea:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Pasahitza berrezarri" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Data guztiak" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s aukeratu" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Aldaketarako %s aukeratu" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 8757aa1f0..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po deleted file mode 100644 index ed200e1e8..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/eu/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,153 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Basque \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s Erabilgarri" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Denak aukeratu" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Gehitu" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Ezabatu" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s Aukeratuak" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Egin zure aukerak eta click egin " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Denak garbitu" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(cnt)s-etik %(sel)s aukeratuta" -msgstr[1] "%(cnt)s-etik %(sel)s aukeratuta" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Gorde gabeko aldaketak dauzkazu eremuetan. Ekintza bat exekutatzen baduzu, " -"gorde gabeko aldaketak galduko dira." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Ekintza bat aukeratu duzu, baina oraindik ez duzu eremuetako aldaketak " -"gorde. Mesedez, sakatu OK gordetzeko. Ekintza berriro exekutatu beharko duzu." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Ekintza bat aukeratu duzu, baina ez duzu inongo aldaketarik egin eremuetan. " -"Litekeena da, Gorde botoia beharrean Aurrera botoiaren bila aritzea." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Urtarrila Otsaila Martxoa Apirila Maiatza Ekaina Uztaila Abuztua Iraila " -"Urria Azaroa Abendua" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "I A A A O O L" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Erakutsi" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Izkutatu" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Igandea Astelehene Asteartea Asteazkena Osteguna Ostirala Larunbata" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Orain" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Erlojua" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Aukeratu ordu bat" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Gauerdia" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Eguerdia" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Atzera" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Gaur" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Egutegia" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Atzo" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Bihar" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo deleted file mode 100644 index b64ccd192..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.po deleted file mode 100644 index 5a66f5480..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/django.po +++ /dev/null @@ -1,792 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Persian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d عدد از %(items)s با موÙقیت پاک شد" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "آیا مطمئن هستید؟" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                    By %s:

                                                                    \n" -"
                                                                      \n" -msgstr "" -"

                                                                      بر اساس %s:

                                                                      \n" -"
                                                                        \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "همه" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "بله" - -#: filterspecs.py:139 -msgid "No" -msgstr "خیر" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "ناشناخته" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "هر تاریخی" - -#: filterspecs.py:197 -msgid "Today" -msgstr "امروز" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Û· روز اخیر" - -#: filterspecs.py:203 -msgid "This month" -msgstr "این ماه" - -#: filterspecs.py:205 -msgid "This year" -msgstr "امسال" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"لطÙاً نام کاربری Ùˆ گذرواژه صحیح را وارد کنید. توجه کنید Ú©Ù‡ هر دو مقدار به " -"حرو٠کوچک Ùˆ بزرگ (انگلیسی) حساس هستند." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"نشانی پست الکترونیکی شما نام کابریتان نیست. %s را به جای آن امتحان کنید." - -#: helpers.py:19 -msgid "Action:" -msgstr "" - -#: models.py:19 -msgid "action time" -msgstr "زمان اتÙاق" - -#: models.py:22 -msgid "object id" -msgstr "شناسهٔ شیء" - -#: models.py:23 -msgid "object repr" -msgstr "صورت شیء" - -#: models.py:24 -msgid "action flag" -msgstr "نشانه عمل" - -#: models.py:25 -msgid "change message" -msgstr "پیغام تغییر" - -#: models.py:28 -msgid "log entry" -msgstr "مورد اتÙاقات" - -#: models.py:29 -msgid "log entries" -msgstr "موارد اتÙاقات" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "هیچ" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s تغییر یاÙته." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "Ùˆ" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s «%(object)s» اضاÙÙ‡ شد." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(list)s %(name)s «%(object)s» تغییر یاÙت." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s «%(object)s» حذ٠شد." - -#: options.py:645 -msgid "No fields changed." -msgstr "Ùیلدی تغییر نیاÙته است." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s «%(obj)s» با موÙقیت اضاÙÙ‡ شد." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "می‌توانید مجدداً آنرا در این پایین ویراش کنید." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "می‌توانید یک %s دیگر در این پایین اضاÙÙ‡ کنید" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s·\"%(obj)s\" با موÙقیت تغییر یاÙت." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s·\"%(obj)s\" با موÙقیت اضاÙÙ‡ شد. می‌توانید در این پایین ویرایشش کنید." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "اضاÙÙ‡ کردن %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "تغییر %s" - -#: options.py:1065 -msgid "Database error" -msgstr "خطا در بانک اطلاعاتی" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s·\"%(obj)s\" با موÙقیت حذ٠شد." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "تاریخچهٔ تغییر: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "ورود" - -#: sites.py:375 -msgid "Site administration" -msgstr "مدیریت وبگاه" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "مدیریت %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "تاریخ:" - -#: widgets.py:75 -msgid "Time:" -msgstr "زمان:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "جستجو" - -#: widgets.py:246 -msgid "Add Another" -msgstr "اضاÙÙ‡ کردن یکی دیگر" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "صÙحه یاÙت نشد" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "متأسÙیم، صÙحه مورد تقاضا یاÙت نشد." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "آغازه" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "خطای کارگزار" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "خطای کارگزار (ÛµÛ°Û°)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "خطای کارگزار (ÛµÛ°Û°)" - -#: 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 "" -"خطایی وجود دارد. این خطا توسط پست الکترونیکی به مدیران وبگاه گزارش داده شده " -"است Ùˆ در اولین Ùرصت اصلاح خواهد شد. از بردباری شما متشکریم." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "برو" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "خوش آمدید،" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "مستندات" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "تغییر گذرواژه" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "خروج" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "وب‌گاه مدیریت Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "مدیریت Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "اضاÙÙ‡ کردن" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "تاریخچه" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "مشاهده در وبگاه" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "لطÙاً خطای زیر را حل کنید." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "اضاÙه‌کردن %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Ùیلتر" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "حذÙ" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"حذ٠%(object_name)s·'%(escaped_object)s' Ù…ÛŒ تواند باعث حذ٠اشیاء مرتبط شود. " -"اما حساب شما دسترسی لازم برای حذ٠اشیای از انواع زیر را ندارد:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"آیا مطمئنید Ú©Ù‡ می‌خواهید %(object_name)s·\"%(escaped_object)s\" را حذ٠کنید؟ " -"کلیهٔ اشیای مرتبط زیر حذ٠خواهند شد:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "بله، مطمئن هستم." - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "براساس %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "مدل‌های موجود در برنامهٔ %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "تغییر" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "شما اجازهٔ ویرایش چیزی را ندارید." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "اعمال اخیر" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "اعمال من" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "چیزی در دسترس نیست" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"در نصب بانک اطلاعاتی شما مشکلی وجود دارد. مطمئن شوید Ú©Ù‡ جداول مربوطه به " -"درستی ایجاد شده‌اند Ùˆ اطمینان حاصل کنید Ú©Ù‡ بانک اطلاعاتی توسط کاربر مربوطه " -"قابل خواندن Ù…ÛŒ باشد." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "نام کاربری:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "گذرواژه:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "تاریخ/ساعت" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "کاربر" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "عمل" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"این شیء تاریخچهٔ تغییرات ندارد. احتمالا این شیء توسط وبگاه مدیریت ایجاد نشده " -"است." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "نمایش همه" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "ذخیره" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "در مجموع %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "ذخیره به عنوان جدید" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "ذخیره Ùˆ ایجاد یکی دیگر" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "ذخیره Ùˆ ادامه ویرایش" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"ابتدا یک نام کاربری Ùˆ گذرواژه وارد کنید. سپس Ù…ÛŒ توانید مشخصات دیگر کاربر را " -"ویرایش کنید." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "برای کابر %(username)s یک گذرنامهٔ جدید وارد کنید." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "گذرواژه" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "گذرواژه (تکرار)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "همان گذرواژهٔ بالایی را برای اطمینان دوباره وارد کنید." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "حذÙØŸ" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "متشکر از اینکه مدتی از وقت خود را به ما اختصاص دادید." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "ورود دوباره" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "تغییر گذرواژه" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "گذرواژه تغییر یاÙت." - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "گذرواژهٔ شما تغییر یاÙت." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"گذرواژهٔ قدیمی خود را، برای امنیت بیشتر، وارد کنید Ùˆ سپس گذرواژهٔ جدیدتان را " -"دوبار وارد کنید تا ما بتوانیم Ú†Ú© کنیم Ú©Ù‡ به درستی تایپ کرده‌اید." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "گذرواژهٔ قدیمی" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "گذرواژهٔ جدید" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "تغییر گذرواژهٔ من" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "ایجاد گذرواژهٔ جدید" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "گذرواژهٔ جدید ایجاد شد" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "گذرواژهٔ جدیدتان تنظیم شد. اکنون می‌توانید وارد وبگاه شوید." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "تصدیق گذرواژهٔ جدید" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "ورود گذرواژهٔ جدید" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"گذرواژهٔ جدیدتان را دوبار وارد کنید تا ما بتوانیم Ú†Ú© کنیم Ú©Ù‡ به درستی تایپ " -"کرده‌اید." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "گذرواژهٔ جدید" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "تکرار گذرواژه" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "گذرواژهٔ جدید ایجاد نشد." - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"پیوند ایجاد گذرواژهٔ جدید نامعتبر بود، احتمالاً به این علت Ú©Ù‡ قبلاً از آن " -"استÙاده شده است. لطÙاً برای یک گذرواژهٔ جدید درخواست دهید." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "گذرواژهٔ جدید ایجاد شد." - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"ما به نشانی پست اکترونیکی‌ای Ú©Ù‡ وارد کردید دستورالعملی برای تنظیم گذرواژه‌تان " -"Ùرستادیم. به زودی به شما می‌رسد." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "لطÙاً به صÙحهٔ زیر بروید Ùˆ یک گذرواژهٔ جدید انتخاب کنید:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "نام کاربریتان، اگر یادتان رÙته است:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "متشکر از استÙادهٔ شما از وبگاه ما" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "گروه %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"گذرواژه خود را Ùراموش کرده‌اید؟ نشانی پست الکترونیکی خود را وارد کنید. ما " -"دستورالعملی برای ایجاد گذرنامهٔ جدید به پست الکترونیکی‌تان خواهیم Ùرستاد." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "نشانی پست الکترونیکی:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "ایجاد گذرواژهٔ جدید" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "همهٔ تاریخ‌ها" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s انتخاب کنید" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "%s را برای تغییر انتخاب کنید" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 280fffae3..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po deleted file mode 100644 index b2ccc6a8c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/fa/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-06 14:51+0000\n" -"Last-Translator: sinacher \n" -"Language-Team: Persian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s موجود" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Ùیلتر" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "انتخاب همه" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "اضاÙÙ‡ کردن" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "حذÙ" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s انتخاب شده" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "موارد مورد نظر را انتخاب کرده Ùˆ کلیک کنید " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "پاک کردن همه" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] " %(sel)s از %(cnt)s انتخاب شده است." - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"شما تغییراتی در بعضی Ùیلدهای قابل تغییر انجام داده اید. اگر کاری انجام " -"دهید، تغییرات از دست خواهند رÙت" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"شما کاری را انتخاب کرده اید، ولی هنوز تغییرات بعضی Ùیلد ها را ذخیره نکرده " -"اید. لطÙا OK را Ùشار دهید تا ذخیره شود.\n" -"شما باید عملیات را دوباره انجام دهید." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"شما عملی را انجام داده اید، ولی تغییری انجام نداده اید. احتمالا دنبال کلید " -"Go به جای Save میگردید." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "ژانویه Ùوریه مارس آوریل مه ژوئن ژوئیه اوت سپتامبر اکتبر نوامبر دسامبر" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "یکشنبه دوشنبه سه‌شنبه چهارشنبه پنجشنبه جمعه شنبه" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "نمایش" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "پنهان کردن" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "یکشنبه دوشنبه سه‌شنبه چهارشنبه پنجشنبه جمعه شنبه" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "حالا" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "ساعت" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "یک زمان انتخاب کنید" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "نیمه‌شب" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "Û¶ صبح" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "ظهر" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "انصراÙ" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "امروز" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "تقویم" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "دیروز" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Ùردا" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo deleted file mode 100644 index 869daf8c9..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.po deleted file mode 100644 index 38a7b3929..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/django.po +++ /dev/null @@ -1,805 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Finnish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Onnistuneesti poistettu %(count)d \"%(items)s\"-kohdetta." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Ei voida poistaa: %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Oletko varma?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Poista valitut \"%(verbose_name_plural)s\"-kohteet" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                        By %s:

                                                                        \n" -"
                                                                          \n" -msgstr "" -"

                                                                          %s:

                                                                          \n" -"
                                                                            \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Kaikki" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Kyllä" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ei" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Tuntematon" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Mikä tahansa päivä" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Tänään" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Viimeiset 7 päivää" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Tässä kuussa" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Tänä vuonna" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Käyttäjätunnus tai salasana ei kelpaa. Huomaa, että isot ja pienet kirjaimet " -"ovat merkitseviä." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Kirjaudu uudelleen sisään, sillä istuntosi on vanhentunut." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Sähköpostiosoitteesi ei ole käyttäjätunnuksesi. Kokeile '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Toiminto:" - -#: models.py:19 -msgid "action time" -msgstr "tapahtumahetki" - -#: models.py:22 -msgid "object id" -msgstr "kohteen tunniste" - -#: models.py:23 -msgid "object repr" -msgstr "kohteen tiedot" - -#: models.py:24 -msgid "action flag" -msgstr "tapahtumatyyppi" - -#: models.py:25 -msgid "change message" -msgstr "selitys" - -#: models.py:28 -msgid "log entry" -msgstr "lokimerkintä" - -#: models.py:29 -msgid "log entries" -msgstr "lokimerkinnät" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ei arvoa" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Muokattu: %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ja" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Lisätty %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Muutettu %(list)s kohteelle %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Poistettu %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Ei muutoksia kenttiin." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" on lisätty." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Voit muokata sitä edelleen alla." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Uusi %s on lisättävissä alla." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" on muutettu." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" on lisätty. Voit muokata sitä uudelleen alla." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Kohteiden täytyy olla valittuna, jotta niihin voi kohdistaa toimintoja. " -"Kohteita ei ole muutettu." - -#: options.py:846 -msgid "No action selected." -msgstr "Ei toimintoa valittuna." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Lisää %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s perusavaimella %(key)r ei ole olemassa." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Muokkaa %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Tietokantavirhe" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s on muokattu." -msgstr[1] "%(count)s \"%(name)s\"-kohdetta on muokattu." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s valittu" -msgstr[1] "Kaikki %(total_count)s valittu" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 valittuna %(cnt)s mahdollisesta" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" on poistettu." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Muokkaushistoria: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Kirjaudu sisään" - -#: sites.py:375 -msgid "Site administration" -msgstr "Sivuston ylläpito" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s ylläpito" - -#: widgets.py:75 -msgid "Date:" -msgstr "Pvm:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Klo:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Etsi" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Lisää seuraava" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Sivua ei löydy" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Pahoittelemme, pyydettyä sivua ei löytynyt." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Etusivu" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Palvelinvirhe" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Palvelinvirhe (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Palvelinvirhe (500)" - -#: 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 "" -"Palvelimella on tapahtunut virhe. Virheestä on ilmoitettu sivuston " -"ylläpitäjille ja se hoidetaan pian. Kiitämme kärsivällisyydestä." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Suorita valittu toiminto" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Suorita" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Klikkaa tästä valitaksesi kohteet kaikilta sivuilta" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Valitse kaikki %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Tyhjennä valinta" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Tervetuloa," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Ohjeita" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Vaihda salasana" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Kirjaudu ulos" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django-sivuston ylläpito" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Djangon ylläpito" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Lisää" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Muokkaushistoria" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Näytä lopputulos" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Korjaa allaoleva virhe." -msgstr[1] "Korjaa allaolevat virheet." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Lisää %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Suodatin" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Poista" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Kohteen '%(escaped_object)s' (%(object_name)s) poisto poistaisi myös siihen " -"liittyviä kohteita, mutta sinulla ei ole oikeutta näiden kohteiden " -"poistamiseen:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s': poistettaessa joudutaan poistamaan " -"myös seuraavat suojatut siihen liittyvät kohteet:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Haluatko varmasti poistaa kohteen \"%(escaped_object)s\" (%(object_name)s)? " -"Myös seuraavat kohteet poistettaisiin samalla:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Kyllä, olen varma" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Poista useita kohteita" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Jos valitut %(objects_name)s poistettaisiin, jouduttaisiin poistamaan niihin " -"liittyviä kohteita. Sinulla ei kuitenkaan ole oikeutta poistaa seuraavia " -"kohdetyyppejä:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Jos valitut %(objects_name)s poistetaan, pitää poistaa myös seuraavat " -"suojatut niihin liittyvät kohteet:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Haluatki varmasti poistaa valitut %(objects_name)s? Samalla poistetaan " -"kaikki alla mainitut ja niihin liittyvät kohteet:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Sovelluksen %(name)s mallit." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Muokkaa" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Sinulla ei ole oikeutta muokata mitään." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Viimeisimmät tapahtumat" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Omat tapahtumani" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ei yhtään" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Tuntematon sisältö" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Tietokanta-asennuksessa on jotain vialla. Varmista, että sopivat taulut on " -"luotu ja että oikea käyttäjä voi lukea tietokantaa." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Käyttäjätunnus:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Salasana:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Pvm/klo" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Käyttäjä" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Tapahtuma" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Tällä kohteella ei ole muutoshistoriaa. Sitä ei ole ilmeisesti lisätty tämän " -"ylläpitosivun avulla." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Näytä kaikki" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Tallenna ja poistu" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Haku" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s osuma" -msgstr[1] "%(counter)s osumaa" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "yhteensä %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Tallenna uutena" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Tallenna ja lisää toinen" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Tallenna välillä ja jatka muokkaamista" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Syötä ensin käyttäjätunnus ja salasana. Sen jälkeen voit muokata muita " -"käyttäjän tietoja." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Syötä käyttäjätunnus ja salasana." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Syötä käyttäjän %(username)s uusi salasana." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Salasana" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Salasana toistamiseen" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Syötä sama salasana tarkistuksen vuoksi toistamiseen." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Lisää toinen %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Poista" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Poista?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Kiitos sivuillamme viettämästäsi ajasta." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Kirjaudu uudelleen sisään" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Salasanan vaihtaminen" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Salasanan vaihtaminen onnistui" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Salasanasi on vaihdettu." - -#: templates/registration/password_change_form.html:22 -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 "" -"Syötä vanha salasanasi varmistukseksi, ja syötä sitten uusi salasanasi kaksi " -"kertaa, jotta se tulee varmasti oikein." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Vanha salasana" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Uusi salasana" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Vaihda salasana" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Salasanan nollaus" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Salasanan nollaus valmis" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Salasanasi on asetettu. Nyt voit kirjautua sisään." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Salasanan nollauksen vahvistus" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Syötä uusi salasana" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Syötä uusi salasanasi kaksi kertaa, jotta voimme varmistaa että syötit sen " -"oikein." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Uusi salasana:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Varmista uusi salasana:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Salasanan nollaus ei onnistunut" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Salasanan nollauslinkki oli virheellinen, mahdollisesti siksi että se on jo " -"käytetty. Ole hyvä ja pyydä uusi salasanan nollaus." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Salasanan nollaus onnistui" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Uusi salasanasi on lähetetty antamaasi sähköpostiosoitteeseen. Se saapuu " -"tuota pikaa." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Määrittele uusi salasanasi oheisella sivulla:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Käyttäjätunnuksesi siltä varalta, että olet unohtanut sen:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Kiitos vierailustasi sivuillamme!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s -sivuston ylläpitäjät" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Unohditko salasanasi? Syötä alle sähköpostiosoitteesi, niin \n" -"lähetämme sinulle uuden salasanan." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Sähköpostiosoite:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Nollaa salasanani" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Kaikki päivät" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Valitse %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Valitse muokattava %s" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo deleted file mode 100644 index f5869c141..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po deleted file mode 100644 index 8c99afe02..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/fi/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Finnish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Mahdolliset %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Valitse kaikki" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Lisää uusi" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Poista" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Valitut %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Valitse vasemmalta ja napsauta " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Tyhjennä kaikki" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s valittuna %(cnt)s mahdollisesta" -msgstr[1] "%(sel)s valittuna %(cnt)s mahdollisesta" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Sinulla on tallentamattomia muutoksia yksittäisissä muokattavissa kentissä. " -"Jos suoritat toiminnon, tallentamattomat muutoksesi katoavat." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Olet valinnut toiminnon, mutta et ole vielä tallentanut muutoksiasi " -"yksittäisiin kenttiin. Paina OK tallentaaksesi. Sinun pitää suorittaa " -"toiminto uudelleen." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Olet valinnut toiminnon etkä ole tehnyt yhtään muutosta yksittäisissä " -"kentissä. Etsit todennäköisesti Suorita-nappia Tallenna-napin sijaan." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Tammikuu Helmikuu Maaliskuu Huhtikuu Toukokuu Kesäkuu Heinäkuu Elokuu " -"Syyskuu Lokakuu Marraskuu Joulukuu" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M T K T P L" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Näytä" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Piilota" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Sunnuntai Maanantai Tiistai Keskiviikko Torstai Perjantai Lauantai" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Nyt" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Kello" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Valitse kellonaika" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "24" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "06" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "12" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Peruuta" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Tänään" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalenteri" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Eilen" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Huomenna" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo deleted file mode 100644 index 210abf681..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.po deleted file mode 100644 index 192a6cf17..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/django.po +++ /dev/null @@ -1,821 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: claudep \n" -"Language-Team: French \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s supprimés avec succès." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Impossible de supprimer %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Êtes-vous sûr ?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Supprimer les %(verbose_name_plural)s sélectionnés" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                            By %s:

                                                                            \n" -"
                                                                              \n" -msgstr "" -"

                                                                              Par %s :

                                                                              \n" -"
                                                                                \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Tout" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Oui" - -#: filterspecs.py:139 -msgid "No" -msgstr "Non" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Inconnu" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Toutes les dates" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Aujourd'hui" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Les 7 derniers jours" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Ce mois-ci" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Cette année" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Saisissez un nom d'utilisateur et un mot de passe valide. Remarquez que " -"chacun de ces champs est sensible à la casse (différenciation des majuscules/" -"minuscules)." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Reconnectez-vous car votre session a expiré." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Votre adresse électronique n'est pas votre nom d'utilisateur. Essayez « %s » " -"à la place." - -#: helpers.py:19 -msgid "Action:" -msgstr "Action :" - -#: models.py:19 -msgid "action time" -msgstr "heure de l'action" - -#: models.py:22 -msgid "object id" -msgstr "id de l'objet" - -#: models.py:23 -msgid "object repr" -msgstr "représentation de l'objet" - -#: models.py:24 -msgid "action flag" -msgstr "indicateur de l'action" - -#: models.py:25 -msgid "change message" -msgstr "message de modification" - -#: models.py:28 -msgid "log entry" -msgstr "entrée d'historique" - -#: models.py:29 -msgid "log entries" -msgstr "entrées d'historique" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Aucun(e)" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Modifié %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "et" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s « %(object)s » ajouté." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(list)s modifié pour %(name)s « %(object)s »." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s « %(object)s » supprimé." - -#: options.py:645 -msgid "No fields changed." -msgstr "Aucun champ modifié." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "L'objet %(name)s « %(obj)s » a été ajouté avec succès." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Vous pouvez continuer l'édition ci-dessous." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Vous pouvez ajouter un autre %s ci-dessous." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "L'objet %(name)s « %(obj)s » a été modifié avec succès." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"L'objet %(name)s « %(obj)s » a été ajouté avec succès. Vous pouvez continuer " -"l'édition ci-dessous." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Des éléments doivent être sélectionnés afin d'appliquer les actions. Aucun " -"élément n'a été modifié." - -#: options.py:846 -msgid "No action selected." -msgstr "Aucune action sélectionnée." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Ajout %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "L'objet %(name)s avec la clef primaire %(key)r n'existe pas." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Modification de %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Erreur de base de données" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s objet %(name)s a été modifié avec succès." -msgstr[1] "%(count)s objets %(name)s ont été modifiés avec succès." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s sélectionné" -msgstr[1] "Tous les %(total_count)s sélectionnés" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 sur %(cnt)s sélectionné" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "L'objet %(name)s « %(obj)s » a été supprimé avec succès." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Historique des changements : %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Connexion" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administration du site" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administration %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Date :" - -#: widgets.py:75 -msgid "Time:" -msgstr "Heure :" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Recherche" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Ajouter un autre" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Cette page n'a pas été trouvée" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Nous sommes désolés, mais la page demandée est introuvable." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Accueil" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Erreur du serveur" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Erreur du serveur (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Erreur du serveur (500)" - -#: 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 "" -"Une erreur est survenue. Elle a été transmise par courriel aux " -"administrateurs du site et sera corrigée dans les meilleurs délais. Merci " -"pour votre patience." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Exécuter l'action sélectionnée" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Envoyer" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Cliquez ici pour sélectionner tous les objets sur l'ensemble des pages" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Sélectionner tous les %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Effacer la sélection" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Bienvenue," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentation" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Modifier votre mot de passe" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Déconnexion" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Site d'administration de Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administration de Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Ajouter" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historique" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Voir sur le site" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Corrigez l'erreur suivante." -msgstr[1] "Corrigez les erreurs suivantes." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Ajouter %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtre" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Supprimer" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Supprimer l'objet %(object_name)s « %(escaped_object)s » provoquerait la " -"suppression des objets qui lui sont liés, mais votre compte ne possède pas " -"la permission de supprimer les types d'objets suivants :" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Supprimer l'objet %(object_name)s « %(escaped_object)s » provoquerait la " -"suppression des objets liés et protégés suivants :" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Voulez-vous vraiment supprimer l'objet %(object_name)s « %(escaped_object)" -"s » ? Les éléments suivants sont liés à celui-ci et seront aussi supprimés :" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Oui, je suis sûr" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Supprimer plusieurs objets" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"La suppression des objets %(objects_name)s sélectionnés provoquerait la " -"suppression d'objets liés, mais votre compte n'est pas autorisé à supprimer " -"les types d'objet suivants :" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"La suppression des objets %(objects_name)s sélectionnés provoquerait la " -"suppression des objets liés et protégés suivants :" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Voulez-vous vraiment supprimer les objets %(objects_name)s sélectionnés ? " -"Tous les objets suivants et les éléments liés seront supprimés :" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Par %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modèles disponibles dans l'application %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Modifier" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Vous n'avez pas la permission de modifier quoi que ce soit." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Actions récentes" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mes actions" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Aucun(e) disponible" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Contenu inconnu" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"L'installation de votre base de données est incorrecte. Vérifiez que les " -"tables utiles ont été créées, et que la base est accessible par " -"l'utilisateur concerné." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Nom d'utilisateur :" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Mot de passe :" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Date/heure" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Utilisateur" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Action" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Cet objet n'a pas d'historique de modification. Il n'a probablement pas été " -"ajouté au moyen de ce site d'administration." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Tout afficher" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Enregistrer" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Rechercher" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s résultat" -msgstr[1] "%(counter)s résultats" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s résultats" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Enregistrer en tant que nouveau" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Enregistrer et ajouter un nouveau" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Enregistrer et continuer les modifications" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Saisissez tout d'abord un nom d'utilisateur et un mot de passe. Vous pourrez " -"ensuite modifier plus d'options." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Saisissez un nom d'utilisateur et un mot de passe." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Saisissez un nouveau mot de passe pour l'utilisateur %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Mot de passe" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Mot de passe (à nouveau)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Saisissez le même mot de passe que précédemment, pour vérification." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Ajouter un objet %(verbose_name)s supplémentaire" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Supprimer" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Supprimer ?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Merci pour le temps que vous avez accordé à ce site aujourd'hui." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Connectez-vous à nouveau" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Modification de votre mot de passe" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Mot de passe modifié avec succès" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Votre mot de passe a été modifié." - -#: templates/registration/password_change_form.html:22 -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 "" -"Pour des raisons de sécurité, saisissez votre ancien mot de passe puis votre " -"nouveau mot de passe à deux reprises afin de vérifier qu'il est correctement " -"saisi." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Ancien mot de passe" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nouveau mot de passe" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Modifier mon mot de passe" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Réinitialisation du mot de passe" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Mise à jour du mot de passe effectuée avec succès" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" -"Votre mot de passe a été défini. Vous pouvez maintenant vous authentifier." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Confirmation de mise à jour du mot de passe" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Saisissez un nouveau mot de passe" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Saisissez deux fois votre nouveau mot de passe afin de vérifier qu'il est " -"correctement saisi." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nouveau mot de passe :" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Confirmation du mot de passe :" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Échec lors de la mise à jour du mot de passe" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Le lien de mise à jour du mot de passe n'était pas valide, probablement en " -"raison de sa précédente utilisation. Veuillez renouveler votre demande de " -"mise à jour de mot de passe." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Mot de passe mis à jour avec succès" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Nous vous avons envoyé par courriel les instructions pour changer de mot de " -"passe à l'adresse que vous avez indiquée. Vous devriez le recevoir " -"rapidement." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Vous recevez ce message en réponse à votre demande de réinitialisation du " -"mot de passe de votre compte sur %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" -"Veuillez vous rendre sur cette page et choisir un nouveau mot de passe :" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Votre nom d'utilisateur, en cas d'oubli :" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Merci d'utiliser notre site !" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "L'équipe %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Mot de passe perdu ? Saisissez votre adresse électronique ci-dessous et nous " -"vous enverrons les instructions pour en créer un nouveau." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Adresse électronique :" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Réinitialiser mon mot de passe" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Toutes les dates" - -#: views/main.py:27 -msgid "(None)" -msgstr "(aucun-e)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Sélectionnez %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Sélectionnez l'objet %s à changer" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 7f93ff3d1..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po deleted file mode 100644 index 520680d78..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/fr/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: claudep \n" -"Language-Team: French \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s disponible(s)" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtrer" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Tout choisir" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Ajouter" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Enlever" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s choisi(es)" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Sélectionnez un ou plusieurs choix et cliquez " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Tout enlever" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s sur %(cnt)s sélectionné" -msgstr[1] "%(sel)s sur %(cnt)s sélectionnés" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Vous avez des modifications non sauvegardées sur certains champs éditables. " -"Si vous lancez une action, ces modifications vont être perdues." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Vous avez sélectionné une action, mais vous n'avez pas encore sauvegardé " -"certains champs modifiés. Cliquez sur OK pour sauver. Vous devrez " -"réappliquer l'action." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Vous avez sélectionné une action, et vous n'avez fait aucune modification " -"sur des champs. Vous cherchez probablement le bouton Envoyer et non le " -"bouton Sauvegarder." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Janvier Février Mars Avril Mai Juin Juillet Août Septembre Octobre Novembre " -"Décembre" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D L M M J V S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Afficher" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Masquer" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Dimanche Lundi Mardi Mercredi Jeudi Vendredi Samedi" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Maintenant" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Horloge" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Choisir une heure" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Minuit" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6:00" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Midi" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Annuler" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Aujourd'hui" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendrier" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Hier" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Demain" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/django.mo deleted file mode 100644 index 037448056..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/django.po deleted file mode 100644 index 0f2b37979..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/django.po +++ /dev/null @@ -1,767 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-20 18:56+0000\n" -"Last-Translator: Django team\n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fy_NL\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                By %s:

                                                                                \n" -"
                                                                                  \n" -msgstr "" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "" - -#: filterspecs.py:139 -msgid "No" -msgstr "" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "" - -#: filterspecs.py:197 -msgid "Today" -msgstr "" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "" - -#: filterspecs.py:203 -msgid "This month" -msgstr "" - -#: filterspecs.py:205 -msgid "This year" -msgstr "" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" - -#: helpers.py:19 -msgid "Action:" -msgstr "" - -#: models.py:19 -msgid "action time" -msgstr "" - -#: models.py:22 -msgid "object id" -msgstr "" - -#: models.py:23 -msgid "object repr" -msgstr "" - -#: models.py:24 -msgid "action flag" -msgstr "" - -#: models.py:25 -msgid "change message" -msgstr "" - -#: models.py:28 -msgid "log entry" -msgstr "" - -#: models.py:29 -msgid "log entries" -msgstr "" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:645 -msgid "No fields changed." -msgstr "" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "" - -#: options.py:1065 -msgid "Database error" -msgstr "" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" -msgstr[1] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" -msgstr[1] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "" - -#: sites.py:375 -msgid "Site administration" -msgstr "" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "" - -#: widgets.py:75 -msgid "Date:" -msgstr "" - -#: widgets.py:75 -msgid "Time:" -msgstr "" - -#: widgets.py:140 -msgid "Lookup" -msgstr "" - -#: widgets.py:246 -msgid "Add Another" -msgstr "" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "" - -#: 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 "" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "" -msgstr[1] "" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" -msgstr[1] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/djangojs.mo deleted file mode 100644 index cb75bdfac..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/djangojs.po deleted file mode 100644 index 5ff2a0f5b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/fy_NL/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,145 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-15 15:26+0000\n" -"Last-Translator: Django team\n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fy_NL\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" -msgstr[1] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo deleted file mode 100644 index 2d76b43d7..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.po deleted file mode 100644 index 71522b136..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/django.po +++ /dev/null @@ -1,828 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-08 17:04+0000\n" -"Last-Translator: mick \n" -"Language-Team: Irish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ga\n" -"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " -"4)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "D'éirigh le scriosadh %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Ní féidir scriosadh %(name)s " - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "An bhfuil tú cinnte?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Scrios %(verbose_name_plural) roghnaithe" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                  By %s:

                                                                                  \n" -"
                                                                                    \n" -msgstr "" -"

                                                                                    Trí %s:

                                                                                    \n" -"
                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Gach" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Tá" - -#: filterspecs.py:139 -msgid "No" -msgstr "Níl" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Gan aithne" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Aon dáta" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Inniu" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "7 lá a chuaigh thart" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Táim cinnte" - -#: filterspecs.py:205 -msgid "This year" -msgstr "An blian seo" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Le do thoil, iontráil aihm úsaideora agus focal faire ceart. Bí cúramach go " -"bhfuil an beirt acu cásíogair." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Le do thoil, logáil isteach arís cé go bhfuil to seisúin críochnaithe." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Níl do ríomhseoladh do ainm úsaideora. Bain trial as '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Aicsean:" - -#: models.py:19 -msgid "action time" -msgstr "am aicsean" - -#: models.py:22 -msgid "object id" -msgstr "id oibiacht" - -#: models.py:23 -msgid "object repr" -msgstr "repr oibiacht" - -#: models.py:24 -msgid "action flag" -msgstr "brat an aicsean" - -#: models.py:25 -msgid "change message" -msgstr "teachtaireacht athrú" - -#: models.py:28 -msgid "log entry" -msgstr "loga iontráil" - -#: models.py:29 -msgid "log entries" -msgstr "loga iontrálacha" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Dada" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Athraithe %s" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "agus" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Suimithe %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Athraithe %(list)s le %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Scriosaithe %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Dada réimse aithraithe" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Bhí %(name)s \"%(obj)s\" breisithe go rathúil" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Is féidir leat é a cuir in eagar thíos." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Is féidir le ceann eile %s a cuir le thíos." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Bhí an %(name)s \"%(obj)s\" aithraithe to rathúil" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Chuir an %(name)s·\"%(obj)s\"·go rathúil.·Is féidir leat é a cuir in eagar " -"thíos." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Ní mór Míreanna a roghnú chun caingne a dhéanamh orthu. Níl aon mhíreanna a " -"athrú." - -#: options.py:846 -msgid "No action selected." -msgstr "Uimh gníomh roghnaithe." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Cuir %s le" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Níl réad le hainm %(name)s agus eochair %(key)r ann." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Aithrigh %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Botún bunachar sonraí" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s athraithe go rathúil" -msgstr[1] "%(count)s %(name)s athraithe go rathúil" -msgstr[2] "%(count)s %(name)s athraithe go rathúil" -msgstr[3] "%(count)s %(name)s athraithe go rathúil" -msgstr[4] "%(count)s %(name)s athraithe go rathúil" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s roghnaithe" -msgstr[1] "Gach %(total_count)s roghnaithe" -msgstr[2] "Gach %(total_count)s roghnaithe" -msgstr[3] "Gach %(total_count)s roghnaithe" -msgstr[4] "Gach %(total_count)s roghnaithe" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 as %(cnt)s roghnaithe." - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Bhí %(name)s \"%(obj)s\" scrioste go rathúil." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Athraigh stáir %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Logáil isteach" - -#: sites.py:375 -msgid "Site administration" -msgstr "Riaracháin an suíomh" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s riaracháin" - -#: widgets.py:75 -msgid "Date:" -msgstr "Dáta:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Am:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Cuardach" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Cuir le" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Ní bhfuarthas an leathanach" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Tá brón orainn, ach ní bhfuarthas an leathanach iarraite." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Baile" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Botún freastalaí" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Botún freastalaí (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Botún Freastalaí (500)" - -#: 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 "" -"Bhí botún. Seolah é go dtí riarthóirí an suíomh agus beidh sé ceartaithe i " -"gceann tamallín. Go raibh maith agat le hadhaigh do foighne." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Rith an gníomh roghnaithe" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Té" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" -"Cliceáil anseo chun na hobiacht go léir a roghnú ar fud gach leathanach" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Roghnaigh gach %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Scroiseadh modhnóir" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Fáilte" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Doiciméadúchán" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Athraigh focal faire" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Logáil amach" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Riarthóir suíomh Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Riarachán Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Cuir le" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Stair" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Breath ar suíomh" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Ceartaigh an botún thíos le do thoil" -msgstr[1] "Ceartaigh na botúin thíos le do thoil" -msgstr[2] "Ceartaigh na botúin thíos le do thoil" -msgstr[3] "Ceartaigh na botúin thíos le do thoil" -msgstr[4] "Ceartaigh na botúin thíos le do thoil" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Cuir %(name)s le" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Scagaire" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Cealaigh" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Má scriossan tú %(object_name)s '%(escaped_object)s' scriosfaidh oibiachtí " -"gaolta. Ach níl cead ag do cuntas na oibiacht a leanúint a scriosadh:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Bheadh Scriosadh an %(object_name)s '%(escaped_object)s' a cheangal ar an " -"méid seo a leanas a scriosadh nithe cosanta a bhaineann le:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"An bhfuil tú cinnte na %(object_name)s \"%(escaped_object)s\" a scroiseadh?" -"Beidh gach oibiacht a leanúint scroiste freisin:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Táim cinnte" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Scrios na réadanna" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Scriosadh an roghnaithe %(objects_name)s a bheadh mar thoradh ar na nithe " -"gaolmhara a scriosadh, ach níl cead do chuntas a scriosadh na cineálacha seo " -"a leanas na cuspóirí:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Teastaíonn scriosadh na %(objects_name)s roghnaithe scriosadh na hoibiacht " -"gaolta cosainte a leanúint:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"An bhfuil tú cinnte gur mian leat a scriosadh %(objects_name)s roghnaithe? " -"Beidh gach ceann de na nithe seo a leanas agus a n-ítimí gaolta scroiste:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Trí %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Samhla ar fáil ins an feidhmchlár %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Athraigh" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Níl cead agat aon rud a cuir in eagar." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Aicsean úrnua" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mo Aicseain" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Dada ar fáil" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Inneachair anaithnid" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Tá rud éigin mícheart le suitéail do bunachar sonraí. Déan cinnte go bhfuil " -"boird an bunachar sonraI cruthaithe cheana, agus déan cinnte go bhfuil do " -"úsaideoir in ann an bunacchar sonraí a léamh." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Ainm úsaideor:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Focal faire:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Dáta/am" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Úsaideoir" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Aicsean" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Níl stáir aitraithe ag an oibiacht seo agús is dócha ná cuir le tríd an an " -"suíomh riarachán." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Taispéan gach rud" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Sábháil" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Cuardach" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s toradh" -msgstr[1] "%(counter)s torthaí" -msgstr[2] "%(counter)s torthaí" -msgstr[3] "%(counter)s torthaí" -msgstr[4] "%(counter)s torthaí" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s iomlán" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Sabháil mar nua" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Sabháil agus cuir le ceann eile" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Sábhail agus lean ag cuir in eagar" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Ar dtús, iontráil ainm úsaideoir agus focal faire. Ansin, beidh tú in ann " -"cuir in eagar níos mó roghaí úsaideoira." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Cuir isteach ainm úsáideora agus focal faire." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Iontráil focal faire nua le hadhaigh an úsaideor %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Focal faire" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Focal faire (arís)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Iontráíl an focal faire céanna mar thuas, le fíorúchán." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Cuir eile %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Tóg amach" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Cealaigh?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Go raibh maith agat le hadhaigh do cuairt ar an suíomh idirlínn inniú." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Logáil isteacj arís" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Athrú focal faire" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Athrú an focal faire rathúil" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Bhí do focal faire aithraithe." - -#: templates/registration/password_change_form.html:22 -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 "" -"Le do thoil, iontráil do sean-focal faire, ar son slándáil, agus ansin " -"iontráil do focal faire dhá uaire cé go mbeimid in ann a seiceal go bhfuil " -"sé scríobhte isteach i gceart." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Sean-focal faire " - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Focal faire nua" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Athraigh mo focal faire" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Athsocraigh focal faire" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Athshocraigh an focal faire críochnaithe" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Tá do focal faire réidh. Is féidir leat logáil isteach anois." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Deimhniú athshocraigh focal faire" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Cuir isteach focal faire nua" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Le do thoil, iontráil do focal faire dhá uaire cé go mbeimid in ann a " -"seiceal go bhfuil sé scríobhte isteach i gceart." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Focal faire nua:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Deimhnigh focal faire:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Athshocraigh focal faire mí-rathúil" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Bhí nasc athshocraigh an focal faire mícheart, b'fheidir mar go raibh sé " -"úsaidte cheana. Le do thoil, iarr ar athsocraigh focal faire nua." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Athshocraigh focal faire mí-rathúil" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Seolamar teagasca chugat le hadhaigh do r-phost a úsaid mar to focal faire. " -"Gheobaidh tú an r-phost i gceann tamallín." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Tá tú ag fáil an r-phost seo mar iarr tú ar do phasfhocal a athshocrú le " -"hadhaigh do chuntas úsáideora ag %(site_name)s ." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" -"Le do thoil té go dtí an leathanach a leanúint agus roghmaigh focal faire " -"nua:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Do ainm úsaideoir, má tá dearmad déanta agat." - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Go raibh maith agat le hadhaigh do cuairt!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Foireann an %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Dearmad déanta ar do focal faire? Iontráil do r-phost thíos agus seolfaimid " -"teagasca chun ceann nua a fháil." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "R-phost:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Athsocraigh mo focal faire" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Gach dáta" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Dada)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Roghnaigh %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Roghnaigh %s a athrú" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo deleted file mode 100644 index aed2e414c..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po deleted file mode 100644 index c0f9d09fb..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ga/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,157 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-08 17:05+0000\n" -"Last-Translator: mick \n" -"Language-Team: Irish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ga\n" -"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " -"4)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s ar fáil" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Scagaire" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Roghnaigh iomlán" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Cuir le" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Bain amach" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Roghnófar %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Roghnaigh do rogha agus cniog" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Glan iomlán" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s de %(cnt)s roghnaithe" -msgstr[1] "%(sel)s de %(cnt)s roghnaithe" -msgstr[2] "%(sel)s de %(cnt)s roghnaithe" -msgstr[3] "%(sel)s de %(cnt)s roghnaithe" -msgstr[4] "%(sel)s de %(cnt)s roghnaithe" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Tá aithrithe nach bhfuil sabhailte ar chuid do na réimse. Má ritheann tú " -"gníomh, caillfidh tú do chuid aithrithe." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Tá gníomh roghnaithe agat, ach níl do aithrithe sabhailte ar cuid de na " -"réímse. Clic OK chun iad a sábháil. Caithfidh tú an gníomh a rith arís." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Tá gníomh roghnaithe agat, ach níl do aithrithe sabhailte ar cuid de na " -"réímse. Is dócha go bhfuil tú ag iarraidh an cnaipe Té ná an cnaipe Sábháil." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Eanair Feabhra Márta Aibreán Bealtaine Meitheamh Iúil Lúnasa Mean Fómhair " -"Deireadh Fómhair Nollaig" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D L M C D A S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Taispeán" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Folaigh" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Domhnaigh Luain Máirt Céadaoin Déardaoin Aoine Sathairn" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Anois" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Clog" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Roghnaigh am" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Meán oíche" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Nóin" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Cealaigh" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Inniu" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Féilire" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Inné" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Amárach" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo deleted file mode 100644 index e5c97dd70..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.po deleted file mode 100644 index 09c13df7e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/django.po +++ /dev/null @@ -1,814 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-08 18:29+0000\n" -"Last-Translator: fonso \n" -"Language-Team: Galician \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Borrado exitosamente %(count)d %(items)s" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Non se pode eliminar %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "¿Está seguro?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Borrar %(verbose_name_plural)s seleccionados." - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                      By %s:

                                                                                      \n" -"
                                                                                        \n" -msgstr "" -"

                                                                                        Por %s:

                                                                                        \n" -"
                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Todo" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Si" - -#: filterspecs.py:139 -msgid "No" -msgstr "Non" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Descoñecido" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Calquera data" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Hoxe" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Últimos 7 días" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Este mes" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Este ano" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Insira un nome de usuario e un contrasinal correctos. Teña en conta que nos " -"dous campos se distingue entre maiúsculas e minúsculas." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Por favor ingrese de novo, a súa sesión expirou." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"O seu enderezo de correo electrónico non é o seu nome de usuario. Probe con " -"'%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Acción:" - -#: models.py:19 -msgid "action time" -msgstr "hora da acción" - -#: models.py:22 -msgid "object id" -msgstr "id do obxecto" - -#: models.py:23 -msgid "object repr" -msgstr "repr do obxecto" - -#: models.py:24 -msgid "action flag" -msgstr "código do tipo de acción" - -#: models.py:25 -msgid "change message" -msgstr "cambiar mensaxe" - -#: models.py:28 -msgid "log entry" -msgstr "entrada de rexistro" - -#: models.py:29 -msgid "log entries" -msgstr "entradas de rexistro" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ningún" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Modificado(s) %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "e" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Engadido %(name)s \"%(object)s\"" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Modificáronse %(list)s en %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Elimináronse %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Non se modificou ningún campo." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Engadiuse correctamente o/a %(name)s \"%(obj)s\"." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Pode editalo embaixo." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Pode engadir outro/a %s embaixo." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Modificouse correctamente o/a %(name)s \"%(obj)s\"." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "Engadiuse correctamente o/a %(name)s \"%(obj)s\" Pode editalo embaixo." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Deb seleccionar ítems para poder facer accións con eles. Ningún ítem foi " -"cambiado." - -#: options.py:846 -msgid "No action selected." -msgstr "Non se elixiu ningunha acción." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Engadir %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "O obxecto %(name)s con primary key %(key)r non existe." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Modificar %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Erro da base de datos" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s foi cambiado satisfactoriamente." -msgstr[1] "%(count)s %(name)s foron cambiados satisfactoriamente." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s seleccionado." -msgstr[1] "Tódolos %(total_count)s seleccionados." - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 de %(cnt)s seleccionados." - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Eliminouse correctamente o/a %(name)s \"%(obj)s\"." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Histórico de cambios: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Iniciar sesión" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administración do sitio web" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s administración" - -#: widgets.py:75 -msgid "Date:" -msgstr "Data:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Hora" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Procurar" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Engadir outro" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Páxina non atopada" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Sentímolo, pero non se atopou a páxina solicitada." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Inicio" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Erro no servidor" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Erro no servidor (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Erro do servidor (500)" - -#: 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 "" -"Houbo un erro. Xa se informou aos administradores do sitio por correo " -"electrónico e debería quedar arranxado pronto. Grazas pola súa paciencia." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Executar a acción seleccionada" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Ir" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Fai clic aquí para seleccionar os obxectos en tódalas páxinas" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Seleccionar todos os %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Limpar selección" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Benvido," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentación" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Cambiar contrasinal" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Rematar sesión" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Administración de sitio Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administración de Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Engadir" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Histórico" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Ver na web" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Por favor, corrixa o erro de embaixo." -msgstr[1] "Por favor, corrixa os erros de embaixo." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Engadir %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtro" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Eliminar" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Borrar o %(object_name)s '%(escaped_object)s' resultaría na eliminación de " -"elementos relacionados, pero a súa conta non ten permiso para borrar os " -"seguintes tipos de elementos:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Para borrar o obxecto %(object_name)s '%(escaped_object)s' requiriríase " -"borrar os seguintes obxectos protexidos relacionados:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Seguro que quere borrar o %(object_name)s \"%(escaped_object)s\"? " -"Eliminaranse os seguintes obxectos relacionados:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Si, estou seguro" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Eliminar múltiples obxectos" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Borrar os obxectos %(objects_name)s seleccionados resultaría na eliminación " -"de obxectos relacionados, pero a súa conta non ten permiso para borrar os " -"seguintes tipos de obxecto:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Para borrar os obxectos %(objects_name)s relacionados requiriríase eliminar " -"os seguintes obxectos protexidos relacionados:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Está seguro de que quere borrar os obxectos %(objects_name)s seleccionados? " -"Serán eliminados todos os seguintes obxectos e elementos relacionados on " -"eles:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Por %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modelos dispoñíbeis na aplicación %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Modificar" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Non ten permiso para editar nada." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Accións recentes" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "As miñas accións" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ningunha dispoñíbel" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Contenido descoñecido" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Hai un problema coa súa instalación de base de datos. Asegúrese de que se " -"creasen as táboas axeitadas na base de datos, e de que o usuario apropiado " -"teña permisos para lela." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Usuario:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Contrasinal:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Data/hora" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Usuario" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Acción" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Este obxecto non ten histórico de cambios. Posibelmente non se creou usando " -"este sitio de administración." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Amosar todo" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Gardar" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Busca" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultado. " -msgstr[1] "%(counter)s resultados." - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s en total" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Gardar coma novo" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Gardar e engadir outro" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Gardar e seguir editando" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Primeiro insira un nome de usuario e un contrasinal. Despois poderá editar " -"máis opcións de usuario." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Introduza un nome de usuario e contrasinal." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Insira un novo contrasinal para o usuario %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Contrasinal" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Contrasinal (outra vez)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Insira o mesmo contrasinal ca enriba para verificalo." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Engadir outro %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Eliminar" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "¿Eliminar?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Grazas polo tempo que dedicou ao sitio web." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Entrar de novo" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Cambiar o contrasinal" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "O seu contrasinal cambiouse correctamente." - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Cambiouse o seu contrasinal." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Por razóns de seguridade, introduza o contrasinal actual. Despois introduza " -"dúas veces o contrasinal para verificarmos que o escribiu correctamente." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Contrasinal antigo" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Contrasinal novo" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Cambiar o contrasinal" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Recuperar o contrasinal" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Reseteo do contrasinal completo" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" -"A túa clave foi gardada.\n" -"Xa podes entrar." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Confirmación de reseteo da contrasinal" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Insira o novo contrasinal" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Por favor insira a súa contrasinal dúas veces para que podamos verificar se " -"a escribiu correctamente." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Contrasinal novo:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Confirmar contrasinal:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Reseteo da contrasinal non satisfactorio." - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"A ligazón de reseteo da contrasinal non é válida, posiblemente porque xa foi " -"usada. Por favor pida un novo reseteo da contrasinal." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "O contrasinal foi recuperado correctamente" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Enviámoslle un correo electrónico con instrucións para configurar a súa " -"contrasinal á dirección que nos dixo. Debería recibilo en breves." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Recibe esta mensaxe porque solicitou restablecer o contrasinal da súa conta " -"de usuario en %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Por favor vaia á seguinte páxina e elixa una nova contrasinal:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "No caso de que o esquecese, o seu nome de usuario é:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Grazas por usar o noso sitio web!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "O equipo de %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"¿Olvidou a súa contrasinal? Insira a súa dirección de correo embaixo, e nos " -"enviarémoslle instrucións para crear una nova." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Enderezo de correo electrónico:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Recuperar o meu contrasinal" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Todas as datas" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ningún)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Seleccione un/ha %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Seleccione %s que modificar" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo deleted file mode 100644 index a1edf0d34..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po deleted file mode 100644 index 7d00bb6d7..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/gl/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-08 18:31+0000\n" -"Last-Translator: fonso \n" -"Language-Team: Galician \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s dispoñíbeis" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtro" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Escoller todo" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Engadir" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Quitar" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s escollido/a(s)" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Seleccione unha ou varias entrada e faga clic " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Quitar todo" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s de %(cnt)s escollido" -msgstr[1] "%(sel)s de %(cnt)s escollidos" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Tes cambios sen guardar en campos editables individuales. Se executas unha " -"acción, os cambios non gardados perderanse." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Escolleu unha acción, pero aínda non gardou os cambios nos campos " -"individuais. Prema OK para gardar. Despois terá que volver executar a acción." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Escolleu unha acción, pero aínda non gardou os cambios nos campos " -"individuais. Probabelmente estea buscando o botón Ir no canto do botón " -"Gardar." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"xaneiro febreiro marzo abril maio xuño xullo agosto setembro outubro " -"novembro decembro" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D L M M X V S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Amosar" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Esconder" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "domingo luns martes mércores xoves venres sábado" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Agora" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Reloxo" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Escolla unha hora" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Medianoite" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 da mañá" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Mediodía" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Cancelar" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Hoxe" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendario" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Onte" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Mañá" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.mo deleted file mode 100644 index d571c9029..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.po deleted file mode 100644 index d1440473d..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/django.po +++ /dev/null @@ -1,797 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-19 10:25+0000\n" -"Last-Translator: mksoft \n" -"Language-Team: Hebrew <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s נמחקו בהצלחה." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "×œ× × ×™×ª×Ÿ למחוק %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "×”×× ×ת/×” בטוח/×” ?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "מחק %(verbose_name_plural)s שנבחרו" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                          By %s:

                                                                                          \n" -"
                                                                                            \n" -msgstr "" -"

                                                                                            ×¢\"×™ %s:

                                                                                            \n" -"
                                                                                              \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "הכל" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "כן" - -#: filterspecs.py:139 -msgid "No" -msgstr "ל×" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "×œ× ×™×“×•×¢" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "כל ת×ריך" - -#: filterspecs.py:197 -msgid "Today" -msgstr "היו×" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "בשבוע ×”×חרון" - -#: filterspecs.py:203 -msgid "This month" -msgstr "החודש" - -#: filterspecs.py:205 -msgid "This year" -msgstr "השנה" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"× × ×œ×”×–×™×Ÿ ×©× ×ž×©×ª×ž×© וסיסמה נכוני×. בשני השדות גודל ×”×ותיות ×”×נגליות משנה." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "עליך להתחבר שנית ×›×™ פג הזמן המוקצב לך." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "כתובת הדו×\"ל שלך ××™× ×” ×©× ×”×ž×©×ª×ž×© שלך. נסה/×™ '%s' במקו×." - -#: helpers.py:19 -msgid "Action:" -msgstr "פעולה" - -#: models.py:19 -msgid "action time" -msgstr "זמן פעולה" - -#: models.py:22 -msgid "object id" -msgstr "מזהה ×ובייקט" - -#: models.py:23 -msgid "object repr" -msgstr "ייצוג ×ובייקט" - -#: models.py:24 -msgid "action flag" -msgstr "דגל פעולה" - -#: models.py:25 -msgid "change message" -msgstr "הערה לשינוי" - -#: models.py:28 -msgid "log entry" -msgstr "×¨×™×©×•× ×™×•×ž×Ÿ" - -#: models.py:29 -msgid "log entries" -msgstr "רישומי יומן" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "לל×" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s שונה." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ו" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "התווסף %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "שונה %(list)s עבור %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "נמחק %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "××£ שדה ×œ× ×”×©×ª× ×”." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "הוספת %(name)s \"%(obj)s\" בוצעה בהצלחה." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "ניתן לערוך שוב מתחת" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "ניתן להוסיף %s נוסף מתחת." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "שינוי %(name)s \"%(obj)s\" בוצע בהצלחה." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "הוספת %(name)s \"%(obj)s\" בוצעה בהצלחה. ניתן לערוך ×ותו שוב מתחת." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "יש לסמן ×¤×¨×™×˜×™× ×›×“×™ לבצע ×¢×œ×™×”× ×¤×¢×•×œ×•×ª. ×œ× ×©×•× ×• פריטי×." - -#: options.py:846 -msgid "No action selected." -msgstr "×œ× × ×‘×—×¨×” פעולה." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "הוספת %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "הפריט %(name)s ×¢× ×”×ž×¤×ª×— הר×שי %(key)r ×ינו קיי×." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "שינוי %s" - -#: options.py:1065 -msgid "Database error" -msgstr "שגי×ת בסיס נתוני×" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "שינוי %(count)s %(name)s בהצלחה." -msgstr[1] "שינוי %(count)s %(name)s בהצלחה." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s נבחר" -msgstr[1] "כל ×”Ö¾%(total_count)s נבחרו" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 מ %(cnt)s נבחרות" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "מחיקת %(name)s \"%(obj)s\" בוצעה בהצלחה." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "היסטוריית שינוי: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "כניסה" - -#: sites.py:375 -msgid "Site administration" -msgstr "ניהול ×תר" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "ניהול %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "ת×ריך:" - -#: widgets.py:75 -msgid "Time:" -msgstr "שעה:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "חפש" - -#: widgets.py:246 -msgid "Add Another" -msgstr "הוסף עוד ×חת" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "דף ×œ× ×§×™×™×" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "×נו מצטערי×, ×œ× × ×™×ª×Ÿ ×œ×ž×¦×•× ×ת הדף המבוקש." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "דף הבית" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "שגי×ת שרת" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "שגי×ת שרת (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "שגי×ת שרת (500)" - -#: 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 "" -"התרחשה שגי××”. ×”×™× ×“×•×•×—×” למנהלי ×”×תר בדו×\"ל ותתוקן בקרוב. תודה על סבלנותך." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "הפעל ×ת הפעולה שבחרת בה." - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "בצע" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "לחיצה ×›×ן תבחר ×ת ×”××•×‘×™×™×§×˜×™× ×‘×›×œ העמודי×" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "בחירת כל %(total_count)s ×”Ö¾%(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "×יפוס בחירה" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "שלו×," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "תיעוד" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "שינוי סיסמה" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "יצי××”" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "ניהול ×תר Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "ניהול Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "הוספה" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "היסטוריה" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "צפיה ב×תר" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "× × ×œ×ª×§×Ÿ ×ת השגי××” המופיעה מתחת." -msgstr[1] "× × ×œ×ª×§×Ÿ ×ת השגי×ות המופיעות מתחת." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "הוספת %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "סינון" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "מחיקה" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"מחיקת %(object_name)s '%(escaped_object)s' מצריכה מחיקת ××•×‘×™×™×§×˜×™× ×ž×§×•×©×¨×™×, " -"×ך לחשבון שלך ×ין הרש×ות למחיקת סוגי ×”××•×‘×™×™×§×˜×™× ×”×‘××™×:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"מחיקת ×”%(object_name)s '%(escaped_object)s' תדרוש מחיקת ×”××•×‘×™×™×§×˜×™× ×”×§×©×•×¨×™× " -"×•×”×ž×•×’× ×™× ×”×‘××™×:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"×”×× ×‘×¨×¦×•× ×š למחוק ×ת %(object_name)s \"%(escaped_object)s\"? כל ×”×¤×¨×™×˜×™× " -"×”×§×©×•×¨×™× ×”×‘××™× ×™×™×ž×—×§×•:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "כן, ×× ×™ בטוח/×”" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "מחק כמה פריטי×" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"מחיקת ב%(objects_name)s הנבחרת ×ª×‘×™× ×‘×ž×—×™×§×ª ××•×‘×™×™×§×˜×™× ×§×©×•×¨×™×, ×בל החשבון שלך " -"×ינו הרש××” למחוק ×ת ×”×¡×•×’×™× ×”×‘××™× ×©×œ ×ובייקטי×:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"מחיקת ×”%(objects_name)s ×שר סימנת תדרוש מחיקת ×”××•×‘×™×™×§×˜×™× ×”×§×©×•×¨×™× ×•×”×ž×•×’× ×™× " -"הב××™×:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"×”×× ×תה בטוח ש×תה רוצה למחוק ×ת ×”%(objects_name)s הנבחר? כל ×”××•×‘×™×™×§×˜×™× ×”×‘××™× " -"×•×¤×¨×™×˜×™× ×”×§×©×•×¨×™× ×œ×”× ×™×™×ž×—×§×•:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " לפי %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "×ž×•×“×œ×™× ×–×ž×™× ×™× ×‘×™×™×©×•× %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "שינוי" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "×ין לך הרש×ות לעריכה." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "פעולות ×חרונות" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "הפעולות שלי" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "×œ× × ×ž×¦×ו" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "תוכן ×œ× ×™×“×•×¢" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"משהו שגוי בהתקנת בסיס ×”× ×ª×•× ×™× ×©×œ×š. × × ×œ×•×•×“× ×©× ×•×¦×¨×• טבל×ות בסיס ×”× ×ª×•× ×™× " -"המת×ימות, ובסיס ×”× ×ª×•× ×™× × ×™×ª×Ÿ לקרי××” על ידי המשתמש המת××™×." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "×©× ×ž×©×ª×ž×©:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "סיסמה:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "ת×ריך/שעה" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "משתמש" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "פעולה" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"ל×ובייקט ×–×” ×ין היסטוריית שינוי. כנר××” ×œ× ×”×©×ª×ž×©×• בממשק הניהול ×”×–×” להוספתו." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "הצג הכל" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "שמירה" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "חיפוש" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "תוצ××” %(counter)s" -msgstr[1] "%(counter)s תוצ×ות" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s סה\"×›" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "שמירה כחדש" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "שמירה והוספת ×חר" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "שמירה והמשך עריכה" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"ר×שית יש להזין ×©× ×ž×©×ª×ž×© וסיסמה. ל×חר מכן ×™×”×™×” ביכולתך לערוך ×פשרויות נוספות " -"עבור המשתמש." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "× × ×œ×©×™× ×©× ×ž×©×ª×ž×© וסיסמה." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "יש להזין סיסמה חדשה עבור המשתמש %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "סיסמה" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "סיסמה (שוב)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "יש להזין ×ת ×ותה סיסמה שוב,ל×ימות." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "הוספת %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "להסיר" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "מחיקה ?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "תודה על בילוי זמן ×יכות ×¢× ×”×תר." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "התחבר/×™ שוב" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "שינוי סיסמה" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "הסיסמה שונתה בהצלחה" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "סיסמתך שונתה." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"× × ×œ×”×–×™×Ÿ ×ת סיסמתך הישנה, לצרכי ×בטחה, ול×חר מכן ×ת סיסמתך החדשה ×¤×¢×ž×™×™× ×›×“×™ " -"שנוכל ×œ×•×•×“× ×©×”×§×œ×“×ª ×ותה כר×וי." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "סיסמה ישנה" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "סיסמה חדשה" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "שנה ×ת סיסמתי" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "×יפוס סיסמה" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "×יפוס הסיסמה הושל×" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "ססמתך נשמרה. כעת ניתן להתחבר." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "×ימות ×יפוס סיסמה" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "הזנת סיסמה חדשה" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "× × ×œ×”×–×™×Ÿ ×ת סיסמתך החדשה ×¤×¢×ž×™×™× ×›×“×™ שנוכל ×œ×•×•×“× ×©×”×§×œ×“×ª ×ותה כר×וי." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "סיסמה חדשה:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "×ימות סיסמה:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "×יפוס הסיסמה נכשל" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"הקישור ל×יפוס הסיסמה ×ינו חוקי. ייתכן והשתמשו בו כבר. × × ×œ×‘×§×© ×יפוס סיסמה " -"חדש." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "הסיסמה ×ופסה בהצלחה" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"שלחנו הור×ות לקביעת הסיסמה ×ל כתובת הדו×\"ל שהזנת. ההודעה ×מורה להתקבל בקרוב." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"הודעה זו נשלחה ×ליך עקב בקשתך ל×יפוס הסיסמה עבור המשתמש שלך ב×תר %(site_name)" -"s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "× × ×œ×”×’×™×¢ לעמוד ×”×‘× ×•×œ×‘×—×•×¨ סיסמה חדשה:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "×©× ×”×ž×©×ª×ž×© שלך, במקרה ששכחת:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "תודה על השימוש ב×תר שלנו!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "צוות %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"שכחת ×ת סיסמתך ? × × ×œ×”×–×™×Ÿ ×ת כתובת הדו×\"ל מתחת, ו×נו נשלח הור×ות לקביעת " -"סיסמה חדשה." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "כתובת דו×\"ל:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "×פס ×ת סיסמתי" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "כל הת×ריכי×" - -#: views/main.py:27 -msgid "(None)" -msgstr "(×ין)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "בחירת %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "בחירת %s לשינוי" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 9118b6f08..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po deleted file mode 100644 index 046053555..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/he/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,152 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Hebrew <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s זמינות" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "בחירת הכל" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "הוספה" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "הסרה" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s נבחרות" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "יש לסמן ×ת ההרש×ות המבוקשות וללחוץ על " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "×יפוס הכל" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s מ %(cnt)s נבחרות" -msgstr[1] "%(sel)s מ %(cnt)s נבחרות" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"יש לך ×©×™× ×•×™×™× ×©×œ× × ×©×ž×¨×• על שדות יחידות. ×× ×תה מפעיל פעולה, ×©×™× ×•×™×™× ×©×œ× " -"נשמרו ×™×בדו." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"בחרת פעולה, ×בל עוד ×œ× ×©×ž×¨×ª ×ת ×”×©×™× ×•×™×™× ×œ×©×“×•×ª בודדי×. ×× × ×œ×—×¥ על ×ישור כדי " -"לשמור. ×™×”×™×” עליך להפעיל ×ת הפעולה עוד פע×." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"בחרת פעולה, ×•×œ× ×¢×©×™×ª×” שינויימ על שדות. ×תה כנר××” מחפש ×ת הכפתור ללכת ×‘×ž×§×•× " -"הכפתור לשמור." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"ינו×ר פברו×ר מרץ ×פריל מ××™ יוני יולי ×וגוסט ספטמבר ×וקטובר נובמבר דצמבר" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "× ×‘ ×’ ד ×” ו ש" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "הצג" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "הסתר" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ר×שון שני שלישי רביעי חמישי שישי שבת" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "כעת" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "שעון" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "בחירת שעה" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "חצות" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 בבוקר" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "12 בצהריי×" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "ביטול" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "היו×" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "לוח שנה" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "×תמול" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "מחר" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo deleted file mode 100644 index 979e1ff9e..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.po deleted file mode 100644 index 228f07fbd..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/django.po +++ /dev/null @@ -1,803 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-06 18:30+0000\n" -"Last-Translator: sandeepsatavlekar \n" -"Language-Team: Hindi \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s सफलतापूरà¥à¤µà¤• हट गयें |" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "%(name)s नहीं हटा सकते" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "कà¥à¤¯à¤¾ आप निशà¥à¤šà¤¿à¤¤ हैं?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "चà¥à¤¨à¥‡ हà¥à¤ %(verbose_name_plural)s हटा दीजिये " - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                              By %s:

                                                                                              \n" -"
                                                                                                \n" -msgstr "" -"

                                                                                                %s दà¥à¤µà¤¾à¤°à¤¾

                                                                                                \n" -"
                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "सभी" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "हाà¤" - -#: filterspecs.py:139 -msgid "No" -msgstr "नहीं" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "अनजान" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "कोई भी तारीख" - -#: filterspecs.py:197 -msgid "Today" -msgstr "आज" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "पिछले 7 दिन" - -#: filterspecs.py:203 -msgid "This month" -msgstr "इस महीने" - -#: filterspecs.py:205 -msgid "This year" -msgstr "इस साल" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"कृपया सही उपयोगकरà¥à¤¤à¤¾ नाम व कूटशबà¥à¤¦ पà¥à¤°à¤¦à¤¾à¤¨ कीजिये| इस बात का धà¥à¤¯à¤¾à¤¨ रखें की वे दोनों 'केस " -"सेंसिटिव' हैं |" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "कृपया फिर से पà¥à¤°à¤µà¥‡à¤¶ करें, कà¥à¤¯à¥‹à¤‚कि आपका सतà¥à¤° समापà¥à¤¤ हो गया है |" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"अपना ई मेल पता आपका उपयोगकरà¥à¤¤à¤¾ नाम नहीं है | कृपया '%s' का पà¥à¤°à¤¯à¥‹à¤— कर के देखिये |" - -#: helpers.py:19 -msgid "Action:" -msgstr " कà¥à¤°à¤¿à¤¯à¤¾:" - -#: models.py:19 -msgid "action time" -msgstr "कारà¥à¤¯ समय" - -#: models.py:22 -msgid "object id" -msgstr "वसà¥à¤¤à¥ आई डी " - -#: models.py:23 -msgid "object repr" -msgstr "वसà¥à¤¤à¥ पà¥à¤°à¤¤à¤¿à¤¨à¤¿à¤§à¤¿à¤¤à¥à¤µ" - -#: models.py:24 -msgid "action flag" -msgstr "कारà¥à¤¯ धà¥à¤µà¤œ" - -#: models.py:25 -msgid "change message" -msgstr "परिवरà¥à¤¤à¤¨ सनà¥à¤¦à¥‡à¤¶" - -#: models.py:28 -msgid "log entry" -msgstr "लॉग पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿" - -#: models.py:29 -msgid "log entries" -msgstr "लॉग पà¥à¤°à¤µà¤¿à¤·à¥à¤Ÿà¤¿à¤¯à¤¾à¤" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "कोई नहीं" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s को बदला गया हैं" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "और" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" को जोडा गया हैं" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" की %(list)s बदला गया है" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" निकाला गया है" - -#: options.py:645 -msgid "No fields changed." -msgstr "कोई कà¥à¤·à¥‡à¤¤à¥à¤° नहीं बदला" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" को कामयाबी से जोडा गया है" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "आप इसे फिर से संपादित कर सकते हैं" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "आप नीचे à¤à¤• और %s जोड सकते हैं" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" को कामयाबी से बदला गया हैं" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" कामयाबी से जोडा गया हैं । आप इसे फिर से संपादित कर सकते हैं" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "कारà¥à¤°à¤µà¤¾à¤ˆ हेतॠआयटम सही अनà¥à¤•à¥à¤°à¤® में चà¥à¤¨à¥‡ जाने चाहिठ| कोई आइटम नहीं बदले गये हैं." - -#: options.py:846 -msgid "No action selected." -msgstr "कोई कारà¥à¤°à¤µà¤¾à¤ˆ नहीं चà¥à¤¨à¥€ है |" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s बढाà¤à¤‚" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s नामक कोई वसà¥à¤¤à¥‚ जिस की पà¥à¤°à¤¾à¤¥à¤®à¤¿à¤• कà¥à¤‚जी %(key)r हो, असà¥à¤¤à¤¿à¤¤à¥à¤µ में नहीं हैं |" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s बदलो" - -#: options.py:1065 -msgid "Database error" -msgstr "डेटाबेस तà¥à¤°à¥à¤Ÿà¤¿" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s का परिवरà¥à¤¤à¤¨ कामयाब हà¥à¤† |" -msgstr[1] "%(count)s %(name)s का परिवरà¥à¤¤à¤¨ कामयाब हà¥à¤† |" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s चà¥à¤¨à¥‡" -msgstr[1] "सभी %(total_count)s चà¥à¤¨à¥‡ " - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "%(cnt)s में से 0 चà¥à¤¨à¥‡" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" को कामयाबी से निकाला गया है" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "इतिहास बदलो: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "लॉगिन" - -#: sites.py:375 -msgid "Site administration" -msgstr "साइट पà¥à¤°à¤¶à¤¾à¤¸à¤¨" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s पà¥à¤°à¤¶à¤¾à¤¸à¤¨" - -#: widgets.py:75 -msgid "Date:" -msgstr "तिथि:" - -#: widgets.py:75 -msgid "Time:" -msgstr "समय:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "लà¥à¤• अप" - -#: widgets.py:246 -msgid "Add Another" -msgstr "अनà¥à¤¯ बढाà¤à¤‚" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "पृषà¥à¤  लापता" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "कà¥à¤·à¤®à¤¾ कीजिठपर निवेदित पृषà¥à¤  लापता है ।" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "गृह" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "सरà¥à¤µà¤° तà¥à¤°à¥à¤Ÿà¤¿" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "सरà¥à¤µà¤° तà¥à¤°à¥à¤Ÿà¤¿ (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "सरà¥à¤µà¤° तà¥à¤°à¥à¤Ÿà¤¿ (500)" - -#: 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 "" -"à¤à¤• ग़लती हà¥à¤ˆ हैं | उसकी जानकारी साईट पà¥à¤°à¤¶à¤¾à¤¸à¤¨ को इ-मेल दà¥à¤µà¤¾à¤°à¤¾ दी गयी हैं और जलà¥à¤¦ ही उसे " -"संवारा जायेगा | आप के धैरà¥à¤¯ के लिठधनà¥à¤¯à¤µà¤¾à¤¦ |" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "चयनित कारà¥à¤°à¤µà¤¾à¤ˆ चलाइये" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "आगे बढ़े" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "सभी पृषà¥à¤ à¥‹à¤‚ पर मौजूद वसà¥à¤¤à¥à¤“ं को चà¥à¤¨à¤¨à¥‡ के लिठयहाठकà¥à¤²à¤¿à¤• करें " - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "तमाम %(total_count)s %(module_name)s चà¥à¤¨à¥‡à¤‚" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "चयन खालिज किया जाये " - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "आपका सà¥à¤µà¤¾à¤—त है," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "दसà¥à¤¤à¤¾à¤µà¥‡à¤œà¤¼à¥€à¤•à¤°à¤£" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "कूटशबà¥à¤¦ बदलें" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "लॉग आउट" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "जà¥à¤¯à¤¾à¤à¤—ो साइट पà¥à¤°à¤¶à¤¾à¤¸à¤¨" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "जà¥à¤¯à¤¾à¤à¤—ो पà¥à¤°à¤¶à¤¾à¤¸à¤¨" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "बढाà¤à¤‚" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "इतिहास" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "साइट पे देखें" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "कृपया नीचे पायी गयी गलती ठीक करें ।" -msgstr[1] "कृपया नीचे पायी गयी गलतियाठठीक करें ।" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s बढाà¤à¤‚" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "छनà¥à¤¨à¥€" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "मिटाà¤à¤" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s' को मिटाने पर समà¥à¤¬à¤‚धित वसà¥à¤¤à¥à¤à¤ भी मिटा दी " -"जाà¤à¤—ी, परनà¥à¤¤à¥ आप के खाते में निमà¥à¤¨à¤²à¤¿à¤–ित पà¥à¤°à¤•à¤¾à¤° की वसà¥à¤¤à¥à¤“ं को मिटाने की अनà¥à¤®à¤¤à¤¿ नहीं हैं |" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s' को हटाने के लिठउनसे संबंधित निमà¥à¤¨à¤²à¤¿à¤–ित " -"संरकà¥à¤·à¤¿à¤¤ वसà¥à¤¤à¥à¤“ं को हटाने की आवशà¥à¤¯à¤•à¤¤à¤¾ होगी:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"कà¥à¤¯à¤¾ आप %(object_name)s \"%(escaped_object)s\" हटाना चाहते हैं? निमà¥à¤¨à¤²à¤¿à¤–ित सभी " -"संबंधित वसà¥à¤¤à¥à¤à¤ नषà¥à¤Ÿ की जाà¤à¤—ी" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "हाà¤, मैंने पकà¥à¤•à¤¾ तय किया हैं " - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "अनेक वसà¥à¤¤à¥à¤à¤‚ हटाà¤à¤" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"चयनित %(objects_name)s हटाने पर उस से समà¥à¤¬à¤‚धित वसà¥à¤¤à¥à¤à¤‚ भी हट जाà¤à¤—ी, परनà¥à¤¤à¥ आपके खाते में " -"वसà¥à¤¤à¥à¤“ं के निमà¥à¤¨à¤²à¤¿à¤–ित पà¥à¤°à¤•à¤¾à¤° हटाने की अनà¥à¤®à¤¤à¤¿ नहीं है:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"चयनित %(objects_name)s को हटाने के पशà¥à¤šà¤¾à¤¤à¥ निमà¥à¤¨à¤²à¤¿à¤–ित संरकà¥à¤·à¤¿à¤¤ संबंधित वसà¥à¤¤à¥à¤“ं को हटाने " -"की आवशà¥à¤¯à¤•à¤¤à¤¾ होगी |" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"कà¥à¤¯à¤¾ आप ने पकà¥à¤•à¤¾ तय किया हैं की चयनित %(objects_name)s को नषà¥à¤Ÿ किया जाये ? " -"निमà¥à¤¨à¤²à¤¿à¤–ित सभी वसà¥à¤¤à¥à¤à¤‚ और उनसे समà¥à¤¬à¤‚धित वसà¥à¤¤à¥à¤ भी नषà¥à¤Ÿ की जाà¤à¤—ी:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "%(filter_title)s दà¥à¤µà¤¾à¤°à¤¾" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s के आवेदन में उपलबà¥à¤§ मॉडल |" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "बदलें" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "आपके पास कà¥à¤› भी संपादन करने के लिये अनà¥à¤®à¤¤à¤¿ नहीं है ।" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "हाल कà¥à¤°à¤¿à¤¯à¤¾à¤à¤" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "मेरे कारà¥à¤¯" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr " कोई भी उपलबà¥à¤§ नहीं" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "अजà¥à¤žà¤¾à¤¤ सामगà¥à¤°à¥€" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"अपने डेटाबेस सà¥à¤¥à¤¾à¤ªà¤¨à¤¾ के साथ कà¥à¤› गलत तो है | सà¥à¤¨à¤¿à¤¶à¥à¤šà¤¿à¤¤ करें कि उचित डेटाबेस तालिका बनायीं " -"गयी है, और सà¥à¤¨à¤¿à¤¶à¥à¤šà¤¿à¤¤ करें कि डेटाबेस उपयà¥à¤•à¥à¤¤ उपयोकà¥à¤¤à¤¾ के दà¥à¤µà¤¾à¤°à¤¾ पठनीय है |" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "पà¥à¤°à¤µà¥‹à¤•à¥à¤¤à¤¾ नाम" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "कूटशबà¥à¤¦" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "तिथि / समय" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "उपभोकà¥à¤¤à¤¾" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "कारà¥à¤¯" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"इस वसà¥à¤¤à¥ का बदलाव इतिहास नहीं है. शायद वह इस साइट वà¥à¤¯à¤µà¤¸à¥à¤¥à¤¾à¤ªà¤• के माधà¥à¤¯à¤® से नहीं जोड़ा " -"गया है." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "सभी दिखाà¤à¤" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "सà¥à¤°à¤•à¥à¤·à¤¿à¤¤ कीजिये" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "खोज" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s परिणाम" -msgstr[1] "%(counter)s परिणाम" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s कà¥à¤² परिणाम" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "नये सा सहेजें" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "सहेजें और à¤à¤• और जोडें" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "सहेजें और संपादन करें" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"पहले पà¥à¤°à¤¦à¤µà¥‹à¤•à¥à¤¤à¤¾ नाम और कूटशबà¥à¤¦ दरà¥à¤œ करें । उसके पशà¥à¤šà¤¾à¤¤ ही आप अधिक पà¥à¤°à¤µà¥‹à¤•à¥à¤¤à¤¾ विकलà¥à¤ª बदल " -"सकते हैं ।" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "उपयोगकरà¥à¤¤à¤¾ का नाम और कूटशबà¥à¤¦ दरà¥à¤œ करें." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "%(username)s पà¥à¤°à¤µà¥‹à¤•à¥à¤¤à¤¾ के लिठनयी कूटशबà¥à¤¦ दरà¥à¤œ करें ।" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "कूटशबà¥à¤¦" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "शबà¥à¤¦à¤•à¥‚ट (दà¥à¤¬à¤¾à¤°à¤¾)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "सतà¥à¤¯à¤¾à¤ªà¥à¤¤à¥€ के लिठऊपर दरà¥à¤œ किठकूटशबà¥à¤¦ को फिर से पà¥à¤°à¤µà¥‡à¤¶ करें" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "à¤à¤• और %(verbose_name)s जोड़ें " - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "निकालें" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "मिटाà¤à¤ ?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "आज हमारे वेब साइट पर आने के लिठधनà¥à¤¯à¤µà¤¾à¤¦ ।" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "फिर से लॉगिन कीजिà¤" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "कूटशबà¥à¤¦ बदलें" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "कूटशबà¥à¤¦ कदली कामयाब" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "आपके कूटशबà¥à¤¦ को बदला गया है" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"सà¥à¤°à¤•à¥à¤·à¤¾ कारणों के लिठकृपया पà¥à¤°à¤¾à¤¨à¤¾ कूटशबà¥à¤¦ दरà¥à¤œ करें । उसके पशà¥à¤šà¤¾à¤¤ नठकूटशबà¥à¤¦ को दो बार दरà¥à¤œ " -"करें ताकि हम उसे सतà¥à¤¯à¤¾à¤ªà¤¿à¤¤ कर सकें ।" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "पà¥à¤°à¤¾à¤¨à¤¾ कूटशबà¥à¤¦ " - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "नया कूटशबà¥à¤¦ " - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "कूटशबà¥à¤¦ बदलें" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "कूटशबà¥à¤¦ पà¥à¤¨à¤¸à¥à¤¥à¤¾à¤ª" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "कूटशबà¥à¤¦ पà¥à¤¨à¤¸à¥à¤¥à¤¾à¤ª कामयाब" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "आपके कूटशबà¥à¤¦ को सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ किया गया है । अब आप लॉगिन कर सकते है ।" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "कूटशबà¥à¤¦ पà¥à¤·à¥à¤Ÿà¤¿" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "नया कूटशबà¥à¤¦ दीजिà¤à¤‚" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "कृपया आपके नये कूटशबà¥à¤¦ को दो बार दरà¥à¤œ करें ताकि हम उसकी सतà¥à¤¯à¤¾à¤ªà¥à¤¤à¥€ कर सकते है ।" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "नया कूटशबà¥à¤¦ " - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "कूटशबà¥à¤¦ पà¥à¤·à¥à¤Ÿà¤¿ कीजिà¤" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "कूटशबà¥à¤¦ पà¥à¤¨à¤¸à¥à¤¥à¤¾à¤ª असफल" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"कूटशबà¥à¤¦ पà¥à¤¨à¤¸à¥à¤¥à¤¾à¤ª संपरà¥à¤• अमानà¥à¤¯ है, संभावना है कि उसे उपयोग किया गया है। कृपया फिर से कूटशबà¥à¤¦ " -"पà¥à¤¨à¤¸à¥à¤¥à¤¾à¤ª की आवेदन करें ।" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "कूटशबà¥à¤¦ पà¥à¤¨à¤¸à¥à¤¥à¤¾à¤ª सफल" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"हमने आपके ईमेल पता पर कूटशबà¥à¤¦ सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करने के निरà¥à¤¦à¥‡à¤¶ भेजे है । थोडी ही देर में आप उसे पà¥à¤°à¤¾à¤ªà¥à¤¤ " -"करेंगे ।" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"आप यह इ-मेल पा रहे हो कà¥à¤¯à¥‹à¤‚की आप ने %(site_name)s पर आप के उपयोग करà¥à¤¤à¤¾ खाते का कूटशबà¥à¤¦ " -"पà¥à¤¨à¤ƒà¤¸à¥à¤¥à¤¾à¤ªà¤¿à¤¤ करने का अनà¥à¤°à¥‹à¤§ किया था |" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "कृपया निमà¥à¤¨à¤²à¤¿à¤–ित पृषà¥à¤  पर नया कूटशबà¥à¤¦ चà¥à¤¨à¤¿à¤¯à¥‡ :" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "आपका पà¥à¤°à¤µà¥‹à¤•à¥à¤¤à¤¾ नाम, यदि भूल गये हों :" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "हमारे साइट को उपयोग करने के लिठधनà¥à¤¯à¤µà¤¾à¤¦ ।" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s दल" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"कà¥à¤¯à¤¾ आप कूटशबà¥à¤¦ भूल गये हैं? कृपया नीचे अपना ईमेल पता दरà¥à¤œ करें, हम नया कूटशबà¥à¤¦ सà¥à¤¥à¤¾à¤ªà¤¿à¤¤ करने " -"के निरà¥à¤¦à¥‡à¤¶ ईमेल के दà¥à¤µà¤¾à¤°à¤¾ भेजेंगे ।" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "ईमेल पता :" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr " मेरे कूटशबà¥à¤¦ की पà¥à¤¨à¤ƒà¤¸à¥à¤¥à¤¾à¤ªà¤¨à¤¾" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "सभी तिथियों" - -#: views/main.py:27 -msgid "(None)" -msgstr "(कोई नहीं)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s चà¥à¤¨à¥‡à¤‚" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "%s के बदली के लिठचयन करें" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 28d11edcf..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po deleted file mode 100644 index 888849307..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/hi/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,152 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-06 18:20+0000\n" -"Last-Translator: sandeepsatavlekar \n" -"Language-Team: Hindi \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "उपलबà¥à¤§ %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "छानना" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "सारे चà¥à¤¨à¥‡à¤‚" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "जोड़ना" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "हटाना" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s चà¥à¤¨à¤¾ गया हैं" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "आपके पसंद चà¥à¤¨à¤¿à¤¯à¥‡ और कà¥à¤²à¤¿à¤• करें" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "सारे हटाओ" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(cnt)s में से %(sel)s चà¥à¤¨à¤¾ गया हैं" -msgstr[1] "%(cnt)s में से %(sel)s चà¥à¤¨à¥‡ गठहैं" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"सà¥à¤µà¤¤à¤‚तà¥à¤° समà¥à¤ªà¤¾à¤¦à¤¨à¤•à¥à¤·à¤® कà¥à¤·à¥‡à¤¤à¥à¤°/सà¥à¤¤à¤®à¥à¤­ में किये हà¥à¤ बदल अभी रकà¥à¤·à¤¿à¤¤ नहीं हैं | अगर आप कà¥à¤› कारà¥à¤°à¤µà¤¾à¤ˆ " -"करते हो तो वे खो जायेंगे |" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"आप ने कारà¥à¤°à¤µà¤¾à¤ˆ तो चà¥à¤¨à¥€ हैं, पर सà¥à¤µà¤¤à¤‚तà¥à¤° समà¥à¤ªà¤¾à¤¦à¤¨à¤•à¥à¤·à¤® कà¥à¤·à¥‡à¤¤à¥à¤°/सà¥à¤¤à¤®à¥à¤­ में किये हà¥à¤ बदल अभी सà¥à¤°à¤•à¥à¤·à¤¿à¤¤ " -"नहीं किये हैं| उनà¥à¤¹à¥‡à¤‚ सà¥à¤°à¤•à¥à¤·à¤¿à¤¤ करने के लिठकृपया 'ओके' कà¥à¤²à¤¿à¤• करे | आप को चà¥à¤¨à¥€ हà¥à¤ˆ कारà¥à¤°à¤µà¤¾à¤ˆ " -"दोबारा चलानी होगी |" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"आप ने कारà¥à¤°à¤µà¤¾à¤ˆ चà¥à¤¨à¥€ हैं, और आप ने सà¥à¤µà¤¤à¤‚तà¥à¤° समà¥à¤ªà¤¾à¤¦à¤¨à¤•à¥à¤·à¤® कà¥à¤·à¥‡à¤¤à¥à¤°/सà¥à¤¤à¤®à¥à¤­ में बदल नहीं किये हैं| " -"संभवतः 'सेव' बटन के बजाय आप 'गो' बटन ढूनà¥à¤¢ रहे हो |" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "जनवरी फ़रवरी मारà¥à¤š अपà¥à¤°à¥ˆà¤² मई जून जà¥à¤²à¤¾à¤ˆ अगसà¥à¤¤ सेपà¥à¤Ÿà¤®à¥à¤¬à¤° अकà¥à¤Ÿà¥‚बर नवंबर दिसमà¥â€à¤¬à¤°" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "आ सो म बॠगॠशॠश" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "दिखाओ" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr " छिपाओ" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "रविवार सोमवार मंगलवार बà¥à¤§à¤µà¤¾à¤° गà¥à¤°à¥‚वार शà¥à¤•à¥à¤°à¤µà¤¾à¤° शनिवार" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "अब" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "घड़ी" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "à¤à¤• समय चà¥à¤¨à¥‡à¤‚" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "मधà¥à¤¯à¤°à¤¾à¤¤à¥à¤°à¥€" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "सà¥à¤¬à¤¹ 6 बजे" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "दोपहर" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "रदà¥à¤¦ करें" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "आज" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "तिथि-पतà¥à¤° " - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "कल (बीता)" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "कल" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo deleted file mode 100644 index 96b8744d3..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.po deleted file mode 100644 index f206d68e5..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/django.po +++ /dev/null @@ -1,811 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-13 21:15+0000\n" -"Last-Translator: aljosa \n" -"Language-Team: Croatian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "UspjeÅ¡no izbrisano %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Nije moguće izbrisati %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Jeste li sigurni?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "IzbriÅ¡ite odabrane %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                  By %s:

                                                                                                  \n" -"
                                                                                                    \n" -msgstr "" -"

                                                                                                    Po %s:

                                                                                                    \n" -"
                                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Svi" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Da" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ne" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Nepoznat pojam" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Bilo koji datum" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Danas" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "ProÅ¡lih 7 dana" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Ovaj mjesec" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Ova godina" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Molim unesite ispravno korisniÄko ime i lozinku. Uzmite u obzir da oba polja " -"razlikuju velika/mala slova." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Molim prijavite se ponovo jer je vaÅ¡ session istekao." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "VaÅ¡a e-mail adresa nije vaÅ¡e korisniÄko ime. PokuÅ¡ajte sa '%s'" - -#: helpers.py:19 -msgid "Action:" -msgstr "Akcija:" - -#: models.py:19 -msgid "action time" -msgstr "vrijeme akcije" - -#: models.py:22 -msgid "object id" -msgstr "id objekta" - -#: models.py:23 -msgid "object repr" -msgstr "repr objekta" - -#: models.py:24 -msgid "action flag" -msgstr "oznaka akcije" - -#: models.py:25 -msgid "change message" -msgstr "promijeni poruku" - -#: models.py:28 -msgid "log entry" -msgstr "zapis" - -#: models.py:29 -msgid "log entries" -msgstr "zapisi" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Nijedan" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Promijenjeno %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "i" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Dodano %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Promijeni %(list)s za %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Izbrisani %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Nije bilo promjena polja." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" uspjeÅ¡no je dodano." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Možete ponovo urediti unos dolje." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Možete dodati joÅ¡ jedan %s ispod." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" uspjeÅ¡no promijenjeno." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" uspjeÅ¡no dodan. Možete ponovo urediti unos dolje." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Unosi moraju biti odabrani da bi se nad njima mogle izvrÅ¡iti akcije. Nijedan " -"unos nije promijenjen." - -#: options.py:846 -msgid "No action selected." -msgstr "Nije odabrana akcija." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Novi unos (%s)" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Unos %(name)s sa primarnim kljuÄem %(key)r ne postoji." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Promijeni %s" - -#: options.py:1065 -msgid "Database error" -msgstr "PogreÅ¡ka u bazi" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s uspjeÅ¡no promijenjen." -msgstr[1] "%(count)s %(name)s uspjeÅ¡no promijenjeno." -msgstr[2] "%(count)s %(name)s uspjeÅ¡no promijenjeno." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s odabrano" -msgstr[1] "Svih %(total_count)s odabrano" -msgstr[2] "Svih %(total_count)s odabrano" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 od %(cnt)s odabrano" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" uspjeÅ¡no izbrisan." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Promijeni povijest: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Prijavi se" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administracija stranica" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s administracija" - -#: widgets.py:75 -msgid "Date:" -msgstr "Datum:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Vrijeme:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Potraži" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Unesi joÅ¡" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Stranica nije pronaÄ‘ena" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "IspriÄavamo se, ali tražena stranica nije pronaÄ‘ena." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "PoÄetna" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "GreÅ¡ka na serveru" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "GreÅ¡ka na serveru (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "GreÅ¡ka na serveru (500)" - -#: 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 "" -"Dogodila se greÅ¡ka. Administratori su obavijeÅ¡teni putem e-maila te bi " -"greÅ¡ka uskoro trebala biti ispravljena. Hvala na strpljenju." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "IzvrÅ¡i odabranu akciju" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Idi" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Klikni ovdje da bi odabrao unose kroz sve stranice" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Odaberi svih %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "OÄisti odabir" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "DobrodoÅ¡li," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentacija" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Promijeni lozinku" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Odjava" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django administracija stranica" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django administracija" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Novi unos" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Povijest" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Pogledaj na stranicama" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Molimo ispravite navedenu greÅ¡ku." -msgstr[1] "Molimo ispravite navedene greÅ¡ke." -msgstr[2] "Molimo ispravite navedene greÅ¡ke." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Novi unos - %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filter" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "IzbriÅ¡i" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Brisanje %(object_name)s '%(escaped_object)s' rezultiralo bi brisanjem " -"povezanih objekta, ali vi nemate privilegije za brisanje navedenih objekta: " - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Brisanje %(object_name)s '%(escaped_object)s' bi zahtijevalo i brisanje " -"sljedećih zaÅ¡tićenih povezanih objekata:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Jeste li sigurni da želite izbrisati %(object_name)s \"%(escaped_object)s\"? " -"Svi navedeni objekti biti će izbrisani:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Da, siguran sam" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "IzbriÅ¡i viÅ¡e unosa." - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Brisanje odabranog %(objects_name)s rezultiralo bi brisanjem povezanih " -"objekta, ali vaÅ¡ korisniÄki raÄun nema dozvolu za brisanje sljedeće vrste " -"objekata:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Brisanje odabranog %(objects_name)s će zahtijevati brisanje sljedećih " -"zaÅ¡tićenih povezanih objekata:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Jeste li sigurni da želite izbrisati odabrane %(objects_name)s ? Svi " -"sljedeći objekti i povezane stavke će biti izbrisani:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "Po %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modeli dostupni u %(name)s aplikaciji." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Promijeni" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Nemate privilegije za promjenu podataka." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Nedavne promjene" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Moje promjene" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Nije dostupno" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Sadržaj nepoznat" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"NeÅ¡to nije uredu sa instalacijom/postavkama baze. Provjerite jesu li " -"potrebne tablice u bazi kreirane i provjerite je li baza dostupna korisniku." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "KorisniÄko ime:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Lozinka:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Datum/vrijeme" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Korisnik" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Akcija" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Ovaj objekt nema povijest promjena. Moguće je da nije dodan koriÅ¡tenjem ove " -"administracije." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Prikaži sve" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Spremi" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Traži" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s rezultat" -msgstr[1] "%(counter)s rezultata" -msgstr[2] "%(counter)s rezultata" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s ukupno" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Spremi kao novi unos" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Spremi i unesi novi unos" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Spremi i nastavi ureÄ‘ivati" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Prvo, unesite korisniÄko ime i lozinku. Onda možete promijeniti viÅ¡e " -"postavki korisnika." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Unesite korisniÄko ime i lozinku." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Unesite novu lozinku za korisnika %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Lozinka" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Lozinka (unesi ponovo)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Unesite istu lozinku, za potvrdu." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Dodaj joÅ¡ jedan %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Ukloni" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "IzbriÅ¡i?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Hvala Å¡to ste proveli malo kvalitetnog vremena na stranicama danas." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Prijavite se ponovo" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Promjena lozinke" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Promjena lozinke uspjeÅ¡na" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "VaÅ¡a lozinka je promijenjena." - -#: templates/registration/password_change_form.html:22 -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 "" -"Molim unesite staru lozinku, zbog sigurnosti, i onda unesite novu lozinku " -"dvaput da bi mogli provjeriti jeste li je ispravno unijeli." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Stara lozinka" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nova lozinka" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Promijeni moju lozinku" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Resetiranje lozinke" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Resetiranje lozinke zavrÅ¡eno" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "VaÅ¡a lozinka je postavljena. Sada se možete prijaviti." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Potvrda promjene lozinke" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Unesite novu lozinku" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Molimo vas da unesete novu lozinku dvaput da bi mogli provjeriti jeste li je " -"ispravno unijeli." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nova lozinka:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Potvrdi lozinku:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Resetiranje lozinke neuspjeÅ¡no" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Link za resetiranje lozinke je neispravan, vjerojatno jer je već koriÅ¡ten. " -"Molimo zatražite novo resetiranje lozinke." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Resetiranje lozinke uspjeÅ¡no" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Poslali smo vam upute za postavljenje vaÅ¡e lozinke na e-mail adresu koju ste " -"unijeli. Trebali bi je uskoro primiti." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Dobili ste ovu e-mail poruku jer ste zatražili obnovu lozinke za vaÅ¡ " -"korisniÄki raÄun na %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Molimo otiÄ‘ite do sljedeće stranice i odaberite novu lozinku:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "VaÅ¡e korisniÄko ime, u sluÄaju da ste zaboravili:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Hvala Å¡ta koristite naÅ¡e stranice!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s tim" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Zaboravili ste lozinku? Unesite vaÅ¡u e-mail adresu ispod i poslati ćemo vam " -"upute kako postaviti novu." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mail adresa:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Resetiraj moju lozinku" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Svi datumi" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Nijedan)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Odaberi %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Odaberi za promjenu - %s" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 3df579b04..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po deleted file mode 100644 index 190bd1464..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/hr/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:04+0100\n" -"PO-Revision-Date: 2011-03-13 20:48+0000\n" -"Last-Translator: aljosa \n" -"Language-Team: Croatian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\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" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Dostupno %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filter" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Odaberi sve" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Dodaj" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Ukloni" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Odabrano %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Odaberi iz izbora i klikni " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "OÄisti sve" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "odabrano %(sel)s od %(cnt)s" -msgstr[1] "odabrano %(sel)s od %(cnt)s" -msgstr[2] "odabrano %(sel)s od %(cnt)s" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Neke promjene nisu spremljene na pojedinim polja za ureÄ‘ivanje. Ako " -"pokrenete akciju, nespremljene promjene će biti izgubljene." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Odabrali ste akciju, ali niste joÅ¡ spremili promjene na pojedinim polja. " -"Molimo kliknite OK za spremanje. Morat ćete ponovno pokrenuti akciju." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Odabrali ste akciju, a niste napravili nikakve izmjene na pojedinim poljima. " -"Vjerojatno tražite gumb Idi umjesto gumb Spremi." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"SijeÄanj VeljaÄa Ožujak Travanj Svibanj Lipanj Srpanj Kolovoz Rujan Listopad " -"Studeni Prosinac" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "N P U S ÄŒ P S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Prikaži" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Sakri" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Nedjelja Ponedjeljak Utorak Srijeda ÄŒetvrtak Petak Subota" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Sada" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Sat" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Izaberite vrijeme" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Ponoć" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 ujutro" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Podne" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Odustani" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Danas" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalendar" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "JuÄer" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Sutra" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo deleted file mode 100644 index ef3078c34..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.po deleted file mode 100644 index 3576089c2..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/django.po +++ /dev/null @@ -1,809 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-05 19:07+0000\n" -"Last-Translator: szilveszter \n" -"Language-Team: Hungarian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s sikeresen törölve lett." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "%(name)s törlése nem sikerült" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Biztos benne?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Kiválasztott %(verbose_name_plural)s törlése" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                      By %s:

                                                                                                      \n" -"
                                                                                                        \n" -msgstr "" -"

                                                                                                        Szerző: %s:

                                                                                                        \n" -"
                                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Mind" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Igen" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nem" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Ismeretlen" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Bármely dátum" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Ma" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Utolsó 7 nap" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Ez a hónap" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Ez az év" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Ãrjon be egy helyes felhasználónevet és jelszót. Mindkét mezÅ‘ kisbetű-" -"nagybetű érzékeny." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Jelentkezzen be újra, mert a munkamenete lejárt." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Az email címe nem a felhasználóneve. Próbálja inkább ezt: %s." - -#: helpers.py:19 -msgid "Action:" -msgstr "Művelet:" - -#: models.py:19 -msgid "action time" -msgstr "művelet idÅ‘pontja" - -#: models.py:22 -msgid "object id" -msgstr "objektum id" - -#: models.py:23 -msgid "object repr" -msgstr "objektum repr" - -#: models.py:24 -msgid "action flag" -msgstr "művelet jelölés" - -#: models.py:25 -msgid "change message" -msgstr "üzenet módosítása" - -#: models.py:28 -msgid "log entry" -msgstr "naplóbejegyzés" - -#: models.py:29 -msgid "log entries" -msgstr "naplóbejegyzések" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Egyik sem" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s módosítva." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "és" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "\"%(object)s\" %(name)s létrehozva." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "\"%(object)s\" %(name)s tulajdonságai (%(list)s) megváltoztak." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "\"%(object)s\" %(name)s törlésre került." - -#: options.py:645 -msgid "No fields changed." -msgstr "Egy mezÅ‘ sem változott." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "\"%(obj)s\" %(name)s sikeresen létrehozva." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Alább ismét szerkesztheti." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Alább hozzáadhat egy másikat ebbÅ‘l: %s." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "\"%(obj)s\" %(name)s sikeresen módosítva." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "\"%(obj)s\" %(name)s sikeresen létrehozva. Alább ismét szerkesztheted." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"A műveletek végrehajtásához ki kell választani legalább egy elemet. Semmi " -"sem lett módosítva." - -#: options.py:846 -msgid "No action selected." -msgstr "Nem választott ki műveletet." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Új %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s objektum %(key)r elsÅ‘dleges kulccsal nem létezik." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s módosítása" - -#: options.py:1065 -msgid "Database error" -msgstr "Adatbázis hiba" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s sikeresen módosítva lett." -msgstr[1] "%(count)s %(name)s sikeresen módosítva lett." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s kiválasztva" -msgstr[1] "%(total_count)s kiválasztva" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 kiválasztva ennyibÅ‘l: %(cnt)s" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "\"%(obj)s\" %(name)s sikeresen törölve." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Változások története: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Bejelentkezés" - -#: sites.py:375 -msgid "Site administration" -msgstr "Honlap karbantartás" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s adminisztráció" - -#: widgets.py:75 -msgid "Date:" -msgstr "Dátum:" - -#: widgets.py:75 -msgid "Time:" -msgstr "IdÅ‘:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Keresés" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Újabb hozzáadása" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Nincs ilyen oldal" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Sajnáljuk, de a kért oldal nem található." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "KezdÅ‘lap" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Szerverhiba" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Szerverhiba (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Szerverhiba (500)" - -#: 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 "" -"Hiba történt, melyet e-mailben jelentettünk az oldal karbantartójának. A " -"rendszer remélhetÅ‘en hamar megjavul. Köszönjük a türelmét." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Kiválasztott művelet futtatása" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Mehet" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Kattintson ide több oldalnyi objektum kiválasztásához" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Az összes %(module_name)s kiválasztása, összesen %(total_count)s db" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Kiválasztás törlése" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Ãœdvözlöm," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentáció" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Jelszó megváltoztatása" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Kijelentkezés" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django honlap adminisztráció" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django adminisztráció" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Új" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Történet" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Megtekintés a honlapon" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Kérem javítsa az alábbi hibát." -msgstr[1] "Kérlem javítsa az alábbi hibákat." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Új %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "SzűrÅ‘" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Törlés" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"'%(escaped_object)s' %(object_name)s törlése a kapcsolódó objektumok " -"törlését is eredményezi, de a hozzáférése nem engedi a következÅ‘ típusú " -"objektumok törlését:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"'%(escaped_object)s' %(object_name)s törlése az alábbi kapcsolódó objektumok " -"törlését is maga után vonja:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Biztos hogy törli a következÅ‘t: \"%(escaped_object)s\" (típus: %(object_name)" -"s)? A összes további kapcsolódó elem is törlÅ‘dik:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Igen, biztos vagyok benne" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Több elem törlése" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"A kiválasztott %(objects_name)s törlése kapcsolódó objektumok törlését vonja " -"maga után, de az alábbi objektumtípusok törléséhez nincs megfelelÅ‘ " -"jogosultsága:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"A kiválasztott %(objects_name)s törlése az alábbi védett kapcsolódó " -"objektumok törlését is maga után vonja:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Biztosan törölni akarja a kiválasztott %(objects_name)s objektumokat? Minden " -"alábbi objektum, és a hozzájuk kapcsolódóak is törlésre kerülnek:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s szerint " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s alkalmazásban elérhetÅ‘ modellek." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Módosítás" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Nincs joga szerkeszteni." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Utolsó műveletek" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Az én műveleteim" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Nincs elérhetÅ‘" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Ismeretlen tartalom" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Valami nem stimmel a telepített adatbázissal. Bizonyosodjon meg arról, hogy " -"a megfelelÅ‘ táblák létre lettek-e hozva, és hogy a megfelelÅ‘ felhasználó " -"tudja-e Å‘ket olvasni." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Felhasználó:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Jelszó:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Dátum/idÅ‘" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Felhasználó" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Művelet" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Az objektumnak nincs változási története. Valószínűleg nem ezen a " -"karbantartó oldalon lett rögzítve." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Mutassa mindet" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Mentés" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Keresés" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s találat" -msgstr[1] "%(counter)s találat" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s összesen" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Mentés újként" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Mentés és másik hozzáadása" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Mentés és a szerkesztés folytatása" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"ElÅ‘ször adjon meg egy felhasználói nevet és egy jelszót. Ezek után további " -"módosításokat is végezhet a felhasználó adatain." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Ãrjon be egy felhasználónevet és jelszót." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Adjon meg egy új jelszót a %(username)s nevű felhasználónak." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Jelszó" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Jelszó újra" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Ãrja be a fenti jelszót ellenÅ‘rzés céljából." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Újabb %(verbose_name)s hozzáadása" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Törlés" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Törli?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Köszönjük hogy egy kis idÅ‘t eltöltött ma a honlapunkon." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Jelentkezzen be újra" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Jelszó megváltoztatása" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Sikeres jelszóváltoztatás" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Megváltozott a jelszava." - -#: templates/registration/password_change_form.html:22 -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 "" -"Ãrja be a régi jelszavát biztonsági okokból, majd az újat kétszer, hogy " -"biztosan ne gépelje el." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Régi jelszó" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Új jelszó" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Jelszavam megváltoztatása" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Jelszó beállítása" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Jelszó beállítása kész" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Jelszava beállításra került. Most már bejelentkezhet." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Jelszó beállítás megerÅ‘sítése" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Ãrja be az új jelszavát" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Ãrja be az új jelszavát kétszer, hogy megbizonyosodhassunk annak " -"helyességérÅ‘l." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Új jelszó:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Jelszó megerÅ‘sítése:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Sikeres jelszó beállítás" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"A jelszó beállító link érvénytelen. Ennek egyik oka az lehet, hogy már " -"felhasználták. Kérem igényeljen új jelszó beállítást." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Sikeres jelszótörlés" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Az információkat elküldtük e-mailben a megadott címre. Hamarosan meg kell " -"érkeznie." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Azért kapja ezt az e-mailt, mert jelszavának visszaállítását kérte ezen a " -"weboldalon: %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Kérjük látogassa meg a következÅ‘ oldalt, és válasszon egy új jelszót:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Felhasználóneve, ha elfelejtette volna:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Köszönjük, hogy használta honlapunkat!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s csapat" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Elfelejtette a jelszavát? Ãrja be az e-mail címét, és küldünk egy levelet a " -"teendÅ‘krÅ‘l." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mail cím:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Jelszavam törlése" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Minden dátum" - -#: views/main.py:27 -msgid "(None)" -msgstr "(nincs)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Kiválasztás %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Válasszon ki egyet a módosításhoz (%s)" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo deleted file mode 100644 index bd20ea4ec..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po deleted file mode 100644 index 08ee4ce06..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/hu/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-05 15:29+0000\n" -"Last-Translator: szilveszter \n" -"Language-Team: Hungarian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "ElérhetÅ‘ %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "SzűrÅ‘" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Mindet kijelölni" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Hozzáadás" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Eltávolítás" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s kiválasztva" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Válassza ki a kért elemeket és kattintson" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Összes törlése" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s/%(cnt)s kijelölve" -msgstr[1] "%(sel)s/%(cnt)s kijelölve" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Még el nem mentett módosításai vannak egyes szerkeszthetÅ‘ mezÅ‘kön. Ha most " -"futtat egy műveletet, akkor a módosítások elvesznek." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Kiválasztott egy műveletet, de nem mentette az egyes mezÅ‘khöz kapcsolódó " -"módosításait. Kattintson az OK gombra a mentéshez. Újra kell futtatnia az " -"műveletet." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Kiválasztott egy műveletet, és nem módosított egyetlen mezÅ‘t sem. " -"FeltehetÅ‘en a Mehet gombot keresi a Mentés helyett." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"január február március április május június július augusztus szeptember " -"október november december" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "V H K Sz Cs P Szo" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Mutat" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Elrejt" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "vasárnap hétfÅ‘ kedd szerda csütörtök péntek szombat" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Most" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Óra" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Válassza ki az idÅ‘t" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Éjfél" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "Reggel 6 óra" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Dél" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Mégsem" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Ma" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Naptár" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Tegnap" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Holnap" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo deleted file mode 100644 index 74ca82287..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.po deleted file mode 100644 index 8ee0a8483..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/django.po +++ /dev/null @@ -1,805 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-07 10:10+0000\n" -"Last-Translator: rodin \n" -"Language-Team: Indonesian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Berhasil menghapus %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Tidak dapat menghapus %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Yakin?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Hapus %(verbose_name_plural)s yang dipilih" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                          By %s:

                                                                                                          \n" -"
                                                                                                            \n" -msgstr "" -"

                                                                                                            Oleh %s:

                                                                                                            \n" -"
                                                                                                              \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Semua" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ya" - -#: filterspecs.py:139 -msgid "No" -msgstr "Tidak" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Tidak diketahui" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Kapanpun" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Hari ini" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Tujuh hari terakhir" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Bulan ini" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Tahun ini" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Masukkan nama pengguna dan sandi yang benar. Huruf besar/kecil pada kedua " -"bidang berpengaruh." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Anda harus mengulangi proses masuk karena sesi Anda telah habis." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Nama akun Anda bukanlah alamat email. Cobalah dengan '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Aksi:" - -#: models.py:19 -msgid "action time" -msgstr "waktu aksi" - -#: models.py:22 -msgid "object id" -msgstr "id objek" - -#: models.py:23 -msgid "object repr" -msgstr "representasi objek" - -#: models.py:24 -msgid "action flag" -msgstr "jenis aksi" - -#: models.py:25 -msgid "change message" -msgstr "ganti pesan" - -#: models.py:28 -msgid "log entry" -msgstr "entri pencatatan" - -#: models.py:29 -msgid "log entries" -msgstr "entri pencatatan" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "None" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s diubah" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "dan" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" ditambahkan." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(list)s untuk %(name)s \"%(object)s\" diubah." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" dihapus." - -#: options.py:645 -msgid "No fields changed." -msgstr "Tidak ada bidang yang berubah." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" berhasil ditambahkan." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Anda boleh mengubahnya kembali di bawah." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Anda boleh menambahkan %s lagi di bawah." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" berhasil diubah." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" berhasil ditambahkan. Anda dapat mengeditnya lagi di " -"bawah ini." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Objek harus dipilih sebelum dimanipulasi. Tidak ada objek yang berubah." - -#: options.py:846 -msgid "No action selected." -msgstr "Tidak ada aksi yang dipilih." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Tambahkan %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Objek %(name)s dengan kunci utama %(key)r tidak ada." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Ubah %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Galat basis data" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s berhasil diubah." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s dipilih" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 dari %(cnt)s dipilih" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" berhasil dihapus." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Ubah riwayat: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Masuk" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administrasi situs" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administrasi %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Tanggal:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Waktu:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Cari" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Tambah Lagi" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Laman tidak ditemukan" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Maaf, laman yang Anda minta tidak ditemukan." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Beranda" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Galat server" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Galat server (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Galat Server (500)" - -#: 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 "" -"Ada galat yang terjadi dan telah dilaporkan kepada administrator situs " -"melalui email untuk perbaikan secepatnya. Terima kasih atas pengertian Anda." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Jalankan aksi terpilih" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Buka" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Klik di sini untuk memilih semua objek pada semua laman" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Pilih seluruh %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Bersihkan pilihan" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Selamat datang," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentasi" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Ganti sandi" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Keluar" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Admin situs Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administrasi Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Tambah" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Riwayat" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Lihat di situs" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Perbaiki galat di bawah ini." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Tambahkan %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filter" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Hapus" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Menghapus %(object_name)s '%(escaped_object)s' akan menghapus objek lain " -"yang terkait, tetapi akun Anda tidak memiliki izin untuk menghapus objek " -"dengan tipe berikut:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Menghapus %(object_name)s '%(escaped_object)s' memerlukan penghapusan objek " -"terlindungi yang terkait sebagai berikut:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Yakin ingin menghapus %(object_name)s \"%(escaped_object)s\"? Semua objek " -"lain yang terkait juga akan dihapus:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ya, tentu saja" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Hapus beberapa objek sekaligus" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Menghapus %(objects_name)s terpilih akan menghapus objek yang terkait, " -"tetapi akun Anda tidak memiliki izin untuk menghapus objek dengan tipe " -"berikut:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Menghapus %(objects_name)s terpilih memerlukan penghapusan objek terlindungi " -"yang terkait sebagai berikut:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Yakin akan menghapus %(objects_name)s terpilih? Semua objek berikut beserta " -"objek terkait juga akan dihapus:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Berdasarkan %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Model yang tersedia pada aplikasi %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Ubah" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Anda tidak memiliki izin untuk mengubah apapun." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Aktivitas Terbaru" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Aktivitas Saya" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Tidak ada yang tersedia" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Konten tidak diketahui" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Ada masalah dengan instalasi basis data Anda. Pastikan tabel yang sesuai " -"pada basis data telah dibuat dan dapat dibaca oleh pengguna yang benar." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Nama pengguna:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Sandi:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Tanggal/waktu" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Pengguna" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Aksi" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Objek ini tidak memiliki riwayat perubahan. Kemungkinan objek ini tidak " -"ditambahkan melalui situs administrasi ini." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Tampilkan semua" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Simpan" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Cari" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s buah" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s total" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Simpan sebagai baru" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Simpan dan tambahkan lagi" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Simpan dan terus mengedit" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Pertama-tama, masukkan nama pengguna dan sandi. Anda akan dapat mengubah " -"opsi pengguna lain setelah itu." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Masukkan nama pengguna dan sandi." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Masukkan sandi baru untuk pengguna %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Sandi" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Sandi (ulangi)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Masukkan sandi yang sama dengan di atas, untuk verifikasi." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Tambahkan %(verbose_name)s lagi" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Hapus" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Hapus?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Terima kasih telah menggunakan situs ini hari ini." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Masuk kembali" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Ubah sandi" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Sandi berhasil diubah" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Sandi Anda telah diubah." - -#: templates/registration/password_change_form.html:22 -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 "" -"Dengan alasan keamanan, masukkan sandi lama Anda dua kali untuk memastikan " -"Anda tidak salah mengetikkannya." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Sandi lama" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Sandi baru" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Ubah sandi saya" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Setel ulang sandi" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Sandi telah disetel ulang" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Sandi Anda telah diperbarui. Silakan masuk." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Konfirmasi penyetelan ulang sandi" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Masukkan sandi baru" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Masukkan sandi baru dua kali untuk memastikan Anda tidak salah " -"mengetikkannya." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Sandi baru:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Konfirmasi sandi:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Penyetelan ulang sandi gagal" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Tautan penyetelan ulang sandi tidak valid. Kemungkinan karena tautan " -"tersebut telah dipakai sebelumnya. Ajukan permintaan penyetelan sandi sekali " -"lagi." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Penyetelan ulang sandi berhasil" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Kami telah mengirimkan panduan untuk menyetel ulang sandi Anda melalui " -"alamat email yang Anda masukkan. Sesaat lagi Anda akan menerima emailnya." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Anda menerima email ini karena Anda meminta penyetelan ulang sandi akun " -"pengguna Anda di %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Kunjungi laman di bawah ini dan ketikkan sandi baru:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Nama pengguna Anda, jika lupa:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Terima kasih telah menggunakan situs kami!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Tim %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Lupa sandinya? Masukkan alamat email Anda di bawah ini dan kami akan " -"mengirimkan panduan untuk mendapatkan sandi baru." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Alamat email:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Setel ulang sandi saya" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Semua tanggal" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Tidak ada)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Pilih %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Pilih %s untuk diubah" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 74dbce936..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po deleted file mode 100644 index 2ec09fae7..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/id/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,153 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-14 09:13+0000\n" -"Last-Translator: rodin \n" -"Language-Team: Indonesian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s yang tersedia" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filter" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Pilih semua" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Tambah" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Hapus" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s terpilih" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Masukkan pilihan Anda lalu klik" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Hapus semua" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s dari %(cnt)s terpilih" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Beberapa perubahan bidang yang Anda lakukan belum tersimpan. Perubahan yang " -"telah dilakukan akan hilang." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Anda telah memilih sebuah aksi, tetapi belum menyimpan perubahan ke bidang " -"yang ada. Klik OK untuk menyimpan perubahan ini. Anda akan perlu mengulangi " -"aksi tersebut kembali." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Anda telah memilih sebuah aksi, tetapi belum mengubah bidang apapun. " -"Kemungkinan Anda mencari tombol Buka dan bukan tombol Simpan." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Januari Februari Maret April Mei Juni Juli Agustus September Oktober " -"November Desember" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "M S S R K J S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Bentangkan" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Ciutkan" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Minggu Senin Selasa Rabu Kamis Jumat Sabtu" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Sekarang" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Jam" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Pilih waktu" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Tengah malam" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 pagi" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Siang" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Batal" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Hari ini" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalender" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Kemarin" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Besok" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo deleted file mode 100644 index 0bd6dbc9b..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.po deleted file mode 100644 index 5239707b1..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/django.po +++ /dev/null @@ -1,808 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: haffi67 \n" -"Language-Team: Icelandic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Eyddi %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Get ekki eytt %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Ertu viss?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Eyða völdum %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                              By %s:

                                                                                                              \n" -"
                                                                                                                \n" -msgstr "" -"

                                                                                                                Höfundur: %s:

                                                                                                                \n" -"
                                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Allt" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Já" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nei" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Óþekkt" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Allar dagsetningar" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Dagurinn í dag" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Síðustu 7 dagar" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Þessi mánuður" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Þetta ár" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Vinsamlegast sláðu inn rétt notandanafn og lykilorð. Athugaðu að báðir " -"reitirnir þurfa að vera stafréttir." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Vinsamlegast skráðu þig inn aftur vegna þess að setan þín rann út. " - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Tölvupóstfangið þitt er ekki notandanafnið þitt. Prófaðu '%s' í staðinn." - -#: helpers.py:19 -msgid "Action:" -msgstr "Aðgerð:" - -#: models.py:19 -msgid "action time" -msgstr "tími aðgerðar" - -#: models.py:22 -msgid "object id" -msgstr "kenni hlutar" - -#: models.py:23 -msgid "object repr" -msgstr "framsetning hlutar" - -#: models.py:24 -msgid "action flag" -msgstr "aðgerðarveifa" - -#: models.py:25 -msgid "change message" -msgstr "breyta skilaboði" - -#: models.py:28 -msgid "log entry" -msgstr "kladdafærsla" - -#: models.py:29 -msgid "log entries" -msgstr "kladdafærslur" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ekkert" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Breytti %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "og" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Bætti við %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Breytti %(list)s fyrir %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Eyddi %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Engum reitum breytt." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s „%(obj)s“ var bætt við." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Þú getur breytt því aftur að neðan." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Þú getur bætt öðru %s við að neðan." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s „%(obj)s“ hefur verið breytt." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s „%(obj)s“ hefur verið bætt við. Þú getur breytt því aftur að neðan." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Hlutir verða að vera valdir til að framkvæma aðgerðir á þeim. Engu hefur " -"verið breytt." - -#: options.py:846 -msgid "No action selected." -msgstr "Engin aðgerð valin." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Bæta við %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s hlutur með lykilinn %(key)r er ekki til." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Breyta %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Gagnagrunnsvilla" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s var breytt." -msgstr[1] "%(count)s %(name)s var breytt." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "Allir %(total_count)s valdir" -msgstr[1] "Allir %(total_count)s valdir" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 af %(cnt)s valin" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s „%(obj)s“ var eytt." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Breytingarsaga: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Skrá inn" - -#: sites.py:375 -msgid "Site administration" -msgstr "Vefstjóri" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s vefstjórn" - -#: widgets.py:75 -msgid "Date:" -msgstr "Dagsetning:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Tími:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Fletta upp" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Bæta við öðru" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Síða fannst ekki" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Því miður fannst umbeðin síða ekki." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Heim" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Kerfisvilla" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Kerfisvilla (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Kerfisvilla (500)" - -#: 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 "" -"Villa hefur komið upp. Hún hefur verið tilkynnt vefstjórunum með tölvupósti " -"og verður örugglega löguð fljótlega. Við þökkum þolinmæðina." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Keyra valda aðgerð" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Ãfram" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Smelltu hér til að velja alla hluti" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Velja alla %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Hreinsa val" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Velkomin(n)," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Skjölun" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Breyta lykilorði" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Skrá út" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django vefstjóri" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django vefstjórn" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Bæta við" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Saga" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Skoða á vef" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Vinsamlegast leiðréttu villuna hér að neðan:" -msgstr[1] "Vinsamlegast leiðréttu villurnar hér að neðan:" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Bæta við %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Sía" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Eyða" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Eyðing á %(object_name)s „%(escaped_object)s“ hefði í för með sér eyðingu á " -"tengdum hlutum en þú hefur ekki réttindi til að eyða eftirfarandi hlutum:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Að eyða %(object_name)s ' %(escaped_object)s ' þyrfti að eyða eftirfarandi " -"tengdum hlutum:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Ertu viss um að þú viljir eyða %(object_name)s „%(escaped_object)s“? Öllu " -"eftirfarandi verður eytt:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Já ég er viss." - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Eyða mörgum hlutum." - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Að eyða völdu %(objects_name)s leiðir til þess að skyldum hlutum er eytt, en " -"þinn aðgangur hefur ekki réttindi til að eyða eftirtöldum hlutum:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Að eyða völdum %(objects_name)s myndi leiða til þess að eftirtöldum skyldum " -"hlutum yrði eytt:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Ertu viss um að þú viljir eyða völdum %(objects_name)s? Öllum eftirtöldum " -"hlutum og skyldum hlutum verður eytt:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Eftir %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Líkön sem eru hluti af %(name)s forritinu." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Breyta" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Þú hefur ekki réttindi til að breyta neinu" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Nýlegar aðgerðir" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mínar aðgerðir" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Engin fáanleg" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Óþekkt innihald" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Eitthvað er að gagnagrunnsuppsetningu. Gakktu úr skuggum um að allar töflur " -"séu til staðar og að notandinn hafi aðgang að grunninum." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Notandanafn:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Lykilorð:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Dagsetning/tími" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Notandi" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Aðgerð" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Þessi hlutur hefur enga breytingasögu. Hann var líklega ekki búinn til á " -"þessu stjórnunarsvæði." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Sýna allt" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Vista" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Leita" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s niðurstaða" -msgstr[1] "%(counter)s niðurstöður" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s í heildina" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Vista sem nýtt" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Vista og búa til nýtt" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Vista og halda áfram að breyta" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Fyrst, settu inn notendanafn og lykilorð. Svo geturðu breytt öðrum " -"notendamöguleikum." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Sláðu inn notandanafn og lykilorð." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Settu inn nýtt lykilorð fyrir notandann %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Lykilorð" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Lykilorð (aftur)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Settu inn sama lykilorðið aftur til staðfestingar." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Bæta við öðrum %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Fjarlægja" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Eyða?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Takk fyrir að verja tíma í vefsíðuna í dag." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Skráðu þig inn aftur" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Breyta lykilorði" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Breyting á lykilorði tókst" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Lykilorði þínu var breytt" - -#: templates/registration/password_change_form.html:22 -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 "" -"Vinsamlegast skrifaðu gamla lykilorðið þitt til öryggis. Sláðu svo nýja " -"lykilorðið tvisvar inn svo að hægt sé að ganga úr skugga um að þú hafir ekki " -"gert innsláttarvillu." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Gamalt lykilorð" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nýtt lykilorð" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Breyta lykilorðinu mínu" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Endurstilla lykilorð" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Endurstilling lykilorðs tókst" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Lykilorðið var endurstillt. Þú getur núna skráð þig inn á vefsvæðið." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Staðfesting endurstillingar lykilorðs" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Settu inn nýtt lykilorð" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Vinsamlegast settu inn nýja lykilorðið tvisvar til að forðast " -"innsláttarvillur." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nýtt lykilorð:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Staðfestu lykilorð:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Endurstilling á lykilorði mistókst" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Endurstilling lykilorðs tókst ekki. Slóðin var ógild. Hugsanlega hefur hún " -"nú þegar verið notuð. Vinsamlegast biddu um nýja endurstillingu." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Endurstilling á lykilorði tókst" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Við sendum þér leiðbeiningar fyrir endurstillingu lykilorðs. " -"Leiðbeiningarnar ættu að berast til þín í tölvupósti fljótlega." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Þessi tölvupóstur barst þér þar sem þú baðst um nýtt lykilorð fyrir aðgang " -"þinn að %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Vinsamlegast farðu á eftirfarandi síðu og veldu nýtt lykilorð:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Notandanafnið þitt ef þú skyldir hafa gleymt því:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Takk fyrir að nota vefinn okkar!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s hópurinn" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Gleymdir þú lykilorðinu þínu? Sláðu tölvupóstfangið þitt inn að neðan og við " -"munum senda þér leiðbeiningar fyrir endurstillingu lykilorðs." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Tölvupóstfang:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Endursstilla lykilorðið mitt" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Allar dagsetningar" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ekkert)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Veldu %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Veldu %s til að breyta" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo deleted file mode 100644 index d5bbdb098..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po deleted file mode 100644 index b7cd35daa..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/is/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: haffi67 \n" -"Language-Team: Icelandic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Fáanleg %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Sía" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Velja öll" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Bæta við" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Fjarlægja" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Valin %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Veldu úr valmöguleikunum og smelltu" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Hreinsa öll" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] " %(sel)s í %(cnt)s valin" -msgstr[1] " %(sel)s í %(cnt)s valin" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Enn eru óvistaðar breytingar í reitum. Ef þú keyrir aðgerð munu breytingar " -"ekki verða vistaðar." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Þú hefur valið aðgerð en hefur ekki vistað breytingar á reitum. Vinsamlegast " -"veldu 'à lagi' til að vista. Þú þarft að endurkeyra aðgerðina." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Þú hefur valið aðgerð en hefur ekki gert breytingar á reitum. Þú ert líklega " -"að leita að 'Fara' hnappnum frekar en 'Vista' hnappnum." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"janúar febrúar mars apríl maí júní júlí ágúst september október nóvember " -"desember" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M Þ M F F L" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Sýna" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Fela" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "" -"sunnudagur mánudagur þriðjudagur miðvikudagur fimmtudagur föstudagur " -"laugardagur" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Núna" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Klukka" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Veldu tíma" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Miðnætti" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 f.h." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Hádegi" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Hætta við" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "à dag" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Dagatal" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "à gær" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "à morgun" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo deleted file mode 100644 index b295dbe57..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.po deleted file mode 100644 index 1a973ece7..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/django.po +++ /dev/null @@ -1,811 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-08 18:46+0000\n" -"Last-Translator: teknico \n" -"Language-Team: Italian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Cancellati/e con successo %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Impossibile cancellare %(name)s " - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Sei sicuro?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Cancella %(verbose_name_plural)s selezionati/e" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                  By %s:

                                                                                                                  \n" -"
                                                                                                                    \n" -msgstr "" -"

                                                                                                                    Di %s:

                                                                                                                    \n" -"
                                                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Tutti" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Sì" - -#: filterspecs.py:139 -msgid "No" -msgstr "No" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Sconosciuto" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Qualsiasi data" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Oggi" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Ultimi 7 giorni" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Questo mese" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Quest'anno" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Inserisci nome utente e password corretti. In entrambi i campi le maiuscole " -"sono significative." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Effettua di nuovo l'accesso, perché la tua sessione è scaduta." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Il nome utente non è costituito dall'indirizzo e-mail. Prova con '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Azione:" - -#: models.py:19 -msgid "action time" -msgstr "momento dell'azione" - -#: models.py:22 -msgid "object id" -msgstr "id dell'oggetto" - -#: models.py:23 -msgid "object repr" -msgstr "rappr. dell'oggetto" - -#: models.py:24 -msgid "action flag" -msgstr "flag di azione" - -#: models.py:25 -msgid "change message" -msgstr "messaggio di modifica" - -#: models.py:28 -msgid "log entry" -msgstr "voce di log" - -#: models.py:29 -msgid "log entries" -msgstr "voci di log" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Nessuno" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s modificato/a." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "e" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Aggiunto/a %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Cambiato %(list)s per %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Cancellato/a %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Nessun campo modificato." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" aggiunto/a correttamente." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "È possibile modificare nuovamente qui sotto." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Puoi aggiungere un altro/a %s qui sotto." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" modificato/a correttamente." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" aggiunto/a correttamente. Puoi modificare ancora qui " -"sotto." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Occorre selezionare degli oggetti per potervi eseguire azioni. Nessun " -"oggetto è stato cambiato." - -#: options.py:846 -msgid "No action selected." -msgstr "Nessuna azione selezionata." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Aggiungi %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "L'oggetto %(name)s con chiave primaria %(key)r non esiste." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Modifica %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Errore nel database" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s modificato/a correttamente." -msgstr[1] "%(count)s %(name)s modificati/e correttamente." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s selezionato/a" -msgstr[1] "Tutti i %(total_count)s selezionati/e" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 di %(cnt)s selezionati/e" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" cancellato/a correttamente." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Tracciato delle modifiche: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Accedi" - -#: sites.py:375 -msgid "Site administration" -msgstr "Amministrazione sito" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Amministrazione %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Data:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Ora:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Consultazione" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Aggiungi un Altro" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Pagina non trovata" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Spiacenti, ma la pagina richiesta non è stata trovata." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Pagina iniziale" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Errore del server" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Errore del server (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Errore del server (500)" - -#: 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 "" -"Si è verificato un errore. Gli amministratori del sito ne sono stati " -"informati via e-mail e verrà corretto a breve. Grazie per la tua pazienza." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Esegui l'azione selezionata" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Vai" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Clicca qui per selezionare gli oggetti da tutte le pagine." - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Seleziona tutti/e %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Annulla la selezione" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Benvenuto/a," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentazione" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Cambia la password" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Annulla l'accesso" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Ammin. sito Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Amministrazione Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Aggiungi" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Storia" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Vedi sul sito" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Correggi l'errore qui sotto." -msgstr[1] "Correggi gli errori qui sotto." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Aggiungi %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtra" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Cancella" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"La cancellazione di %(object_name)s '%(escaped_object)s' causerebbe la " -"cancellazione di oggetti collegati, ma questo account non ha i permessi per " -"cancellare gli oggetti dei seguenti tipi:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"La cancellazione di %(object_name)s '%(escaped_object)s' richiederebbe " -"l'eliminazione dei seguenti oggetti protetti correlati:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Sicuro di voler cancellare %(object_name)s \"%(escaped_object)s\"? Tutti i " -"seguenti oggetti collegati verranno cancellati:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Sì, sono sicuro" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Cancella più oggetti" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Cancellare %(objects_name)s selezionato/a comporterebbe l'eliminazione di " -"oggetti correlati, ma il tuo account non dispone dell'autorizzazione a " -"eliminare i seguenti tipi di oggetti:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Cancellare %(objects_name)s selezionato/a richiederebbe l'eliminazione dei " -"seguenti oggetti protetti correlati:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Sei sicuro di voler cancellare %(objects_name)s? Tutti i seguenti oggetti e " -"le loro voci correlate verranno cancellati:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Per %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modelli disponibili nell'applicazione %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Modifica" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Non hai i privilegi per modificare alcunché." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Azioni Recenti" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Azioni Proprie" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Nessuna disponibile" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Contenuto sconosciuto" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Ci sono problemi nell'installazione del database. Assicurarsi che le tabelle " -"appropriate del database siano state create, e che il database sia leggibile " -"dall'utente appropriato." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Nome utente:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Password:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Data/ora" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Utente" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Azione" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Questo oggetto non ha cambiamenti registrati. Probabilmente non è stato " -"creato con questo sito di amministrazione." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Mostra tutto" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Salva" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Cerca" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s risultato" -msgstr[1] "%(counter)s risultati" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s in tutto" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Salva come nuovo" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Salva e aggiungi un altro" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Salva e continua le modifiche" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Inserisci innanzitutto nome utente e password. Potrai poi modificare le " -"altre impostazioni dell'utente." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Inserisci il nome utente e password." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Inserisci una nuova password per l'utente %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Password" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Password (di nuovo)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Inserisci la stessa password inserita sopra, come verifica." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Aggiungi un/a altro/a %(verbose_name)s." - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Elimina" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Cancellare?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Grazie per aver speso il tuo tempo prezioso su questo sito oggi." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Accedi di nuovo" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Cambio password" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Cambio password avvenuto correttamente" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "La password è stata cambiata." - -#: templates/registration/password_change_form.html:22 -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 "" -"Inserisci la password attuale, per ragioni di sicurezza, e poi la nuova " -"password due volte, per verificare di averla scritta correttamente." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Password attuale" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nuova password" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Modifica la mia password" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Reimposta la password" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Password reimpostata" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "La tua password è stata impostata. Ora puoi effettuare l'accesso." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Conferma reimpostazione password" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Inserisci la nuova password" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Inserisci la nuova password due volte, per verificare di averla scritta " -"correttamente." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nuova password:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Conferma la password:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Password non reimpostata" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Il link per la reimpostazione della password non era valido, forse perché " -"era già stato usato. Richiedi una nuova reimpostazione della password." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Password reimpostata correttamente" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Abbiamo inviato le istruzioni per impostare la tua password all'indirizzo e-" -"mail che hai fornito. Arriveranno a breve." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Hai ricevuto questa e-mail perché avevi chiesto un reset della password per " -"l'account utente su %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Vai alla pagina seguente e scegli una nuova password:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Il tuo nome utente, in caso tu l'abbia dimenticato:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Grazie per aver usato il nostro sito!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Il team di %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Password dimenticata? Inserisci il tuo indirizzo email qui sotto, e ti " -"invieremo per email le istruzioni per impostarne una nuova." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Indirizzo e-mail:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Reimposta la mia password" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Tutte le date" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Nessuno)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Scegli %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Scegli %s da modificare" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo deleted file mode 100644 index c98e5e1fa..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po deleted file mode 100644 index 513f67dc0..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/it/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-08 17:12+0000\n" -"Last-Translator: teknico \n" -"Language-Team: Italian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s disponibili" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtro" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Scegli tutto" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Aggiungi" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Elimina" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s scelti" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Seleziona le tue scelte e fai clic" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Cancella tutto" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s di %(cnt)s selezionato" -msgstr[1] "%(sel)s di %(cnt)s selezionati" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Hai delle modifiche in singoli campi. Se esegui un'azione, le modifiche non " -"salvate andranno perse." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Hai selezionato un'azione, ma non hai ancora salvato le modifiche apportate " -"ai singoli campi. Fai clic su OK per salvare. Poi dovrai ri-eseguire " -"l'azione." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Hai selezionato un'azione, ma non hai ancora apportato alcuna modifica ai " -"singoli campi. Probabilmente stai cercando il pulsante Go, invece di Save." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"gennaio febbraio marzo aprile maggio giugno luglio agosto settembre ottobre " -"novembre dicembre" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D L M M G V S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Mostra" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Nascondi" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "domenica lunedì martedì mercoledì giovedì venerdì sabato" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Adesso" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Orologio" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Scegli un orario" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Mezzanotte" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 del mattino" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Mezzogiorno" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Annulla" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Oggi" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendario" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Ieri" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Domani" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo deleted file mode 100644 index 2c76749d2..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.po deleted file mode 100644 index e649c5588..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/django.po +++ /dev/null @@ -1,798 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Japanese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d 個㮠%(items)sを削除ã—ã¾ã—ãŸã€‚" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "%(name)s ãŒå‰Šé™¤ã§ãã¾ã›ã‚“" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "よã‚ã—ã„ã§ã™ã‹ï¼Ÿ" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "é¸æŠžã•ã‚ŒãŸ %(verbose_name_plural)s ã®å‰Šé™¤" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                      By %s:

                                                                                                                      \n" -"
                                                                                                                        \n" -msgstr "" -"

                                                                                                                        %s ã§çµžã‚Šè¾¼ã‚€

                                                                                                                        \n" -"
                                                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "å…¨ã¦" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "ã¯ã„" - -#: filterspecs.py:139 -msgid "No" -msgstr "ã„ã„ãˆ" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "ä¸æ˜Ž" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "ã„ã¤ã§ã‚‚" - -#: filterspecs.py:197 -msgid "Today" -msgstr "今日" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "éŽåŽ» 7 日間" - -#: filterspecs.py:203 -msgid "This month" -msgstr "今月" - -#: filterspecs.py:205 -msgid "This year" -msgstr "今年" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"æ­£ã—ã„ユーザåã¨ãƒ‘スワードを入力ã—ã¦ãã ã•ã„ (大文字å°æ–‡å­—ã¯åŒºåˆ¥ã—ã¾ã™) 。" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" -"å†ãƒ­ã‚°ã‚¤ãƒ³ã—ã¦ãã ã•ã„。ログインセッションãŒæœ‰åŠ¹æœŸé–“切れã—ã¦ã—ã¾ã„ã¾ã—ãŸã€‚" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "メールアドレスã¯ãƒ¦ãƒ¼ã‚¶åã§ã¯ã‚ã‚Šã¾ã›ã‚“。 '%s' を試ã—ã¦ã¿ã¦ãã ã•ã„。" - -#: helpers.py:19 -msgid "Action:" -msgstr "æ“作:" - -#: models.py:19 -msgid "action time" -msgstr "æ“作時刻" - -#: models.py:22 -msgid "object id" -msgstr "オブジェクト ID" - -#: models.py:23 -msgid "object repr" -msgstr "オブジェクトã®æ–‡å­—列表ç¾" - -#: models.py:24 -msgid "action flag" -msgstr "æ“作種別" - -#: models.py:25 -msgid "change message" -msgstr "変更メッセージ" - -#: models.py:28 -msgid "log entry" -msgstr "ログエントリ" - -#: models.py:29 -msgid "log entries" -msgstr "ログエントリ" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "None" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s を変更ã—ã¾ã—ãŸã€‚" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ã¨" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\"を追加ã—ã¾ã—ãŸã€‚" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" ã® %(list)s を変更ã—ã¾ã—ãŸã€‚" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" を削除ã—ã¾ã—ãŸã€‚" - -#: options.py:645 -msgid "No fields changed." -msgstr "変更ã¯ã‚ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" を追加ã—ã¾ã—ãŸã€‚" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "続ã‘ã¦ç·¨é›†ã§ãã¾ã™ã€‚" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "続ã‘ã¦åˆ¥ã® %s を追加ã§ãã¾ã™ã€‚" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" を変更ã—ã¾ã—ãŸã€‚" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" を追加ã—ã¾ã—ãŸã€‚続ã‘ã¦ç·¨é›†ã§ãã¾ã™ã€‚" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"æ“作を実行ã™ã‚‹ã«ã¯ã€å¯¾è±¡ã‚’é¸æŠžã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚何も変更ã•ã‚Œã¾ã›ã‚“ã§ã—ãŸã€‚" - -#: options.py:846 -msgid "No action selected." -msgstr "æ“作ãŒé¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“。" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s を追加" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "主キー㌠%(key)r ã§ã‚ã‚‹ %(name)s オブジェクトã¯å­˜åœ¨ã—ã¾ã›ã‚“。" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s を変更" - -#: options.py:1065 -msgid "Database error" -msgstr "データベースエラー" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s 個㮠%(name)s を変更ã—ã¾ã—ãŸã€‚" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s 個é¸æŠžã•ã‚Œã¾ã—ãŸ" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "%(cnt)s個ã®å†…ã²ã¨ã¤ã‚‚é¸æŠžã•ã‚Œã¦ã„ã¾ã›ã‚“" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" を削除ã—ã¾ã—ãŸã€‚" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "変更履歴: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "ログイン" - -#: sites.py:375 -msgid "Site administration" -msgstr "サイト管ç†" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s サイト管ç†" - -#: widgets.py:75 -msgid "Date:" -msgstr "日付:" - -#: widgets.py:75 -msgid "Time:" -msgstr "時刻:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "検索" - -#: widgets.py:246 -msgid "Add Another" -msgstr "追加" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "ページãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "申ã—訳ã‚ã‚Šã¾ã›ã‚“ãŒã€ãŠæŽ¢ã—ã®ãƒšãƒ¼ã‚¸ã¯è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "ホーム" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "サーãƒã‚¨ãƒ©ãƒ¼" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "サーãƒã‚¨ãƒ©ãƒ¼ (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "サーãƒã‚¨ãƒ©ãƒ¼ (500)" - -#: 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 "" -"エラーãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚エラーをサイトã®ç®¡ç†è€…ã«ãƒ¡ãƒ¼ãƒ«ã§å ±å‘Šã—ã¾ã—ãŸã®ã§ã€è¿‘ã„" -"ã†ã¡ã«ä¿®æ­£ã•ã‚Œã‚‹ã¯ãšã§ã™ã€‚ã—ã°ã‚‰ããŠå¾…ã¡ãã ã•ã„。" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "é¸æŠžã•ã‚ŒãŸæ“作を実行" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "実行" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "全ページã®é …目をé¸æŠžã™ã‚‹ã«ã¯ã“ã“をクリック" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "%(total_count)s個ã‚ã‚‹%(module_name)s ã‚’å…¨ã¦é¸æŠž" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "é¸æŠžã‚’解除" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "よã†ã“ã" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "ドキュメント" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "パスワードã®å¤‰æ›´" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "ログアウト" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django サイト管ç†" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django 管ç†ã‚µã‚¤ãƒˆ" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "追加" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "履歴" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "サイト上ã§è¡¨ç¤º" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "下記ã®ã‚¨ãƒ©ãƒ¼ã‚’修正ã—ã¦ãã ã•ã„。" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s を追加" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "フィルタ" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "削除" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s' ã®å‰Šé™¤æ™‚ã«é–¢é€£ã¥ã‘られãŸã‚ªãƒ–ジェクトも削" -"除ã—よã†ã¨ã—ã¾ã—ãŸãŒã€ã‚ãªãŸã®ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã«ã¯ä»¥ä¸‹ã®ã‚¿ã‚¤ãƒ—ã®ã‚ªãƒ–ジェクトを削除" -"ã™ã‚‹ãƒ‘ーミッションãŒã‚ã‚Šã¾ã›ã‚“:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s' を削除ã™ã‚‹ã«ã¯ä»¥ä¸‹ã®ä¿è­·ã•ã‚ŒãŸé–¢é€£ã‚ªãƒ–" -"ジェクトを削除ã™ã‚‹ã“ã¨ã«ãªã‚Šã¾ã™:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"%(object_name)s \"%(escaped_object)s\"を削除ã—ã¾ã™ã‹ï¼Ÿ 関連ã¥ã‘られã¦ã„る以下" -"ã®ã‚ªãƒ–ジェクトも全ã¦å‰Šé™¤ã•ã‚Œã¾ã™:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "ã¯ã„。" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "複数ã®ã‚ªãƒ–ジェクトを削除ã—ã¾ã™" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"é¸æŠžã—㟠%(objects_name)s を削除ã™ã‚‹ã¨é–¢é€£ã™ã‚‹ã‚ªãƒ–ジェクトも削除ã—ã¾ã™ãŒã€ã‚" -"ãªãŸã®ã‚¢ã‚«ã‚¦ãƒ³ãƒˆã¯ä»¥ä¸‹ã®ã‚ªãƒ–ジェクト型を削除ã™ã‚‹æ¨©é™ãŒã‚ã‚Šã¾ã›ã‚“:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"é¸æŠžã—㟠%(objects_name)s を削除ã™ã‚‹ã¨ä»¥ä¸‹ã®ä¿è­·ã•ã‚ŒãŸé–¢é€£ã‚ªãƒ–ジェクトを削除" -"ã™ã‚‹ã“ã¨ã«ãªã‚Šã¾ã™:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"本当ã«é¸æŠžã—㟠%(objects_name)s を削除ã—ã¾ã™ã‹ï¼Ÿ 以下ã®å…¨ã¦ã®ã‚ªãƒ–ジェクトã¨é–¢" -"連ã™ã‚‹è¦ç´ ãŒå‰Šé™¤ã•ã‚Œã¾ã™:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "%(filter_title)s ã§çµžã‚Šè¾¼ã‚€" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s アプリケーションã§åˆ©ç”¨å¯èƒ½ãªãƒ¢ãƒ‡ãƒ«" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "変更" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "変更ã®ãŸã‚ã®ãƒ‘ーミッションãŒã‚ã‚Šã¾ã›ã‚“。" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "最近行ã£ãŸæ“作" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "æ“作" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "利用ä¸å¯" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "ä¸æ˜Žãªã‚³ãƒ³ãƒ†ãƒ³ãƒˆ" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"データベースã®è¨­å®šã«å•é¡ŒãŒã‚るよã†ã§ã™ã€‚é©åˆ‡ãªãƒ†ãƒ¼ãƒ–ルãŒä½œã‚‰ã‚Œã¦ã„ã‚‹ã“ã¨ã€é©" -"切ãªãƒ¦ãƒ¼ã‚¶ã§ãƒ‡ãƒ¼ã‚¿ãƒ™ãƒ¼ã‚¹ã®ãƒ‡ãƒ¼ã‚¿ã‚’読ã¿è¾¼ã‚ã‚‹ã“ã¨ã‚’確èªã—ã¦ãã ã•ã„。" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "ユーザå:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "パスワード:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "日付/時刻" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "ユーザ" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "æ“作" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"ã“ã®ã‚ªãƒ–ジェクトã«ã¯å¤‰æ›´å±¥æ­´ãŒã‚ã‚Šã¾ã›ã‚“。ãŠãらãã“ã®ç®¡ç†ã‚µã‚¤ãƒˆã§è¿½åŠ ã—ãŸã‚‚" -"ã®ã§ã¯ã‚ã‚Šã¾ã›ã‚“。" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "全件表示" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "ä¿å­˜" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "検索" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "çµæžœ %(counter)s" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "å…¨ %(full_result_count)s 件" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "æ–°è¦ä¿å­˜" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "ä¿å­˜ã—ã¦ã‚‚ã†ä¸€ã¤è¿½åŠ " - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "ä¿å­˜ã—ã¦ç·¨é›†ã‚’続ã‘ã‚‹" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"ã¾ãšãƒ¦ãƒ¼ã‚¶åã¨ãƒ‘スワードを登録ã—ã¦ãã ã•ã„。ãã®å¾Œè©³ç´°æƒ…å ±ãŒç·¨é›†å¯èƒ½ã«ãªã‚Šã¾" -"ã™ã€‚" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "ユーザåã¨ãƒ‘スワードを入力ã—ã¦ãã ã•ã„。" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"%(username)sã•ã‚“ã®æ–°ã—ã„パスワードを入力ã—ã¦ãã ã•ã„。" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "パスワード" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "パスワード(確èªç”¨)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "確èªã®ãŸã‚ã€å†åº¦ãƒ‘スワードを入力ã—ã¦ãã ã•ã„。" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "%(verbose_name)s ã®è¿½åŠ " - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "削除" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "削除ã—ã¾ã™ã‹?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "ã”利用ã‚ã‚ŠãŒã¨ã†ã”ã–ã„ã¾ã—ãŸã€‚" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "ã‚‚ã†ä¸€åº¦ãƒ­ã‚°ã‚¤ãƒ³" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "パスワードã®å¤‰æ›´" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "パスワードを変更ã—ã¾ã—ãŸ" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "ã‚ãªãŸã®ãƒ‘スワードã¯å¤‰æ›´ã•ã‚Œã¾ã—ãŸ" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"セキュリティ上ã®ç†ç”±ã‹ã‚‰å…ƒã®ãƒ‘スワードã®å…¥åŠ›ãŒå¿…è¦ã§ã™ã€‚æ–°ã—ã„パスワードã¯æ­£" -"ã—ã入力ã—ãŸã‹ç¢ºèªã§ãるよã†ã«äºŒåº¦å…¥åŠ›ã—ã¦ãã ã•ã„。" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "å…ƒã®ãƒ‘スワード" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "æ–°ã—ã„パスワード" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "パスワードã®å¤‰æ›´" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "パスワードをリセット" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "パスワードãŒãƒªã‚»ãƒƒãƒˆã•ã‚Œã¾ã—ãŸ" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "パスワードãŒã‚»ãƒƒãƒˆã•ã‚Œã¾ã—ãŸã€‚ログインã—ã¦ãã ã•ã„。" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "パスワードリセットã®ç¢ºèª" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "æ–°ã—ã„パスワードを入力ã—ã¦ãã ã•ã„" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "確èªã®ãŸã‚ã«ã€æ–°ã—ã„パスワードを二回入力ã—ã¦ãã ã•ã„。" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "æ–°ã—ã„パスワード:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "æ–°ã—ã„パスワード (確èªç”¨) :" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "パスワードã®ãƒªã‚»ãƒƒãƒˆã«å¤±æ•—ã—ã¾ã—ãŸ" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"パスワードリセットã®ãƒªãƒ³ã‚¯ãŒä¸æ­£ã§ã™ã€‚ãŠãらãã“ã®ãƒªãƒ³ã‚¯ã¯æ—¢ã«ä½¿ã‚ã‚Œã¦ã„ã¾" -"ã™ã€‚ã‚‚ã†ä¸€åº¦ãƒ‘スワードリセットã—ã¦ãã ã•ã„。" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "パスワードをリセットã—ã¾ã—ãŸ" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"登録ã•ã‚Œã¦ã„るメールアドレスã«ãƒ‘スワードリセットã®æ–¹æ³•ã‚’é€ä¿¡ã—ã¾ã—ãŸã€‚ã¾ã‚‚ãª" -"ã届ãã§ã—ょã†ã€‚" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "次ã®ãƒšãƒ¼ã‚¸ã§æ–°ã—ã„パスワードをé¸ã‚“ã§ãã ã•ã„:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "ã‚ãªãŸã®ãƒ¦ãƒ¼ã‚¶å (念ã®ãŸã‚):" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "ã”利用ã‚ã‚ŠãŒã¨ã†ã”ã–ã„ã¾ã—ãŸï¼" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr " %(site_name)s ãƒãƒ¼ãƒ " - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"パスワードをãŠå¿˜ã‚Œã§ã™ã‹ï¼Ÿãƒ¡ãƒ¼ãƒ«ã‚¢ãƒ‰ãƒ¬ã‚¹ã‚’入力ã—ã¦ãã ã•ã„。パスワードã®ãƒª" -"セット方法をメールã§ãŠçŸ¥ã‚‰ã›ã—ã¾ã™ã€‚" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "メールアドレス" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "パスワードをリセット" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "ã„ã¤ã§ã‚‚" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s ã‚’é¸æŠž" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "変更ã™ã‚‹ %s ã‚’é¸æŠž" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 8bb440d25..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po deleted file mode 100644 index ac90fcaf7..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ja/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Japanese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "利用å¯èƒ½ %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "å…¨ã¦é¸æŠž" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "追加" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "削除" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "é¸æŠžã•ã‚ŒãŸ %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "é¸æŠžã—ã¦ã‚¯ãƒªãƒƒã‚¯" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "å…¨ã¦ã‚¯ãƒªã‚¢" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(cnt)s個中%(sel)s個é¸æŠž" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"フィールドã«æœªä¿å­˜ã®å¤‰æ›´ãŒã‚ã‚Šã¾ã™ã€‚æ“作を実行ã™ã‚‹ã¨æœªä¿å­˜ã®å¤‰æ›´ã¯å¤±ã‚ã‚Œã¾" -"ã™ã€‚" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"æ“作をé¸æŠžã—ã¾ã—ãŸãŒã€ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ã«æœªä¿å­˜ã®å¤‰æ›´ãŒã‚ã‚Šã¾ã™ã€‚OKをクリックã—ã¦ä¿" -"å­˜ã—ã¦ãã ã•ã„。ãã®å¾Œã€æ“作をå†åº¦å®Ÿè¡Œã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"æ“作をé¸æŠžã—ã¾ã—ãŸãŒã€ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰ã«å¤‰æ›´ã¯ã‚ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ã‚‚ã—ã‹ã—ã¦ä¿å­˜ãƒœã‚¿" -"ンã§ã¯ãªãã¦å®Ÿè¡Œãƒœã‚¿ãƒ³ã‚’ãŠæŽ¢ã—ã§ã™ã‹ã€‚" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "1月 2月 3月 4月 5月 6月 7月 8月 9月 10月 11月 12月" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "æ—¥ 月 ç« æ°´ 木 金 土" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "表示" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "éžè¡¨ç¤º" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "日曜 月曜 ç«æ›œ 水曜 木曜 金曜 土曜" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "ç¾åœ¨" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "時計" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "時間をé¸æŠž" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "0時" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "åˆå‰ 6 時" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "12時" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "キャンセル" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "今日" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "カレンダー" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "昨日" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "明日" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo deleted file mode 100644 index 3bce3d41e..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.po deleted file mode 100644 index 8a8283cd8..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/django.po +++ /dev/null @@ -1,808 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Georgian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s წáƒáƒ áƒ›áƒáƒ¢áƒ”ბით წáƒáƒ˜áƒ¨áƒáƒšáƒ." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "%(name)s ვერ იშლებáƒ" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "დáƒáƒ áƒ¬áƒ›áƒ£áƒœáƒ”ბული ხáƒáƒ áƒ—?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "áƒáƒ áƒ©áƒ”ული %(verbose_name_plural)s-ის წáƒáƒ¨áƒšáƒ" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                          By %s:

                                                                                                                          \n" -"
                                                                                                                            \n" -msgstr "" -"

                                                                                                                            %s-ს მიერ:

                                                                                                                            \n" -"
                                                                                                                              \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "ყველáƒ" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "კი" - -#: filterspecs.py:139 -msgid "No" -msgstr "áƒáƒ áƒ" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "გáƒáƒ£áƒ áƒ™áƒ•áƒ”ველი" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "ნებისმიერი თáƒáƒ áƒ˜áƒ¦áƒ˜" - -#: filterspecs.py:197 -msgid "Today" -msgstr "დღეს" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "ბáƒáƒšáƒ 7 დღე" - -#: filterspecs.py:203 -msgid "This month" -msgstr "მიმდინáƒáƒ áƒ” თვე" - -#: filterspecs.py:205 -msgid "This year" -msgstr "მიმდინáƒáƒ áƒ” წელი" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"გთხáƒáƒ•áƒ—, შეიყვáƒáƒœáƒáƒ— სწáƒáƒ áƒ˜ მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის სáƒáƒ®áƒ”ლი დრპáƒáƒ áƒáƒšáƒ˜. გáƒáƒ˜áƒ—ვáƒáƒšáƒ˜áƒ¡áƒ¬áƒ˜áƒœáƒ”თ, რáƒáƒ› " -"áƒáƒ áƒ˜áƒ•áƒ” ველი დáƒáƒ›áƒáƒ™áƒ˜áƒ“ებულირრეგისტრზე." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "გთხáƒáƒ•áƒ—, შეხვიდეთ კიდევ ერთხელ, რáƒáƒ“გáƒáƒœáƒáƒª თქვენი სესიის დრრáƒáƒ›áƒáƒ˜áƒ¬áƒ£áƒ áƒ." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"ელ-ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ი áƒáƒ  áƒáƒ áƒ˜áƒ¡ თქვენი მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის სáƒáƒ®áƒ”ლი. სცáƒáƒ“ეთ '%s' მის " -"ნáƒáƒªáƒ•áƒšáƒáƒ“." - -#: helpers.py:19 -msgid "Action:" -msgstr "მáƒáƒ¥áƒ›áƒ”დებáƒ:" - -#: models.py:19 -msgid "action time" -msgstr "მáƒáƒ¥áƒ›áƒ”დების დრáƒ" - -#: models.py:22 -msgid "object id" -msgstr "áƒáƒ‘იექტის id" - -#: models.py:23 -msgid "object repr" -msgstr "áƒáƒ‘იექტის წáƒáƒ áƒ›." - -#: models.py:24 -msgid "action flag" -msgstr "მáƒáƒ¥áƒ›áƒ”დების დრáƒáƒ¨áƒ" - -#: models.py:25 -msgid "change message" -msgstr "შეცვლის შეტყáƒáƒ‘ინებáƒ" - -#: models.py:28 -msgid "log entry" -msgstr "ლáƒáƒ’ის ერთეული" - -#: models.py:29 -msgid "log entries" -msgstr "ლáƒáƒ’ის ერთეულები" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "áƒáƒ áƒªáƒ”რთი" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s შეცვლილიáƒ." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "დáƒ" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "დáƒáƒ›áƒáƒ¢áƒ”ბულირ%(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "შეცვლილირ%(list)s for %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "წáƒáƒ¨áƒšáƒ˜áƒšáƒ˜áƒ %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "áƒáƒ áƒªáƒ”რთი ველი áƒáƒ  შეცვლილáƒ." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" წáƒáƒ áƒ›áƒáƒ¢áƒ”ბით დáƒáƒ”მáƒáƒ¢áƒ." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "თქვენ შეგიძლიáƒáƒ— შეცვáƒáƒšáƒáƒ— იგი." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "შეგიძლიáƒáƒ— დáƒáƒáƒ›áƒáƒ¢áƒáƒ— კიდევ ერთი %s." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" წáƒáƒ áƒ›áƒáƒ¢áƒ”ბით შეიცვáƒáƒšáƒ." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" წáƒáƒ áƒ›áƒáƒ¢áƒ”ბით დáƒáƒ”მáƒáƒ¢áƒ. შეგიძლიáƒáƒ— გáƒáƒœáƒáƒ’რძáƒáƒ— მისი " -"რედáƒáƒ¥áƒ¢áƒ˜áƒ áƒ”ბáƒ." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"áƒáƒ‘იექტებზე მáƒáƒ¥áƒ›áƒ”დებების შესáƒáƒ¡áƒ áƒ£áƒšáƒ”ბლáƒáƒ“ ისინი áƒáƒ áƒ©áƒ”ული უნდრიყáƒáƒ¡. áƒáƒ áƒªáƒ”რთი " -"áƒáƒ‘იექტი áƒáƒ áƒ©áƒ”ული áƒáƒ  áƒáƒ áƒ˜áƒ¡." - -#: options.py:846 -msgid "No action selected." -msgstr "მáƒáƒ¥áƒ›áƒ”დებრáƒáƒ áƒ©áƒ”ული áƒáƒ  áƒáƒ áƒ˜áƒ¡." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "დáƒáƒ•áƒáƒ›áƒáƒ¢áƒáƒ— %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s-ის áƒáƒ‘იექტი პირველáƒáƒ“ი გáƒáƒ¡áƒáƒ¦áƒ”ბით %(key)r áƒáƒ  áƒáƒ áƒ¡áƒ”ბáƒáƒ‘ს." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "შევცვáƒáƒšáƒáƒ— %s" - -#: options.py:1065 -msgid "Database error" -msgstr "მáƒáƒœáƒáƒªáƒ”მთრბáƒáƒ–ის შეცდáƒáƒ›áƒ" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s წáƒáƒ áƒ›áƒáƒ¢áƒ”ბით შეიცვáƒáƒšáƒ." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s-ირáƒáƒ áƒ©áƒ”ული" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "%(cnt)s-დáƒáƒœ áƒáƒ áƒªáƒ”რთი áƒáƒ áƒ©áƒ”ული áƒáƒ  áƒáƒ áƒ˜áƒ¡" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" წáƒáƒ áƒ›áƒáƒ¢áƒ”ბით წáƒáƒ˜áƒ¨áƒáƒšáƒ." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ცვლილებების ისტáƒáƒ áƒ˜áƒ: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "შესვლáƒ" - -#: sites.py:375 -msgid "Site administration" -msgstr "სáƒáƒ˜áƒ¢áƒ˜áƒ¡ áƒáƒ“მინისტრირებáƒ" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s áƒáƒ“მინისტრირებáƒ" - -#: widgets.py:75 -msgid "Date:" -msgstr "თáƒáƒ áƒ˜áƒ¦áƒ˜;" - -#: widgets.py:75 -msgid "Time:" -msgstr "დრáƒ:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "ძიებáƒ" - -#: widgets.py:246 -msgid "Add Another" -msgstr "áƒáƒ®áƒšáƒ˜áƒ¡ დáƒáƒ›áƒáƒ¢áƒ”ბáƒ" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "გვერდი ვერ მáƒáƒ˜áƒ«áƒ”ბნáƒ" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "უკáƒáƒªáƒ áƒáƒ•áƒáƒ“, მáƒáƒ—ხáƒáƒ•áƒœáƒ˜áƒšáƒ˜ გვერდი ვერ მáƒáƒ˜áƒ«áƒ”ბნáƒ." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "სáƒáƒ¬áƒ§áƒ˜áƒ¡áƒ˜ გვერდი" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "სერვერის შეცდáƒáƒ›áƒ" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "სერვერის შეცდáƒáƒ›áƒ (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "სერვერის შეცდáƒáƒ›áƒ (500)" - -#: 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 "" -"სისტემáƒáƒ¨áƒ˜ მáƒáƒ®áƒ“რშეცდáƒáƒ›áƒ. იგი გáƒáƒ“áƒáƒ’ზáƒáƒ•áƒœáƒ˜áƒšáƒ˜áƒ სáƒáƒ˜áƒ¢áƒ˜áƒ¡ áƒáƒ“მინისტრáƒáƒ¢áƒáƒ áƒ˜áƒ¡ ელექტრáƒáƒœáƒ£áƒš " -"ფáƒáƒ¡áƒ¢áƒáƒ–ე დრმáƒáƒšáƒ” გáƒáƒ›áƒáƒ¡áƒ¬áƒáƒ áƒ“ებáƒ. გმáƒáƒ“ლáƒáƒ‘თ მáƒáƒ—მინებისáƒáƒ—ვის." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "áƒáƒ áƒ©áƒ”ული მáƒáƒ¥áƒ›áƒ”დების შესრულებáƒ" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "გáƒáƒ“áƒáƒ¡áƒ•áƒšáƒ" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "ყველრგვერდზე áƒáƒ áƒ¡áƒ”ბული áƒáƒ‘იექტის მáƒáƒ¡áƒáƒœáƒ˜áƒ¨áƒœáƒáƒ“ დáƒáƒáƒ¬áƒ™áƒáƒžáƒ”თ áƒáƒ¥" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "ყველრ%(total_count)s %(module_name)s-ის მáƒáƒœáƒ˜áƒ¨áƒ•áƒœáƒ" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "მáƒáƒœáƒ˜áƒ¨áƒ•áƒœáƒ˜áƒ¡ გáƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•áƒ”ბáƒ" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "კეთილი იყáƒáƒ¡ თქვენი მáƒáƒ‘რძáƒáƒœáƒ”ბáƒ," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "დáƒáƒ™áƒ£áƒ›áƒ”ნტáƒáƒªáƒ˜áƒ" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "პáƒáƒ áƒáƒšáƒ˜áƒ¡ შეცვლáƒ" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "გáƒáƒ›áƒáƒ¡áƒ•áƒšáƒ" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django-ს áƒáƒ“მინისტრირების სáƒáƒ˜áƒ¢áƒ˜" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django-ს áƒáƒ“მინისტრირებáƒ" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "დáƒáƒ›áƒáƒ¢áƒ”ბáƒ" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ისტáƒáƒ áƒ˜áƒ" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "წáƒáƒ áƒ›áƒáƒ“გენრსáƒáƒ˜áƒ¢áƒ–ე" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "გთხáƒáƒ•áƒ—, გáƒáƒáƒ¡áƒ¬áƒáƒ áƒáƒ— შეცდáƒáƒ›áƒ”ბი." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "დáƒáƒ•áƒáƒ›áƒáƒ¢áƒáƒ— %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "ფილტრი" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "წáƒáƒ•áƒ¨áƒáƒšáƒáƒ—" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"áƒáƒ‘იექტების წáƒáƒ¨áƒšáƒ: %(object_name)s '%(escaped_object)s' გáƒáƒ›áƒáƒ˜áƒ¬áƒ•áƒ”ვს " -"დáƒáƒ™áƒáƒ•áƒ¨áƒ˜áƒ áƒ”ბული áƒáƒ‘იექტების წáƒáƒ¨áƒšáƒáƒ¡, მáƒáƒ’რáƒáƒ› თქვენ áƒáƒ áƒ გáƒáƒ¥áƒ•áƒ— შემდეგი ტიპების " -"áƒáƒ‘იექტების წáƒáƒ¨áƒšáƒ˜áƒ¡ უფლებáƒ:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"%(object_name)s ტიპის '%(escaped_object)s' áƒáƒ‘იექტის წáƒáƒ¨áƒšáƒ მáƒáƒ˜áƒ—ხáƒáƒ•áƒ¡ áƒáƒ¡áƒ”ვე " -"შემდეგი დáƒáƒ™áƒáƒ•áƒ¨áƒ˜áƒ áƒ”ბული áƒáƒ‘იექტების წáƒáƒ¨áƒšáƒáƒ¡:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"ნáƒáƒ›áƒ“ვილáƒáƒ“ გსურთ, წáƒáƒ¨áƒáƒšáƒáƒ— %(object_name)s \"%(escaped_object)s\"? ყველრ" -"ქვემáƒáƒ— მáƒáƒ§áƒ•áƒáƒœáƒ˜áƒšáƒ˜ დáƒáƒ™áƒáƒ•áƒ¨áƒ˜áƒ áƒ”ბული áƒáƒ‘იექტი წáƒáƒ¨áƒšáƒ˜áƒšáƒ˜ იქნებáƒ:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "კი, ნáƒáƒ›áƒ“ვილáƒáƒ“" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "რáƒáƒ›áƒ“ენიმე áƒáƒ‘იექტის წáƒáƒ¨áƒšáƒ" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"%(objects_name)s ტიპის áƒáƒ‘იექტის წáƒáƒ¨áƒšáƒ ითხáƒáƒ•áƒ¡ áƒáƒ¡áƒ”ვე შემდეგი áƒáƒ‘იექტების " -"წáƒáƒ¨áƒšáƒáƒ¡, მáƒáƒ’რáƒáƒ› თქვენ áƒáƒ  გáƒáƒ¥áƒ•áƒ— áƒáƒ›áƒ˜áƒ¡ ნებáƒáƒ áƒ—ვáƒ:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"áƒáƒ áƒ©áƒ”ული %(objects_name)s áƒáƒ‘იექტის წáƒáƒ¨áƒšáƒ მáƒáƒ˜áƒ—ხáƒáƒ•áƒ¡ áƒáƒ¡áƒ”ვე შემდეგი დáƒáƒªáƒ£áƒšáƒ˜ " -"დáƒáƒ™áƒáƒ•áƒ¨áƒ˜áƒ áƒ”ული áƒáƒ‘იექტების წáƒáƒ¨áƒšáƒáƒ¡:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"დáƒáƒ áƒ¬áƒ›áƒ£áƒœáƒ”ბული ხáƒáƒ áƒ—, რáƒáƒ› გსურთ %(objects_name)s áƒáƒ‘იექტის წáƒáƒ¨áƒšáƒ? ყველრშემდეგი " -"áƒáƒ‘იექტი, დრმáƒáƒ—ზე დáƒáƒ›áƒáƒ™áƒ˜áƒ“ებული ჩáƒáƒœáƒáƒ¬áƒ”რები წáƒáƒ¨áƒšáƒ˜áƒšáƒ˜ იქნებáƒ:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s მიხედვით " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒáƒ¨áƒ˜ áƒáƒ áƒ¡áƒ”ბული მáƒáƒ“ელები." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "შეცვლáƒ" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "თქვენ áƒáƒ áƒ გáƒáƒ¥áƒ•áƒ— რედáƒáƒ¥áƒ¢áƒ˜áƒ áƒ”ბის უფლებáƒ." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "ბáƒáƒšáƒ მáƒáƒ¥áƒ›áƒ”დებები" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "ჩემი მáƒáƒ¥áƒ›áƒ”დებები" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "áƒáƒ  áƒáƒ áƒ˜áƒ¡ მისáƒáƒ¬áƒ•áƒ“áƒáƒ›áƒ˜" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "უცნáƒáƒ‘ი შიგთáƒáƒ•áƒ¡áƒ˜" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"თქვენი მáƒáƒœáƒáƒªáƒ”მთრბáƒáƒ–ის ინსტáƒáƒšáƒáƒªáƒ˜áƒ áƒáƒ áƒáƒ™áƒáƒ áƒ”ქტულიáƒ. დáƒáƒ áƒ¬áƒ›áƒ£áƒœáƒ“ით, რáƒáƒ› მáƒáƒœáƒáƒªáƒ”მთრ" -"ბáƒáƒ–ის შესáƒáƒ‘áƒáƒ›áƒ˜áƒ¡áƒ˜ ცხრილები შექმნილიáƒ, დრმáƒáƒœáƒáƒªáƒ”მთრბáƒáƒ–ის წáƒáƒ™áƒ˜áƒ—ხვრშეუძლირ" -"შესáƒáƒ‘áƒáƒ›áƒ˜áƒ¡ მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბელს." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის სáƒáƒ®áƒ”ლი:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "პáƒáƒ áƒáƒšáƒ˜:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "თáƒáƒ áƒ˜áƒ¦áƒ˜/დრáƒ" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბელი" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "მáƒáƒ¥áƒ›áƒ”დებáƒ" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"áƒáƒ› áƒáƒ‘იექტს ცვლილებების ისტáƒáƒ áƒ˜áƒ áƒáƒ áƒ áƒáƒ¥áƒ•áƒ¡. რáƒáƒ’áƒáƒ áƒª ჩáƒáƒœáƒ¡, იგი áƒáƒ  იყრდáƒáƒ›áƒáƒ¢áƒ”ბული " -"áƒáƒ“მინისტრირების სáƒáƒ˜áƒ¢áƒ˜áƒ¡ მეშვეáƒáƒ‘ით." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "ვáƒáƒ©áƒ•áƒ”ნáƒáƒ— ყველáƒ" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "შევინáƒáƒ®áƒáƒ—" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "ძებნáƒ" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s შედეგი" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "სულ %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "შევინáƒáƒ®áƒáƒ—, რáƒáƒ’áƒáƒ áƒª áƒáƒ®áƒáƒšáƒ˜" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "შევინáƒáƒ®áƒáƒ— დრდáƒáƒ•áƒáƒ›áƒáƒ¢áƒáƒ— áƒáƒ®áƒáƒšáƒ˜" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "შევინáƒáƒ®áƒáƒ— დრგáƒáƒ•áƒáƒ’რძელáƒáƒ— რედáƒáƒ¥áƒ¢áƒ˜áƒ áƒ”ბáƒ" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"ჯერ შეიყვáƒáƒœáƒ”თ მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის სáƒáƒ®áƒ”ლი დრპáƒáƒ áƒáƒšáƒ˜. áƒáƒ›áƒ˜áƒ¡ შემდეგ თქვენ გექნებáƒáƒ— " -"მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის სხვრáƒáƒžáƒªáƒ˜áƒ”ბის რედáƒáƒ¥áƒ¢áƒ˜áƒ áƒ”ბის შესáƒáƒ«áƒšáƒ”ბლáƒáƒ‘áƒ." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "შეიყვáƒáƒœáƒ”თ მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის სáƒáƒ®áƒ”ლი დრპáƒáƒ áƒáƒšáƒ˜" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"შეიყვáƒáƒœáƒ”თ áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ áƒáƒšáƒ˜ მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლისáƒáƒ—ვის %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "პáƒáƒ áƒáƒšáƒ˜" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "პáƒáƒ áƒáƒšáƒ˜ (გáƒáƒœáƒ›áƒ”áƒáƒ áƒ”ბით)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "შეიყვáƒáƒœáƒ”თ იგივე პáƒáƒ áƒáƒšáƒ˜, დáƒáƒ›áƒáƒ¬áƒ›áƒ”ბისáƒáƒ—ვის." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "კიდევ ერთი %(verbose_name)s-ის დáƒáƒ›áƒáƒ¢áƒ”ბáƒ" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "წáƒáƒ¨áƒšáƒ" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "წáƒáƒ•áƒ¨áƒáƒšáƒáƒ—?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "გმáƒáƒ“ლáƒáƒ‘თ, რáƒáƒ› დღეს áƒáƒ› სáƒáƒ˜áƒ¢áƒ—áƒáƒœ მუშáƒáƒáƒ‘áƒáƒ¡ დáƒáƒ£áƒ—მეთ დრáƒ." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "ხელáƒáƒ®áƒšáƒ შესვლáƒ" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "პáƒáƒ áƒáƒšáƒ˜áƒ¡ შეცვლáƒ" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "პáƒáƒ áƒáƒšáƒ˜ წáƒáƒ áƒ›áƒáƒ¢áƒ”ბით შეიცვáƒáƒšáƒ" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "თქვენი პáƒáƒ áƒáƒšáƒ˜ შეიცვáƒáƒšáƒ." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"გთხáƒáƒ•áƒ—, უსáƒáƒ¤áƒ áƒ—ხáƒáƒ”ბის დáƒáƒªáƒ•áƒ˜áƒ¡ მიზნით, შეიყვáƒáƒœáƒáƒ— თქვენი ძველი პáƒáƒ áƒáƒšáƒ˜, შემდეგ კი " -"áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ áƒáƒšáƒ˜ áƒáƒ áƒ¯áƒ”რ, რáƒáƒ—რდáƒáƒ áƒ¬áƒ›áƒ£áƒœáƒ“ეთ, რáƒáƒ› იგი შეყვáƒáƒœáƒ˜áƒšáƒ˜áƒ სწáƒáƒ áƒáƒ“." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "ძველი პáƒáƒ áƒáƒšáƒ˜" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ áƒáƒšáƒ˜" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "შევცვáƒáƒšáƒáƒ— ჩემი პáƒáƒ áƒáƒšáƒ˜" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "პáƒáƒ áƒáƒšáƒ˜áƒ¡ áƒáƒ¦áƒ“გენáƒ" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "პáƒáƒ áƒáƒšáƒ˜áƒ¡ áƒáƒ¦áƒ“გენრდáƒáƒ¡áƒ áƒ£áƒšáƒ”ბულიáƒ" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" -"თქვენი პáƒáƒ áƒáƒšáƒ˜ დáƒáƒ§áƒ”ნებულიáƒ. áƒáƒ®áƒšáƒ შეგიძლიáƒáƒ— გáƒáƒ“áƒáƒ®áƒ•áƒ˜áƒ“ეთ შემდეგ გვერდზე დრ" -"შეხვიდეთ სისტემáƒáƒ¨áƒ˜." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "პáƒáƒ áƒáƒšáƒ˜ შეცვლის დáƒáƒ›áƒáƒ¬áƒ›áƒ”ბáƒ" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "შეიყვáƒáƒœáƒ”თ áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ áƒáƒšáƒ˜:" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"გთხáƒáƒ•áƒ—, შეიყვáƒáƒœáƒ”თ თქვენი áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ áƒáƒšáƒ˜ áƒáƒ áƒ¯áƒ”რ, რáƒáƒ—რდáƒáƒ•áƒ áƒ¬áƒ›áƒ£áƒœáƒ“ეთ, რáƒáƒ› იგი " -"სწáƒáƒ áƒáƒ“ ჩáƒáƒ‘ეჭდეთ." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ áƒáƒšáƒ˜:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "პáƒáƒ áƒáƒšáƒ˜áƒ¡ დáƒáƒ›áƒáƒ¬áƒ›áƒ”ბáƒ:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "პáƒáƒ áƒáƒšáƒ˜áƒ¡ áƒáƒ¦áƒ“გენრწáƒáƒ áƒ£áƒ›áƒáƒ¢áƒ”ბლáƒáƒ“ დáƒáƒ¡áƒ áƒ£áƒšáƒ“áƒ" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"პáƒáƒ áƒáƒšáƒ˜áƒ¡ áƒáƒ¦áƒ“გენის ბმული áƒáƒ áƒáƒ¡áƒ¬áƒáƒ áƒ˜ იყáƒ, შესáƒáƒ«áƒšáƒáƒ იმის გáƒáƒ›áƒ, რáƒáƒ› იგი უკვე ყáƒáƒ¤áƒ˜áƒšáƒ " -"გáƒáƒ›áƒáƒ§áƒ”ნებული. გთხáƒáƒ•áƒ—, კიდევ ერთხელ სცáƒáƒ“áƒáƒ— პáƒáƒ áƒáƒšáƒ˜áƒ¡ áƒáƒ¦áƒ“გენáƒ." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "პáƒáƒ áƒáƒšáƒ˜áƒ¡ áƒáƒ¦áƒ“გენრწáƒáƒ áƒ›áƒáƒ¢áƒ”ბით დáƒáƒ¡áƒ áƒ£áƒšáƒ“áƒ" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"თქვენს მიერ მითითებულ სáƒáƒ¤áƒáƒ¡áƒ¢áƒ ყუთზე გáƒáƒ›áƒáƒ’იგზáƒáƒ•áƒœáƒ”თ ინსტრუქციები, თუ რáƒáƒ’áƒáƒ  " -"უნდრდáƒáƒáƒ§áƒ”ნáƒáƒ— თქვენი პáƒáƒ áƒáƒšáƒ˜. წერილი მáƒáƒšáƒ” უნდრმიიღáƒáƒ—." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "გთხáƒáƒ•áƒ—, გáƒáƒ“áƒáƒ®áƒ•áƒ˜áƒ“ეთ შემდეგ გვერდზე დრáƒáƒ˜áƒ áƒ©áƒ˜áƒáƒ— áƒáƒ®áƒáƒšáƒ˜ პáƒáƒ áƒáƒšáƒ˜:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "თქვენი მáƒáƒ›áƒ®áƒ›áƒáƒ áƒ”ბლის სáƒáƒ®áƒ”ლი (თუ დáƒáƒ’áƒáƒ•áƒ˜áƒ¬áƒ§áƒ“áƒáƒ—):" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "გმáƒáƒ“ლáƒáƒ‘თ, რáƒáƒ› იყენებთ ჩვენს სáƒáƒ˜áƒ¢áƒ¡!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s სáƒáƒ˜áƒ¢áƒ˜áƒ¡ გუნდი" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"დáƒáƒ’áƒáƒ•áƒ˜áƒ¬áƒ§áƒ“áƒáƒ— პáƒáƒ áƒáƒšáƒ˜? შეიყვáƒáƒœáƒ”თ თქვენი ელექტრáƒáƒœáƒ£áƒšáƒ˜ ფáƒáƒ¡áƒ¢áƒ˜áƒ¡ მისáƒáƒ›áƒáƒ áƒ—ი áƒáƒ› ველში, " -"ჩვენ გáƒáƒ›áƒáƒ’იგზáƒáƒ•áƒœáƒ˜áƒ— ინსტრუქციებს, რáƒáƒ’áƒáƒ  დáƒáƒáƒ§áƒ”ნáƒáƒ— áƒáƒ®áƒáƒšáƒ˜." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "ელ. ფáƒáƒ¡áƒ¢áƒ:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "áƒáƒ¦áƒ•áƒáƒ“გინáƒáƒ— ჩემი პáƒáƒ áƒáƒšáƒ˜" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "ყველრთáƒáƒ áƒ˜áƒ¦áƒ˜" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "áƒáƒ•áƒ˜áƒ áƒ©áƒ˜áƒáƒ— %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ %s შესáƒáƒªáƒ•áƒšáƒ”ლáƒáƒ“" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo deleted file mode 100644 index e49266972..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po deleted file mode 100644 index c672dfed7..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ka/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,152 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Georgian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "მისáƒáƒ¬áƒ•áƒ“áƒáƒ›áƒ˜ %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "áƒáƒ•áƒ˜áƒ áƒ©áƒ˜áƒáƒ— ყველáƒ" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "დáƒáƒ•áƒáƒ›áƒáƒ¢áƒáƒ—" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "წáƒáƒ•áƒ¨áƒáƒšáƒáƒ—" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "áƒáƒ áƒ©áƒ”ული %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "áƒáƒ˜áƒ áƒ©áƒ˜áƒ”თ დრდáƒáƒáƒ¬áƒ™áƒáƒžáƒ”თ " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "გáƒáƒ•áƒáƒ¡áƒ£áƒ¤áƒ—áƒáƒ•áƒáƒ— ყველáƒ" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(cnt)s-დáƒáƒœ áƒáƒ áƒ©áƒ”ულირ%(sel)s" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"ცáƒáƒšáƒ™áƒ”ულ ველებში შეუნáƒáƒ®áƒáƒ•áƒ˜ ცვლილებები გáƒáƒ¥áƒ•áƒ—! თუ მáƒáƒ¥áƒ›áƒ”დებáƒáƒ¡ შეáƒáƒ¡áƒ áƒ£áƒšáƒ”ბთ, " -"შეუნáƒáƒ®áƒáƒ•áƒ˜ ცვლილებები დáƒáƒ˜áƒ™áƒáƒ áƒáƒ’ებáƒ." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"áƒáƒ’ირჩევიáƒáƒ— მáƒáƒ¥áƒ›áƒ”დებáƒ, მáƒáƒ’რáƒáƒ› ცáƒáƒšáƒ™áƒ”ული ველები ჯერ áƒáƒ  შეგინáƒáƒ®áƒ˜áƒáƒ—! გთხáƒáƒ•áƒ—, " -"შენáƒáƒ®áƒ•áƒ˜áƒ¡áƒ—ვის დáƒáƒáƒ­áƒ˜áƒ áƒáƒ— OK. მáƒáƒ¥áƒ›áƒ”დების ხელáƒáƒ®áƒšáƒ გáƒáƒ¨áƒ•áƒ”ბრმáƒáƒ’იწევთ." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"áƒáƒ’ირჩევიáƒáƒ— მáƒáƒ¥áƒ›áƒ”დებáƒ, მáƒáƒ’რáƒáƒ› ცáƒáƒšáƒ™áƒ”ულ ველებში ცვლილებები áƒáƒ  გáƒáƒ’იკეთებიáƒáƒ—! " -"სáƒáƒ•áƒáƒ áƒáƒ£áƒ“áƒáƒ“, ეძებთ ღილáƒáƒ™áƒ¡ \"Go\", დრáƒáƒ áƒ \"შენáƒáƒ®áƒ•áƒ\"" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"იáƒáƒœáƒ•áƒáƒ áƒ˜ თებერვáƒáƒšáƒ˜ მáƒáƒ áƒ¢áƒ˜ áƒáƒžáƒ áƒ˜áƒšáƒ˜ მáƒáƒ˜áƒ¡áƒ˜ ივნისი ივლისი áƒáƒ’ვისტრსექტემბერი " -"áƒáƒ¥áƒ¢áƒáƒ›áƒ‘ერი ნáƒáƒ”მბერი დეკემბერი" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "კ რს რხ პ შ" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "ვáƒáƒ©áƒ•áƒ”ნáƒáƒ—" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "დáƒáƒ•áƒ›áƒáƒšáƒáƒ—" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "კვირრáƒáƒ áƒ¨áƒáƒ‘áƒáƒ—ი სáƒáƒ›áƒ¨áƒáƒ‘áƒáƒ—ი áƒáƒ—ხშáƒáƒ‘áƒáƒ—ი ხუთშáƒáƒ‘áƒáƒ—ი პáƒáƒ áƒáƒ¡áƒ™áƒ”ვი შáƒáƒ‘áƒáƒ—ი" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "áƒáƒ®áƒšáƒ" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "სáƒáƒáƒ—ი" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "áƒáƒ•áƒ˜áƒ áƒ©áƒ˜áƒáƒ— დრáƒ" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "შუáƒáƒ¦áƒáƒ›áƒ”" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "დილის 6 სთ" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "შუáƒáƒ“ღე" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "უáƒáƒ áƒ˜" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "დღეს" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "კáƒáƒšáƒ”ნდáƒáƒ áƒ˜" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "გუშინ" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "ხვáƒáƒš" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.mo deleted file mode 100644 index 8b823b2f6..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.po deleted file mode 100644 index 36f8d5f40..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/django.po +++ /dev/null @@ -1,775 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: km\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "ážáž¾áž›áŸ„កអ្នកប្រាកដទáŸ?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                              By %s:

                                                                                                                              \n" -"
                                                                                                                                \n" -msgstr "" -"

                                                                                                                                ដោយ %s:

                                                                                                                                \n" -"
                                                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "ទាំងអស់" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "យល់ព្រម" - -#: filterspecs.py:139 -msgid "No" -msgstr "មិនយល់ព្រម" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "មិន​ដឹង" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "កាល​បរិច្ឆáŸáž‘ណាមួយ" - -#: filterspecs.py:197 -msgid "Today" -msgstr "ážáŸ’ងៃនáŸáŸ‡" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "៧​ážáŸ’ងៃ​កន្លង​មក" - -#: filterspecs.py:203 -msgid "This month" -msgstr "ážáŸ‚​នáŸáŸ‡" - -#: filterspecs.py:205 -msgid "This year" -msgstr "ឆ្នាំ​នáŸáŸ‡" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "សូមបំពáŸáž‰Â ážˆáŸ’មោះសមាជិក និង ពាក្យសំងាážáŸ‹Â áŸ” " - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "អ៊ីមែលរបស់លោកអ្នក មិនអាចធ្វើជា ឈ្មោះសមាជិកបានទáŸÂ áŸ” សូមសាកល្បងជាមួយ '%s'។" - -#: helpers.py:19 -msgid "Action:" -msgstr "" - -#: models.py:19 -msgid "action time" -msgstr "áž–áŸáž›ážœáŸáž›áž¶áž”្រážáž·áž”ážáŸ’ážáž·áž€áž¶ážš" - -#: models.py:22 -msgid "object id" -msgstr "áž›áŸážâ€‹ážŸáŸ†áž‚ាល់​កម្មវិធី (object id)" - -#: models.py:23 -msgid "object repr" -msgstr "object repr" - -#: models.py:24 -msgid "action flag" -msgstr "សកម្មភាព" - -#: models.py:25 -msgid "change message" -msgstr "ផ្លាស់ប្ážáž¼ážš" - -#: models.py:28 -msgid "log entry" -msgstr "កំណážáŸ‹áž áŸážáž»" - -#: models.py:29 -msgid "log entries" -msgstr "កំណážáŸ‹áž áŸážáž»" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "បានផ្លាស់ប្ážáž¼ážšÂ %s" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "áž“áž·áž„" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:645 -msgid "No fields changed." -msgstr "ពុំមានទិន្ននáŸáž™ážáŸ’រូវបានផ្លាស់ប្ážáž¼ážšáŸ”" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "ឈ្មោះកម្មវិធី %(name)s \"%(obj)s\" បានបញ្ជូលដោយជោគជáŸáž™â€‹áŸ”" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "សូមសាកល្បងកែប្រែម្ážáž„ទៀážáŸ”" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "លោកអ្នកអាចបន្ážáŸ‚ម  %s ផ្សáŸáž„ទៀážážŠáž¼áž…ážáž¶áž„ក្រោម។" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "កម្មវិធីឈ្មោះ %(name)s \"%(obj)s\" ážáŸ’រូវបានផ្លាស់ប្ážáž¼ážšážŠáŸ„យជោគជáŸáž™áŸ”" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"ឈ្មោះកម្មវីធី %(name)s \"%(obj)s\" " -"ážáŸ’រូវបានបន្ážáŸ‚មដោយជោគជáŸáž™áŸ” លោកអ្នកអាចផ្លាស់ប្ážáž¼ážšáž˜áŸ’ážáž„ទៀážáž“ៅážáž¶áž„ក្រោម។" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "បន្ážáŸ‚ម %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "ផ្លាស់ប្ážáž¼ážšÂ %s" - -#: options.py:1065 -msgid "Database error" -msgstr "ទិន្ននáŸáž™áž˜áž¼áž›ážŠáŸ’ឋានមានបញ្ហា" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "ឈ្មោះកម្មវិធី %(name)s \"%(obj)s\" ážáŸ’រូវបានលប់ដោយជោគជáŸáž™áŸ”" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "សកម្មភាពផ្លាស់ប្ážáž¼ážšáž€áž“្លងមក : %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "áž–áž·áž“áž·ážáŸ’យចូល" - -#: sites.py:375 -msgid "Site administration" -msgstr "ទំពáŸážšáž‚្រប់គ្រង" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "" - -#: widgets.py:75 -msgid "Date:" -msgstr "កាលបរិច្ឆáŸáž‘" - -#: widgets.py:75 -msgid "Time:" -msgstr "ម៉ោង" - -#: widgets.py:140 -msgid "Lookup" -msgstr "" - -#: widgets.py:246 -msgid "Add Another" -msgstr "" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "ទំពáŸážšâ€‹ážŠáŸ‚ល​លោកអ្នកចង់​រក​នáŸáŸ‡áž–ុំមាន​នៅក្នុងម៉ាស៊ីនរបស់យើងážáŸ’ញុំទáŸ" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "សួមអភáŸáž™áž‘ោស ទំពáŸážšâ€‹ážŠáŸ‚ល​លោកអ្នកចង់​រក​នáŸáŸ‡áž–ុំមាន​នឹងក្នុងម៉ាស៊ីនរបស់យើងážáŸ’ញុំទáŸ" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "áž‚áŸáž áž‘ំពáŸážš" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "ម៉ាស៊ីនផ្ážáž›áŸ‹ážŸáŸážœáž¶áž€áž˜áŸ’ម​ មានបញ្ហា" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "ម៉ាស៊ីនផ្ážáž›áŸ‹ážŸáŸážœáž¶áž€áž˜áŸ’ម​ មានបញ្ហា (៥០០)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "ម៉ាស៊ីនផ្ážáž›áŸ‹ážŸáŸážœáž¶áž€áž˜áŸ’ម​ មានបញ្ហា  (៥០០)" - -#: 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 "មានកំហុស។ កំហុសនáŸáŸ‡ážáŸ’រូវបានបញ្ជូនទៅកាន់អ្នកគ្រប់គ្រងគáŸáž áž‘ំពáŸážšáž“áŸáŸ‡ážšáž½áž…ហើយ។ សូមអភáŸáž™áž‘ោសចំពោះបញ្ហានáŸáŸ‡áŸ”" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "ស្វែងរក" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "សូមស្វាគមនáŸ" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "ឯកសារ" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "ផ្លាស់ប្ážáž¼ážšáž–ាក្យសំងាážáŸ‹" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "ចាកចáŸáž‰" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "ទំពáŸážšáž‚្រប់គ្រងរបស់ Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "ការ​គ្រប់គ្រង​របស់ ​Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "បន្ážáŸ‚ម" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "សកម្មភាព​កន្លង​មក" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "មើលនៅលើគáŸáž áž‘ំពáŸážšážŠáŸ„យផ្ទាល់" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "បន្ážáŸ‚ម %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "ស្វែងរកជាមួយ" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "លប់" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"ការលប់ %(object_name)s '%(escaped_object)s' អាចធ្វើអោយ​កម្មវិធីដែលពាក់​" -"áž–áŸáž“្ធបាážáŸ‹áž”ង់ ។ កáŸáž”៉ន្ážáŸ‚លោកអ្នក​ពុំមាន​សិទ្ធិលប់​កម្មវិធី​ប្រភáŸáž‘áž“áŸáŸ‡áž‘áŸáŸ”" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"ážáž¾áž›áŸ„កអ្នកប្រាកដជាចង់លប់ %(object_name)s \"%(escaped_object)s\"? ការលប់ %" -"(object_name)s '%(escaped_object)s' អាចធ្វើអោយ​កម្មវិធីដែលពាក់​ពáŸáž“្ធបាážáŸ‹áž”ង់។" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "ážáŸ’ញុំច្បាស់​ជាចង់លប់" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "ដោយ​  %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "ម៉ូដែល (Models) មាននៅក្នុងកម្មវិធី %(name)s ។" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "ផ្លាស់ប្ážáž¼ážš" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "លោកអ្នកពុំមានសិទ្ធិ ផ្លាស់​ប្ážáž¼ážšÂ áž‘áŸáŸ”" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "សកម្មភាពបច្ចុប្បន្ន" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "សកម្មភាពរបស់ážáŸ’ញុំ" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "គ្មាន" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"មូលដ្ឋាន​ទិន្ននáŸáž™â€‹â€‹â€‹Â ážšáž”ស់លោកអ្នក មានបញ្ហា។ ážáž¾Â áž›áŸ„កអ្នកបាន បង្កើážÂ ážáž¶ážšáž¶áž„​ របស់មូលដ្ឋានទិន្ននáŸáž™â€‹" -" ហើយឬនៅ? ážáž¾â€‹Â áž›áŸ„កអ្នកប្រាកដážáž¶ážŸáž˜áž¶áž‡áž·áž€áž¢áž¶áž…អានមូលដ្ឋានទិន្ននáŸáž™áž“áŸáŸ‡â€‹â€‹áž”ានឬទáŸ? " - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "ឈ្មោះសមាជិក" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "ពាក្យ​សំងាážáŸ‹" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Date/time" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "សមាជិក" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "សកម្មភាព" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"កម្មវិធីនáŸáŸ‡áž˜áž·áž“មានសកម្មភាព​កន្លងមកទáŸáŸ” ប្រហែលជាសកម្មភាពទាំងនáŸáŸ‡áž˜áž·áž“បានធ្វើនៅទំពáŸážšáž‚្រប់គ្រងនáŸáŸ‡áŸ”" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "បង្ហាញទាំងអស់" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "រក្សាទុក" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "សរុបទាំងអស់ %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "រក្សាទុក" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "រក្សាទុក ហើយ បន្ážáŸ‚ម​ážáŸ’មី" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "រក្សាទុក ហើយ កែឯកសារដដែល" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"ážáŸ†áž”ូងសូមបំពáŸáž‰Â ážˆáŸ’មោះជាសមាជិក និង ពាក្យសំងាážáŸ‹â€‹áŸ” បន្ទាប់មកលោកអ្នកអាចបំពáŸáž‰áž”ន្ážáŸ‚មជំរើសផ្សáŸáž„ៗទៀážáž”ាន។ " - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "ពាក្យសំងាážáŸ‹" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "ពាក្យសំងាážáŸ‹Â (ម្ážáž„ទៀáž)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "សូមបំពáŸáž‰áž–ាក្យសំងាážáŸ‹ážŠáž¼áž…ážáž¶áž„លើ ដើម្បីážáŸ’ážšáž½ážáž–áž·áž“áž·ážáŸ’យ។ " - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "សូមážáŸ’លែងអំណរគុណ ដែលបានចំណាយ ពáŸáž›ážœáŸáž›áž¶ážŠáŸáž˜áž¶áž“ážáŸ†áž›áŸƒÂ ážšáž”ស់លោកអ្នកមកទស្សនាគáŸáž áž‘ំពáŸážšážšáž”ស់យើងážáŸ’ញុំ" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "áž–áž·áž“áž·ážáŸ’យចូលម្ážáž„ទៀáž" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "ផ្លាស់ប្ážáž¼ážšáž–ាក្យសំងាážáŸ‹" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "ពាក្យសំងាážáŸ‹áž”ានផ្លាស់ប្ážáž¼ážšážŠáŸ„យជោគជáŸáž™" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "ពាក្យសំងាážáŸ‹ážšáž”ស់លោកអ្នកបានផ្លាស់ប្ážáž¼ážšáž áž¾áž™" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "សូមបំពáŸáž‰áž–ាក្យសំងាážáŸ‹áž…ាស់របស់លោកអ្នក។ ដើម្បីសុវážáŸ’ážáž—ាព សូមបំពáŸáž‰áž–ាក្យសំងាážáŸ‹ážáŸ’មីážáž¶áž„ក្រោមពីរដង។" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "ផ្លាស់ប្ážáž¼ážšáž–ាក្យសំងាážáŸ‹" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "ពាក្យសំងាážáŸ‹áž”ានកំណážáŸ‹ážŸáž¶ážšáž‡áž¶ážáŸ’មី" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "ពាក្យសំងាážáŸ‹ážáŸ’មី" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "បំពáŸáž‰áž–ាក្យសំងាážáŸ‹ážáŸ’មីម្ážáž„ទៀáž" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "ពាក្យសំងាážáŸ‹áž”ានផ្លាស់ប្ážáž¼ážšážŠáŸ„យជោគជáŸáž™" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "ឈ្មោះជាសមាជិកក្នុងករណីភ្លáŸáž…:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "សូមអរគុណដែលបានប្រើប្រាស់សáŸážœáž¶áž€áž˜áŸ’មរបស់យើងážáŸ’ញុំ" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "ក្រុមរបស់គáŸáž áž‘ំពáŸážšÂ %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "អ៊ីមែល" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "កំណážáŸ‹áž–ាក្យសំងាážáŸ‹ážŸáž¶ážšáž‡áž¶ážáŸ’មី" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "កាលបរិច្ឆáŸáž‘ទាំងអស់" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "ជ្រើសរើស %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "ជ្រើសរើស %s ដើម្បីផ្លាស់ប្ážáž¼ážš" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 1525c0729..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po deleted file mode 100644 index da67ce614..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/km/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,146 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: km\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s ដែលអាច​ជ្រើសរើសបាន" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "ជ្រើសរើសទាំងអស់" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "បន្ážáŸ‚ម" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "លប់ចáŸáž‰" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s ដែលបានជ្រើសរើស" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "សូមជ្រើសរើសយក" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "លប់ចáŸáž‰áž‘ាំងអស់" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"January February March April May June July August September October November " -"December" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M T W T F S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "ឥឡូវនáŸáŸ‡" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "នាឡិការ" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "ជ្រើសរើសម៉ោង" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "អធ្រាážáŸ’ážš" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "ម៉ោង ៦ ព្រឹក" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "áž–áŸáž›ážáŸ’ងែážáŸ’រង់" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "លប់ចោល" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "ážáŸ’ងៃនáŸáŸ‡" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "ប្រក្រážáž·áž‘áž·áž“" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "ម្សិលមិញ" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "ážáŸ’ងៃស្អែក" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo deleted file mode 100644 index 7fb75c48c..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.po deleted file mode 100644 index 0225cbec6..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/django.po +++ /dev/null @@ -1,781 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Kannada \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kn\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "ಖಚಿತಪಡಿಸà³à²µà²¿à²°à²¾? " - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                  By %s:

                                                                                                                                  \n" -"
                                                                                                                                    \n" -msgstr "" -"

                                                                                                                                    %s ಇಂದ :

                                                                                                                                    \n" -"
                                                                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "ಎಲà³à²²à²¾" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "ಹೌದà³" - -#: filterspecs.py:139 -msgid "No" -msgstr "ಇಲà³à²²" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "ಗೊತà³à²¤à²¿à²²à³à²²(ದ/ದà³à²¦à³)" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "ಯಾವà³à²¦à³‡ ದಿನಾಂಕ" - -#: filterspecs.py:197 -msgid "Today" -msgstr "ಈದಿನ" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "ಕಳೆದ à³­ ದಿನಗಳà³" - -#: filterspecs.py:203 -msgid "This month" -msgstr "ಈ ತಿಂಗಳà³" - -#: filterspecs.py:205 -msgid "This year" -msgstr "ಈ ವರà³à²·" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"ದಯವಿಟà³à²Ÿà³ ಸರಿಯಾದ ಬಳಕೆದಾರ-ಪದ ಮತà³à²¤à³ ಪà³à²°à²µà³‡à²¶à²ªà²¦ ಬರೆಯಿರಿ .ಎರಡೂ ಇಂಗà³à²²à³€à²·à²¿à²¨ ಸಣà³à²£ ಮತà³à²¤à³ " -"ದೊಡà³à²¡ ಅಕà³à²·à²° ಸಂವೇದಿ ಎಂಬà³à²¦à²¨à³à²¨à³ ಗಮನದಲà³à²²à²¿à²¡à²¿" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "ನಿಮà³à²® ವಿ-ಅಂಚೆ ವಿಳಾಸವೠನಿಮà³à²® ಬಳಕೆದಾರ-ಹೆಸರಲà³à²²; ಬದಲಾಗಿ '%s' ಪà³à²°à²¯à²¤à³à²¨à²¿à²¸à²¿." - -#: helpers.py:19 -msgid "Action:" -msgstr "" - -#: models.py:19 -msgid "action time" -msgstr "ಕà³à²°à²®à²¦(ಕà³à²°à²¿à²¯à³†à²¯) ಸಮಯ" - -#: models.py:22 -msgid "object id" -msgstr "ವಸà³à²¤à³à²µà²¿à²¨ à²à²¡à²¿" - -#: models.py:23 -msgid "object repr" -msgstr "ವಸà³à²¤à³ ಪà³à²°à²¾à²¤à²¿à²¨à²¿à²§à³à²¯" - -#: models.py:24 -msgid "action flag" -msgstr "ಕà³à²°à²®à²¦(ಕà³à²°à²¿à²¯à³†à²¯) ಪತಾಕೆ" - -#: models.py:25 -msgid "change message" -msgstr "ಬದಲಾವಣೆಯ ಸಂದೇಶ/ಸಂದೇಶ ಬದಲಿಸಿ" - -#: models.py:28 -msgid "log entry" -msgstr "ಲಾಗೠದಾಖಲೆ" - -#: models.py:29 -msgid "log entries" -msgstr "ಲಾಗೠದಾಖಲೆಗಳà³" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s ಬದಲಾಯಿಸಲಾಯಿತà³." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ಮತà³à²¤à³" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:645 -msgid "No fields changed." -msgstr "ಯಾವà³à²¦à³‡ ಅಂಶಗಳೠಬದಲಾಗಲಿಲà³à²²." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr " %(name)s \"%(obj)s\" ಅನà³à²¨à³ ಯಶಸà³à²µà²¿à²¯à²¾à²—ಿ ಸೇರಿಸಲಾಯಿತà³." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "ನೀವೠಅದನà³à²¨à³ ಕೆಳಗೆ ಮತà³à²¤à³† ಬದಲಾಯಿಸಬಹà³à²¦à³." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "ನೀವೠಕೆಳಗೆ ಇನà³à²¨à³Šà²‚ದೠ%s ಸೇರಿಸಬಹà³à²¦à³." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" ಸಫಲವಾಗಿ ಬದಲಾಯಿಸಲಾಯಿತà³." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" ಅನà³à²¨à³ ಯಶಸà³à²µà²¿à²¯à²¾à²—ಿ ಸೇರಿಸಲಾಯಿತà³. ನೀವೠಕೆಳಗೆ ಅದನà³à²¨à³ ಮತà³à²¤à³† " -"ಬದಲಾಯಿಸಬಹà³à²¦à³." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s ಸೇರಿಸಿ" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s ಅನà³à²¨à³ ಬದಲಿಸà³" - -#: options.py:1065 -msgid "Database error" -msgstr "ದತà³à²¤à²¸à²‚ಚಯದ ದೋಷ" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" ಯಶಸà³à²µà²¿à²¯à²¾à²—ಿ ಅಳಿಸಲಾಯಿತà³." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ಬದಲಾವಣೆಗಳ ಇತಿಹಾಸ: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "ಒಳಗೆ ಬನà³à²¨à²¿" - -#: sites.py:375 -msgid "Site administration" -msgstr "ತಾಣ ನಿರà³à²µà²¹à²£à³†" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "" - -#: widgets.py:75 -msgid "Date:" -msgstr "ದಿನಾಂಕ:" - -#: widgets.py:75 -msgid "Time:" -msgstr "ಸಮಯ:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "" - -#: widgets.py:246 -msgid "Add Another" -msgstr "" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "ಪà³à²Ÿ ಸಿಗಲಿಲà³à²²" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "ಕà³à²·à²®à²¿à²¸à²¿, ನೀವೠಕೇಳಿದ ಪà³à²Ÿ ಸಿಗಲಿಲà³à²²" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "ಪà³à²°à²¾à²°à²‚ಭಸà³à²¥à²³(ಮನೆ)" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "ಸರà³à²µà²°à³ ದೋಷ" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "ಸರà³à²µà²°à³ ದೋಷ(೫೦೦)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "ಸರà³à²µà²°à³ ದೋಷ(೫೦೦)" - -#: 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 "" -"ಇಲà³à²²à²¿ ಒಂದೠತಪà³à²ªà²¾à²—ಿದೆ. ಅದನà³à²¨à³ ತಾಣದ ಆಡಳಿತಗಾರರಿಗೆ ವರದಿ ಮಾಡಲಾಗಿದà³à²¦à³ ಶೀಘà³à²°à²¦à³à²¦à²²à³à²²à²¿ " -"ಸರಿಪಡಿಸಲಾಗà³à²µà²¦à³. ನಿಮà³à²® ತಾಳà³à²®à³†à²—ೆ ಧನà³à²¯à²µà²¾à²¦à²—ಳà³." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "ಹೋಗಿ" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "ಸà³à²¸à³à²µà²¾à²—ತ." - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "ವಿವರಮಾಹಿತಿ" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "ಪà³à²°à²µà³‡à²¶à²ªà²¦ ಬದಲಿಸಿ" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "ಹೊರಕà³à²•à³† ಹೋಗಿ" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "ಜಾಂಗೋ ತಾಣದ ಆಡಳಿತಗಾರರà³" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "ಜಾಂಗೋ ಆಡಳಿತ" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "ಸೇರಿಸಿ" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ಚರಿತà³à²°à³†" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "ತಾಣದಲà³à²²à²¿ ನೋಡಿ" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s ಸೇರಿಸಿ" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "ಸೋಸಕ" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "ಅಳಿಸಿಹಾಕಿ" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"'%(escaped_object)s' %(object_name)s ಅನà³à²¨à³ ತೆಗೆದà³à²¹à²¾à²•à³à²µà³à²¦à²°à²¿à²‚ದ ಸಂಬಂಧಿತ ವಸà³à²¤à³à²—ಳೂ " -"ಕಳೆದà³à²¹à³‹à²—à³à²¤à³à²¤à²µà³†. ಆದರೆ ನಿಮà³à²® ಖಾತೆಗೆ ಕೆಳಕಂಡ ಬಗೆಗಳ ವಸà³à²¤à³à²—ಳನà³à²¨à³ ತೆಗೆದà³à²¹à²¾à²•à²²à³ " -"ಅನà³à²®à²¤à²¿à²¯à²¿à²²à³à²²." - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "ಹೌದà³,ನನಗೆ ಖಚಿತವಿದೆ" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "%(filter_title)s ಇಂದ" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s ಅನà³à²µà²¯à²¾à²‚ಶದಲà³à²²à²¿ ಮಾಡೆಲà³à²²à³à²—ಳೠಲಭà³à²¯." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "ಬದಲಿಸಿ/ಬದಲಾವಣೆ" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "ಯಾವà³à²¦à²¨à³à²¨à³‚ ತಿದà³à²¦à²²à³ ನಿಮಗೆ ಅನà³à²®à²¤à²¿ ಇಲà³à²² ." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "ಇತà³à²¤à³€à²šà²¿à²¨ ಕà³à²°à²®à²—ಳà³" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "ನನà³à²¨ ಕà³à²°à²®à²—ಳà³" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "ಯಾವà³à²¦à³‚ ಲಭà³à²¯à²µà²¿à²²à³à²²" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"ಡಾಟಾಬೇಸನà³à²¨à³ ಇನà³à²¸à³à²Ÿà²¾à²²à³ ಮಾಡà³à²µà²¾à²— à²à²¨à³‹ ತಪà³à²ªà²¾à²—ಿದೆ. ಸೂಕà³à²¤ ಡಾಟಾಬೇಸೠಕೋಷà³à²Ÿà²•à²—ಳೠರಚನೆಯಾಗಿ ಅರà³à²¹ " -"ಬಳಕೆದಾರರೠಅವà³à²—ಳನà³à²¨à³ ಓದಬಹà³à²¦à²¾à²—ಿದೆಯೇ ಎಂಬà³à²¦à²¨à³à²¨à³ ಖಾತರಿ ಪಡಿಸಿಕೊಳà³à²³à²¿." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "ಬಳಕೆದಾರನ ಹೆಸರà³:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "ಪà³à²°à²µà³‡à²¶à²ªà²¦:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "ದಿನಾಂಕ/ಸಮಯ" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "ಬಳಕೆದಾರ" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "ಕà³à²°à²®(ಕà³à²°à²¿à²¯à³†)" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"ಈ ವಸà³à²¤à³à²µà²¿à²—ೆ ಬದಲಾವಣೆಯ ಇತಿಹಾಸವಿಲà³à²². ಅದೠಬಹà³à²¶à²ƒ ಈ ಆಡಳಿತತಾಣದ ಮೂಲಕ ಸೇರಿಸಲà³à²ªà²Ÿà³à²Ÿà²¿à²²à³à²²." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "ಎಲà³à²²à²µà²¨à³à²¨à³‚ ತೋರಿಸà³" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "ಉಳಿಸಿ" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "ಒಟà³à²Ÿà³ %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "ಹೊಸದರಂತೆ ಉಳಿಸಿ" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "ಉಳಿಸಿ ಮತà³à²¤à³ ಇನà³à²¨à³Šà²‚ದನà³à²¨à³ ಸೇರಿಸಿ" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "ಉಳಿಸಿ ಮತà³à²¤à³ ತಿದà³à²¦à³à²µà³à²¦à²¨à³à²¨à³ ಮà³à²‚ದà³à²µà²°à²¿à²¸à²¿à²°à²¿." - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"ಮೊದಲೠಬಳಕೆದಾರ-ಹೆಸರೠಮತà³à²¤à³ ಪà³à²°à²µà³‡à²¶à²ªà²¦à²µà²¨à³à²¨à³ ಕೊಡಿರಿ. ನಂತರ, ನೀವೠಇನà³à²¨à²·à³à²Ÿà³ ಆಯà³à²•à³†à²—ಳನà³à²¨à³ " -"ಬದಲಿಸಬಹà³à²¦à²¾à²—ಿದೆ." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "ಪà³à²°à²µà³‡à²¶à²ªà²¦" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "ಪà³à²°à²µà³‡à²¶à²ªà²¦(ಇನà³à²¨à³Šà²®à³à²®à³†)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "ಖಚಿತಗೊಳಿಸಲೠಮೇಲಿನ ಪà³à²°à²µà³‡à²¶à²ªà²¦à²µà²¨à³à²¨à³ ಇನà³à²¨à³Šà²®à³à²®à³† ಬರೆಯಿರಿ." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "ಈದಿನ ತಮà³à²® ಅತà³à²¯à²®à³‚ಲà³à²¯à²µà²¾à²¦ ಸಮಯವನà³à²¨à³ ನಮà³à²® ತಾಣದಲà³à²²à²¿ ಕಳೆದà³à²¦à²•à³à²•à²¾à²—ಿ ಧನà³à²¯à²µà²¾à²¦à²—ಳà³." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "ಮತà³à²¤à³† ಒಳಬನà³à²¨à²¿" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "ಪà³à²°à²µà³‡à²¶à²ªà²¦ ಬದಲಾವಣೆ" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "ಪà³à²°à²µà³‡à²¶à²ªà²¦ ಬದಲಾವಣೆ ಯಶಸà³à²µà²¿" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "ನಿಮà³à²® ಪà³à²°à²µà³‡à²¶à²ªà²¦ ಬದಲಾಯಿಸಲಾಗಿದೆ" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"ಭದà³à²°à²¤à³†à²¯ ದೃಷà³à²Ÿà²¿à²¯à²¿à²‚ದ ದಯವಿಟà³à²Ÿà³ ನಿಮà³à²® ಹಳೆಯ ಪà³à²°à²µà³‡à²¶à²ªà²¦à²µà²¨à³à²¨à³ ಸೂಚಿಸಿರಿ. ಆನಂತರ ನೀವೠಸರಿಯಾಗಿ " -"ಬರೆದಿದà³à²¦à³€à²°à³†à²‚ದೠನಾವೠಖಚಿತಪಡಿಸಿಕೊಳà³à²³à²²à³ ಹೊಸ ಪà³à²°à²µà³‡à²¶à²ªà²¦à²µà²¨à³à²¨à³ ಎರಡೠಬಾರಿ ಬರೆಯಿರಿ." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "ನನà³à²¨ ಪà³à²°à²µà³‡à²¶à²ªà²¦ ಬದಲಿಸಿ" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "ಪà³à²°à²µà³‡à²¶à²ªà²¦à²µà²¨à³à²¨à³ ಬದಲಿಸà³à²µà²¿à²•à³†" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "ಹೊಸ ಪà³à²°à²µà³‡à²¶à²ªà²¦:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "ಪà³à²°à²µà³‡à²¶à²ªà²¦à²µà²¨à³à²¨à³ ಖಚಿತಪಡಿಸಿ:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "ಪà³à²°à²µà³‡à²¶à²ªà²¦à²¦ ಮರà³à²¨à²¿à²°à³à²§à²¾à²° ಸಾಧà³à²¯à²µà²¾à²—ಿದೆ" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "ನೀವೠಮರೆತಿದà³à²¦à²²à³à²²à²¿ , ನಿಮà³à²® ಬಳಕೆದಾರ-ಹೆಸರà³" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "ನಮà³à²® ತಾಣವನà³à²¨à³ ಬಳಸಿದà³à²¦à²•à³à²¦à²¾à²—ಿ ಧನà³à²¯à²µà²¾à²¦à²—ಳà³!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s ತಂಡ" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "ವಿ-ಅಂಚೆ ವಿಳಾಸ:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "ನನà³à²¨ ಪà³à²°à²µà³‡à²¶à²ªà²¦à²µà²¨à³à²¨à³ ಮತà³à²¤à³† ನಿರà³à²§à²°à²¿à²¸à²¿ " - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "ಎಲà³à²²à²¾ ದಿನಾಂಕಗಳà³" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s ಆಯà³à²¦à³à²•à³Šà²³à³à²³à²¿" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "ಬದಲಾಯಿಸಲೠ%s ಆಯà³à²¦à³à²•à³Šà²³à³à²³à²¿" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 541f63977..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po deleted file mode 100644 index 2a1876a0f..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/kn/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,144 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Kannada \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kn\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "ಲಭà³à²¯ %s " - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "ಎಲà³à²²à²µà²¨à³à²¨à³‚ ಆಯà³à²¦à³à²•à³Šà²³à³à²³à²¿" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "ಸೇರಿಸಿ" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "ತೆಗೆದೠಹಾಕಿ" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s ಆಯà³à²¦à³à²•à³Šà²³à³à²³à²²à²¾à²—ಿದೆ" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "ನಿಮà³à²® ಆಯà³à²•à³†(ಗಳ)ನà³à²¨à³ ಆರಿಸಿ ಮತà³à²¤à³ ಕà³à²²à²¿à²•à³à²•à²¿à²¸à²¿" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "ಎಲà³à²²à²µà²¨à³à²¨à³‚ ತೆರವà³à²—ೊಳಿಸಿ" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "ಜನವರಿ ಫೆಬà³à²°à³à²µà²°à²¿ ಮಾರà³à²šà³ ಎಪà³à²°à²¿à²²à³ ಮೇ ಜೂನೠಜà³à²²à³ˆ ಆಗಸà³à²Ÿà³ ಸೆಪà³à²Ÿà³†à²‚ಬರೠನವೆಂಬರೠಡಿಸೆಂಬರà³" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "ರ ಸೋ ಮ ಬೠಗೠಶೠಶ" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ರವಿವಾರ ಸೋಮವಾರ ಮಂಗಳವಾರ ಬà³à²§à²µà²¾à²° ಗà³à²°à³à²µà²¾à²° ಶà³à²•à³à²°à²µà²¾à²° ಶನಿವಾರ" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "ಈಗ" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "ಗಡಿಯಾರ" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "ಸಮಯವೊಂದನà³à²¨à³ ಆರಿಸಿ" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "ಮಧà³à²¯à²°à²¾à²¤à³à²°à²¿" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "ಬೆಳಗಿನ ೬ ಗಂಟೆ " - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "ಮಧà³à²¯à²¾à²¹à³à²¨" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "ರದà³à²¦à³à²—ೊಳಿಸಿ" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "ಈ ದಿನ" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "ಪಂಚಾಂಗ" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "ನಿನà³à²¨à³†" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "ನಾಳೆ" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo deleted file mode 100644 index 2d0c35724..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.po deleted file mode 100644 index 2f6c53e81..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/django.po +++ /dev/null @@ -1,795 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-06 03:24+0000\n" -"Last-Translator: mixe \n" -"Language-Team: Korean \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)dê°œì˜ %(items)s (ì„)를 성공ì ìœ¼ë¡œ 삭제하였습니다." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "%(name)s를 삭제할 수 없습니다." - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "확실합니까?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "ì„ íƒëœ %(verbose_name_plural)s (ì„)를 삭제합니다." - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                      By %s:

                                                                                                                                      \n" -"
                                                                                                                                        \n" -msgstr "" -"

                                                                                                                                        %s(으)로:

                                                                                                                                        \n" -"
                                                                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "모ë‘" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "예" - -#: filterspecs.py:139 -msgid "No" -msgstr "아니오" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "ì•Œ 수 없습니다." - -#: filterspecs.py:196 -msgid "Any date" -msgstr "언제나" - -#: filterspecs.py:197 -msgid "Today" -msgstr "오늘" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "지난 7ì¼" - -#: filterspecs.py:203 -msgid "This month" -msgstr "ì´ë²ˆ 달" - -#: filterspecs.py:205 -msgid "This year" -msgstr "ì´ë²ˆ í•´" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "사용ìžëª…ê³¼ 비밀번호를 입력하세요. (ëŒ€ì†Œë¬¸ìž êµ¬ë³„)" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "ë¡œê·¸ì¸ ì„¸ì…˜ì´ ëŠê²¼ìŠµë‹ˆë‹¤. 다시 ë¡œê·¸ì¸ í•˜ì„¸ìš”." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "ì´ë©”ì¼ ì£¼ì†Œì™€ 사용ìžëª…ì€ ë‹¤ë¦…ë‹ˆë‹¤. '%s'를 사용하세요." - -#: helpers.py:19 -msgid "Action:" -msgstr "ì•¡ì…˜:" - -#: models.py:19 -msgid "action time" -msgstr "ì•¡ì…˜ 타임" - -#: models.py:22 -msgid "object id" -msgstr "오브ì íŠ¸ ì•„ì´ë””" - -#: models.py:23 -msgid "object repr" -msgstr "오브ì íŠ¸ 표현" - -#: models.py:24 -msgid "action flag" -msgstr "ì•¡ì…˜ 플래그" - -#: models.py:25 -msgid "change message" -msgstr "메시지 변경" - -#: models.py:28 -msgid "log entry" -msgstr "로그 엔트리" - -#: models.py:29 -msgid "log entries" -msgstr "로그 엔트리" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "ì—†ìŒ" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s (ì´)ê°€ 변경ë˜ì—ˆìŠµë‹ˆë‹¤." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ë˜í•œ" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" (ì„)를 추가하였습니다." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(list)sì— ëŒ€í•œ %(name)s \"%(object)s\" (ì„)를 변경하였습니다." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" (ì„)를 삭제하였습니다." - -#: options.py:645 -msgid "No fields changed." -msgstr "ë³€ê²½ëœ í•„ë“œê°€ 없습니다." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" (ì´)ê°€ 추가ë˜ì—ˆìŠµë‹ˆë‹¤." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "계ì†í•´ì„œ 편집하실 수 있습니다." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "계ì†í•´ì„œ 다른 %s (ì„)를 추가하세요." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" (ì´)ê°€ 변경ë˜ì—ˆìŠµë‹ˆë‹¤." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" (ì´)ê°€ 추가ë˜ì—ˆìŠµë‹ˆë‹¤. 계ì†í•´ì„œ 편집하세요." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"í•­ëª©ë“¤ì— ì•¡ì…˜ì„ ì ìš©í•˜ê¸° 위해선 먼저 í•­ëª©ë“¤ì´ ì„ íƒë˜ì–´ 있어야 합니다. 아무 í•­" -"ëª©ë„ ë³€ê²½ë˜ì§€ 않았습니다." - -#: options.py:846 -msgid "No action selected." -msgstr "ì•¡ì…˜ì´ ì„ íƒë˜ì§€ 않았습니다." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s 추가" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Primary key %(key)rì— ëŒ€í•œ 오브ì íŠ¸ %(name)s(ì´)ê°€ 존재하지 않습니다." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s 변경" - -#: options.py:1065 -msgid "Database error" -msgstr "ë°ì´í„°ë² ì´ìŠ¤ 오류" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)sê°œì˜ %(name)s(ì´)ê°€ 변경ë˜ì—ˆìŠµë‹ˆë‹¤." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "ëª¨ë‘ %(total_count)s개가 ì„ íƒë˜ì—ˆìŠµë‹ˆë‹¤." - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "%(cnt)s 중 ì•„ë¬´ê²ƒë„ ì„ íƒë˜ì§€ 않았습니다." - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\"(ì´)ê°€ ì‚­ì œë˜ì—ˆìŠµë‹ˆë‹¤." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "변경 히스토리: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "로그ì¸" - -#: sites.py:375 -msgid "Site administration" -msgstr "사ì´íŠ¸ 관리" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s 사ì´íŠ¸ 관리" - -#: widgets.py:75 -msgid "Date:" -msgstr "날짜:" - -#: widgets.py:75 -msgid "Time:" -msgstr "ì‹œê°:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "찾아보기" - -#: widgets.py:246 -msgid "Add Another" -msgstr "하나 ë” ì¶”ê°€í•˜ê¸°" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "해당 페ì´ì§€ê°€ 없습니다." - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "죄송합니다, 요청하신 페ì´ì§€ë¥¼ ì°¾ì„ ìˆ˜ 없습니다." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "홈" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "서버 오류" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "서버 오류 (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "서버 오류 (500)" - -#: 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 "" -"오류가 ë°œìƒí–ˆìŠµë‹ˆë‹¤. 사ì´íŠ¸ 관리ìžì—게 ì´ë©”ì¼ë¡œ ì—러를 ë³´ê³  했습니다. ì¡°ì†ížˆ " -"수정하ë„ë¡ í•˜ê² ìŠµë‹ˆë‹¤. 고맙습니다." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "ì„ íƒí•œ ì•¡ì…˜ì„ ì‹¤í–‰í•©ë‹ˆë‹¤." - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "실행" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "모든 페ì´ì§€ì˜ í•­ëª©ë“¤ì„ ì„ íƒí•˜ë ¤ë©´ 여기를 í´ë¦­í•˜ì„¸ìš”." - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "%(total_count)sê°œì˜ %(module_name)s 모ë‘를 ì„ íƒí•©ë‹ˆë‹¤." - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "ì„ íƒì„ 해제합니다." - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "환ì˜í•©ë‹ˆë‹¤," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "문서" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "비밀번호 변경" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "로그아웃" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django 사ì´íŠ¸ 관리" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django 관리" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "추가" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "히스토리" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "사ì´íŠ¸ì—ì„œ 보기" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "ì•„ëž˜ì˜ ì˜¤ë¥˜ë¥¼ 수정하십시오." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s 추가" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "í•„í„°" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "ì‚­ì œ" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"%(object_name)s \"%(escaped_object)s\" (ì„)를 삭제하면서관련 오브ì íŠ¸ë¥¼ 제거" -"í•˜ê³ ìž í–ˆìœ¼ë‚˜, 지금 사용하시는 ê³„ì •ì€ ë‹¤ìŒ íƒ€ìž…ì˜ ì˜¤ë¸Œì íŠ¸ë¥¼ 제거할 ê¶Œí•œì´ ì—†" -"습니다. :" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s'를 삭제하려면 ë‹¤ìŒ ë³´í˜¸ìƒíƒœì˜ ì—°ê´€ 오브ì " -"트를 삭제해야 합니다." - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"ì •ë§ë¡œ %(object_name)s \"%(escaped_object)s\"(ì„)를 삭제하시겠습니까? 다ìŒì˜ " -"관련 í•­ëª©ë“¤ì´ ëª¨ë‘ ì‚­ì œë©ë‹ˆë‹¤. :" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "네, 확실합니다." - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "여러 ê°œì˜ ì˜¤ë¸Œì íŠ¸ ì‚­ì œ" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"ì—°ê´€ 오브ì íŠ¸ 삭제로 ì„ íƒí•œ %(objects_name)sì˜ ì‚­ì œ 중, 그러나 ë‹¹ì‹ ì˜ ê³„ì •ì€ " -"ë‹¤ìŒ ì˜¤ë¸Œì íŠ¸ì˜ ì‚­ì œ ê¶Œí•œì´ ì—†ìŠµë‹ˆë‹¤. " - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"%(objects_name)s를 삭제하려면 ë‹¤ìŒ ë³´í˜¸ìƒíƒœì˜ 오브ì íŠ¸ë¥¼ 삭제해야 합니다." - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"ì„ íƒí•œ %(objects_name)s를 ì •ë§ ì‚­ì œí•˜ì‹œê² ìŠµë‹ˆê¹Œ? 다ìŒì˜ 오브ì íŠ¸ì™€ ì—°ê´€ ì•„ì´" -"í…œë“¤ì´ ëª¨ë‘ ì‚­ì œë©ë‹ˆë‹¤:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "%(filter_title)s (으)ë¡œ" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s 어플리케ì´ì…˜ìœ¼ë¡œ ì´ìš© 가능한 모ë¸" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "변경" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "수정할 ê¶Œí•œì´ ì—†ìŠµë‹ˆë‹¤." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "최근 ì•¡ì…˜" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "ë‚˜ì˜ ì•¡ì…˜" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "ì´ìš©í•  수 없습니다." - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "ë‚´ìš© 형ì‹ì´ 지정ë˜ì§€ 않았습니다." - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"ë°ì´í„°ë² ì´ìŠ¤ ì„¤ì •ì— ë¬¸ì œê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤. 해당 ë°ì´í„°ë² ì´ìŠ¤ í…Œì´ë¸”ì´ ìƒì„±ë˜ì—ˆ" -"는지, 해당 유저가 ë°ì´í„°ë² ì´ìŠ¤ë¥¼ ì½ì–´ ë“¤ì¼ ìˆ˜ 있는지 확ì¸í•˜ì„¸ìš”." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "사용ìžëª…" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "비밀번호" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "날짜/시간" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "사용ìž" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "ì•¡ì…˜" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"오브ì íŠ¸ì— ë³€ê²½ì‚¬í•­ì´ ì—†ìŠµë‹ˆë‹¤. ì´ admin 사ì´íŠ¸ë¥¼ 통해 ì¶”ê°€ëœ ê²ƒì´ ì•„ë‹ ìˆ˜ 있" -"습니다." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "ëª¨ë‘ í‘œì‹œ" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "저장" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "검색" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "ê²°ê³¼ %(counter)sê°œ 나옴" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "ì´ %(full_result_count)sê±´" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "새로 저장" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "저장 ë° ë‹¤ë¥¸ ì´ë¦„으로 추가" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "저장 ë° íŽ¸ì§‘ 계ì†" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"사용ìžëª…와 비밀번호를 입력하세요.ë” ë§Žì€ ì‚¬ìš©ìž ì˜µì…˜ì„ ì‚¬ìš©í•˜ì‹¤ 수 있습니다." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "유저명과 암호를 입력하세요." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "%(username)s 새로운 비밀번호를 입력하세요." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "비밀번호" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "비밀번호 (확ì¸)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "확ì¸ì„ 위해 위와 ë™ì¼í•œ 비밀번호를 입력하세요. " - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "%(verbose_name)s ë” ì¶”ê°€í•˜ê¸°" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "삭제하기" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "ì‚­ì œ" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "사ì´íŠ¸ë¥¼ ì´ìš©í•´ 주셔서 고맙습니다." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "다시 로그ì¸í•˜ê¸°" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "비밀번호 변경" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "비밀번호를 변경하였습니다." - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "비밀번호가 변경ë˜ì—ˆìŠµë‹ˆë‹¤." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"ë³´ì•ˆìƒ í•„ìš”í•˜ì˜¤ë‹ˆ ê¸°ì¡´ì— ì‚¬ìš©í•˜ì‹œë˜ ë¹„ë°€ë²ˆí˜¸ë¥¼ 입력해 주세요. 새로운 비밀번호" -"는 정확히 입력했는지 확ì¸í•  수 있ë„ë¡ ë‘ ë²ˆ 입력하시기 ë°”ëžë‹ˆë‹¤." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "기존 비밀번호:" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "새 비밀번호:" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "비밀번호 변경" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "비밀번호 초기화" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "비밀번호가 초기화 완료" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "비밀번호가 설정ë˜ì—ˆìŠµë‹ˆë‹¤. ì´ì œ 로그ì¸í•˜ì„¸ìš”." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "비밀번호 초기화 확ì¸" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "새 비밀번호 ìž…ë ¥" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"새로운 비밀번호를 정확히 입력했는지 확ì¸í•  수 있ë„ë¡ë‘ 번 입력하시기 ë°”ëžë‹ˆ" -"다." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "새로운 비밀번호:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "새로운 비밀번호(확ì¸):" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "비밀번호가 초기화를 실패하였습니다." - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"비밀번호 초기화 ë§í¬ê°€ ì´ë¯¸ 사용ë˜ì–´ 올바르지 않습니다.비밀번호 ì´ˆê¸°í™”ì„ ë‹¤" -"ì‹œ 해주세요." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "비밀번호가 초기화ë˜ì—ˆìŠµë‹ˆë‹¤." - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "새로운 비밀번호를 등ë¡í•˜ì‹  ì´ë©”ì¼ë¡œ 보내드렸습니다." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"ë‹¹ì‹ ì˜ ê³„ì • %(site_name)sì— ëŒ€í•œ 암호 초기화 요구로 본 e-mailì„ ë°›ìœ¼ì…¨ìŠµë‹ˆë‹¤." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "ì´ì–´ì§€ëŠ” 페ì´ì§€ì—ì„œ 새 비밀번호를 ì„ íƒí•˜ì„¸ìš”." - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "사용ìžëª…:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "사ì´íŠ¸ë¥¼ ì´ìš©í•´ 주셔서 고맙습니다." - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s 팀" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"비밀번호를 잊으셨나요? ì•„ëž˜ì— ë©”ì¼ ì£¼ì†Œë¥¼ 입력하시면, 새 비밀번호 설정 방법" -"ì„ ì•ˆë‚´í•˜ëŠ” ë©”ì¼ì„ 보내드립니다." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "ì´ë©”ì¼ ì£¼ì†Œ:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "비밀번호 초기화" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "언제나" - -#: views/main.py:27 -msgid "(None)" -msgstr "(ì—†ìŒ)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s ì„ íƒ" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "변경할 %s ì„ íƒ" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 816f5f217..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po deleted file mode 100644 index de0d7540b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ko/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-06 03:22+0000\n" -"Last-Translator: mixe \n" -"Language-Team: Korean \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "ì´ìš© 가능한 %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "í•„í„°" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "ëª¨ë‘ ì„ íƒ" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "추가" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "ì‚­ì œ" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "ì„ íƒëœ %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "ì„ íƒí•œ 후 í´ë¦­í•˜ì„¸ìš”" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "ëª¨ë‘ ì‚­ì œ" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s개가 %(cnt)sê°œ ì¤‘ì— ì„ íƒë¨." - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"개별 편집 가능한 í•„ë“œì— ì €ìž¥ë˜ì§€ ì•Šì€ ê°’ì´ ìžˆìŠµë‹ˆë‹¤. ì•¡ì…˜ì„ ìˆ˜í–‰í•˜ë©´ 저장ë˜" -"지 ì•Šì€ ê°’ë“¤ì„ ìžƒì–´ë²„ë¦¬ê²Œ ë©ë‹ˆë‹¤." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"개별 í•„ë“œì˜ ê°’ë“¤ì„ ì €ìž¥í•˜ì§€ ì•Šê³  ì•¡ì…˜ì„ ì„ íƒí–ˆìŠµë‹ˆë‹¤. OK를 누르면 저장ë˜ë©°, " -"ì•¡ì…˜ì„ í•œ 번 ë” ì‹¤í–‰í•´ì•¼ 합니다." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"개별 í•„ë“œì— ì•„ë¬´ëŸ° ë³€ê²½ì´ ì—†ëŠ” ìƒíƒœë¡œ ì•¡ì…˜ì„ ì„ íƒí–ˆìŠµë‹ˆë‹¤. 저장 ë²„íŠ¼ì´ ì•„ë‹ˆ" -"ë¼ ì§„í–‰ ë²„íŠ¼ì„ ì°¾ì•„ë³´ì„¸ìš”." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "1ì›” 2ì›” 3ì›” 4ì›” 5ì›” 6ì›” 7ì›” 8ì›” 9ì›” 10ì›” 11ì›” 12ì›”" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "ì¼ ì›” í™” 수 목 금 토" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "보기" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "ê°ì¶”기" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ì¼ìš”ì¼ ì›”ìš”ì¼ í™”ìš”ì¼ ìˆ˜ìš”ì¼ ëª©ìš”ì¼ ê¸ˆìš”ì¼ í† ìš”ì¼" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "현재" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "시계" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "시간 ì„ íƒ" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "ìžì •" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "오전 6ì‹œ" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "정오" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "취소" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "오늘" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "달력" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "ì–´ì œ" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "ë‚´ì¼" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo deleted file mode 100644 index 837e74a1a..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.po deleted file mode 100644 index fa87a8ce6..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/django.po +++ /dev/null @@ -1,813 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-05 23:23+0000\n" -"Last-Translator: lauris \n" -"Language-Team: Lithuanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "SÄ—kmingai iÅ¡trinta %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "IÅ¡trinti %(name)s negalima" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Ar esate tikras?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "IÅ¡trinti pasirinktus %(verbose_name_plural)s " - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                          By %s:

                                                                                                                                          \n" -"
                                                                                                                                            \n" -msgstr "" -"

                                                                                                                                            Vartotojas %s:

                                                                                                                                            \n" -"
                                                                                                                                              \n" -"\n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Visi" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Taip" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ne" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Nežinomas" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Betkokia data" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Å iandien" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "PaskutinÄ—s 7 dienos" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Šį mÄ—nesį" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Å iais metais" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Ä®veskite teisingÄ… vartotojo vardÄ… ir slaptažodį. Abiejuose laukuose " -"didžiosios mažosios raidÄ—s skiriasi." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Prisijunkite dar kartÄ…, nes sesijos laikas baigÄ—si." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "E-mailas nÄ—ra vartotojo vardas. Pabandyk '%s' vietoj to." - -#: helpers.py:19 -msgid "Action:" -msgstr "Veiksmas:" - -#: models.py:19 -msgid "action time" -msgstr "veiksmo laikas" - -#: models.py:22 -msgid "object id" -msgstr "objekto id" - -#: models.py:23 -msgid "object repr" -msgstr "objekto repr" - -#: models.py:24 -msgid "action flag" -msgstr "veiksmo žymÄ—" - -#: models.py:25 -msgid "change message" -msgstr "pakeisti žinutÄ™" - -#: models.py:28 -msgid "log entry" -msgstr "log įraÅ¡as" - -#: models.py:29 -msgid "log entries" -msgstr "log įraÅ¡ai" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "None" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Pakeistas %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ir" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Ä®raÅ¡yta %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Pakeistas %(list)s Å¡iam %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "PaÅ¡alinta %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Nei vienas laukas nepakeistas" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" pridÄ—tas sÄ—kmingai." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Gali taisyti dar kartÄ… žemiau." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Gali pridÄ—ti dar vienÄ… %s žemiau." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" buvo sÄ—kmingai pakeistas." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" pridÄ—tas sÄ—kmingai. Gali taisytį jį dar kartÄ… žemiau." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Ä®raÅ¡ai turi bÅ«ti pasirinkti, kad bÅ«tų galima atlikti veiksmus. Ä®raÅ¡ai " -"pakeisti nebuvo." - -#: options.py:846 -msgid "No action selected." -msgstr "Veiksmai atlikti nebuvo." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "PridÄ—ti %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Ä®raÅ¡as %(name)s su pirminiu raktu %(key)r neegzistuoja." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Pakeisti %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Duomenų bazÄ—s klaida" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s sÄ—kmingai pakeistas." -msgstr[1] "%(count)s %(name)s sÄ—kmingai pakeisti." -msgstr[2] "%(count)s %(name)s " - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s pasirinktas" -msgstr[1] "%(total_count)s pasirinkti" -msgstr[2] "Visi %(total_count)s pasirinkti" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 iÅ¡ %(cnt)s pasirinkta" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" sÄ—kmingai iÅ¡trintas." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Pakeisti istorijÄ…: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Prisijungti" - -#: sites.py:375 -msgid "Site administration" -msgstr "Saito administravimas" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s administravimas" - -#: widgets.py:75 -msgid "Date:" -msgstr "Data:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Laikas:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "PaieÅ¡ka" - -#: widgets.py:246 -msgid "Add Another" -msgstr "PridÄ—ti dar viena" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Puslapis nerastas" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "AtsipraÅ¡ome, bet praÅ¡ytas puslapis nerastas." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Pradinis" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Serverio klaida" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Serverio klaida (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Serverio klaida (500)" - -#: 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 "" -"Ä®vyko klaida. Apie jÄ… buvo praneÅ¡ta administratoriams ir turÄ—tų bÅ«ti greitai " -"iÅ¡taisyta. DÄ—kojame už kantrybÄ™." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Vykdyti pasirinktus veiksmus" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Eiti!" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Spauskite Äia norÄ—dami pasirinkti visus įraÅ¡us" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Pasirinkti visus %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Atstatyti į pradinÄ™ bÅ«senÄ…" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Sveiki," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentacija" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Pakeisti slaptažodį" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Atsijungti" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django saito administravimas" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django administravimas" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "PridÄ—ti" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Istorija" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Matyti saite" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "IÅ¡taisykite žemiau esanciÄ… klaidÄ…." -msgstr[1] "IÅ¡taisykite žemiau esancias klaidas." -msgstr[2] "IÅ¡taisykite žemiau esancias klaidas." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "PridÄ—ti %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtras" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "IÅ¡trinti" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Trinant %(object_name)s '%(escaped_object)s' turi bÅ«ti iÅ¡trinti ir susijÄ™ " -"objektai, bet tavo vartotojas neturi teisių iÅ¡trinti Å¡ių objektų:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"IÅ¡trinant %(object_name)s '%(escaped_object)s' bÅ«tų iÅ¡trinti Å¡ie apsaugoti " -"ir susijÄ™ objektai:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Ar tu esi tikras, kad nori iÅ¡trinti %(object_name)s \"%(escaped_object)s\"? " -"Visi susijÄ™ objektai bus iÅ¡trinti:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Taip, esu tikras" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "IÅ¡trinti kelis objektus" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"IÅ¡trinant pasirinktÄ… %(objects_name)s bÅ«tų iÅ¡trinti susijÄ™ objektai, taÄiau " -"jÅ«sų vartotojas neturi reikalingų teisių iÅ¡trinti Å¡iuos objektų tipus:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"IÅ¡trinant pasirinktus %(objects_name)s bÅ«tų iÅ¡trinti Å¡ie apsaugoti ir susijÄ™ " -"objektai:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Ar esate tikri, kad norite iÅ¡trinti pasirinktus %(objects_name)s? Sekantys " -"pasirinkti bei susijÄ™ objektai bus iÅ¡trinti:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Pagal %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modelis prieinamas %(name)s programoje." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Pakeisti" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Neturite teisių kÄ… nors keistis." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Paskutiniai Veiksmai" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mano Veiksmai" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "NÄ—ra prieinamų" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Nežinomas turinys" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Kažkas yra negerai su jÅ«sų duomenų bazÄ—s instaliacija. Ä®sitikink, kad visos " -"reikalingos lentelÄ—s sukurtos ir vartotojas turi teises skaityti duomenų " -"bazÄ™." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Vartotojo vardas:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Slaptažodis:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Data/laikas" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Vartotojas" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Veiksmas" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Å is objektas neturi pakeitimų istorijos. Tikriausiai jis buvo pridÄ—tas ne " -"per admin puslapį." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Rodyti visus" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "IÅ¡saugoti" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "PaieÅ¡ka" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s rezultatas" -msgstr[1] "%(counter)s rezultatai" -msgstr[2] "%(counter)s rezultatai" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s iÅ¡ viso" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "IÅ¡saugoti kaip naujÄ…" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "IÅ¡saugoti ir pridÄ—ti naujÄ…" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "IÅ¡saugoti ir tÄ™sti redagavimÄ…" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Pirmiausi įvesk vartotojo vardÄ… ir slaptažodį. Tada turÄ—si galimybÄ™ " -"redaguoti daugiau nustatymų." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Ä®veskite vartotojÄ… ir slaptažodį." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Ä®vesk naujÄ… slaptažodį vartotojui %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Slaptažodis" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Slaptažodis (dar kartÄ…)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Patikrinimui įvesk tokį patį slaptažodį, kaip virÅ¡uje." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "PridÄ—ti dar viena %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "PaÅ¡alinti" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "IÅ¡trinti?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "DÄ—kui už praleistÄ… laikÄ… Å¡iandien." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Prisijungti dar kartÄ…" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Slaptažodžio keitimas" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Slaptažodis sÄ—kmingai pakeistas" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "JÅ«sų slaptažodis buvo pakeistas." - -#: templates/registration/password_change_form.html:22 -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 "" -"Saugumo sumetimais įvesk senÄ… slaptažodį ir tada du kartus naujÄ…, kad " -"įsitikinti, jog nesuklydai raÅ¡ydamas" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Senas slaptažodis" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Naujas " - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Pakeisti slaptažodį" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Slaptažodžio atstatymas" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Slaptažodžio atstatymas baigtas" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "JÅ«sų slaptažodis buvo iÅ¡saugotas. Dabas galite prisijungti." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Slaptažodžio atstatymo patvirtinimas" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Ä®veskite naujÄ… slaptažodį" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Ä®veskite naujÄ…jį slaptažodį du kartus, taip užtikrinant, jog nesuklydote " -"raÅ¡ydami." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Naujasis slaptažodis:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Slaptažodžio patvirtinimas:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Slaptažodžio atstatymas nesÄ—kmingas" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Slaptažodžio atstatymo nuoroda buvo negaliojanti, nes ja tikriausiai jau " -"buvo panaudota. PraÅ¡ykite naujo slaptažodžio pakeitimo." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Slaptažodis sÄ—kmingai atstatytas" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Slaptažodžio atstatymo procedÅ«ra iÅ¡siųsta į jÅ«sų anksÄiau nurodytÄ… el. paÅ¡to " -"adresÄ…. TurÄ—tumÄ—te jį neužilgo gauti." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"JÅ«s gavote šį laiÅ¡kÄ…, nes praÅ¡Ä—te slaptažodžio atstatymo Å¡iam vartotojui %" -"(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "PraÅ¡ome eiti į šį puslapį ir pasirinkti naujÄ… slaptažodį:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "JÅ«sų vartotojo vardas, jei netyÄia užmirÅ¡ote:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "DÄ—kui, kad naudojatÄ—s mÅ«sų saitu!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s komanda" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"PamirÅ¡ote slaptažodį? Ä®veskite savo el. paÅ¡to adresÄ… žemiau ir mes jums " -"atsiųsime naujÄ… slaptažodį." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "El. paÅ¡to adresas:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Atstatyti slaptažodį" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Visos datos" - -#: views/main.py:27 -msgid "(None)" -msgstr "()" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Pasirinkti %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Pasirinkti %s pakeitimui" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 5f5443d1d..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po deleted file mode 100644 index ecc7e0076..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/lt/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,156 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-08 13:39+0000\n" -"Last-Translator: Pawka \n" -"Language-Team: Lithuanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Galimi %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtras" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Pasirinkti visus" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "PridÄ—ti" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "PaÅ¡alinti" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Pasirinktas %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Pasirinkite ir paspauskite" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "IÅ¡valyti visus" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "pasirinktas %(sel)s iÅ¡ %(cnt)s" -msgstr[1] "pasirinkti %(sel)s iÅ¡ %(cnt)s" -msgstr[2] "pasirinkti %(sel)s iÅ¡ %(cnt)s" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Turite neiÅ¡saugotų pakeitimų. Jeigu tÄ™site, JÅ«sų pakeitimai bus prarasti." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Pasirinkote veiksmÄ…, bet dar neesate iÅ¡saugojÄ™ pakeitimų. Nuspauskite Gerai " -"norÄ—dami iÅ¡saugoti. Jus reikÄ—s iÅ¡ naujo paleisti veiksmÄ…." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Pasirinkote veiksmÄ…, bet neesate pakeitÄ™ laukų reikÅ¡mių. JÅ«s greiÄiausiai " -"ieÅ¡kote mygtuko Vykdyti, o ne mygtuko Saugoti." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Sausis Vasaris Kovas Balandis Gegužė Birželis Liepa RugpjÅ«tis RugsÄ—jis " -"Spalis Lapkritis Gruodis" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S Pr A T K Pn Å " - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Parodyti" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "SlÄ—pti" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "" -"Sekmadienis Pirmadienis Antradienis TreÄiadienis Ketvirtadienis Penktadienis " -"Å eÅ¡tadienis" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Dabar" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Laikrodis" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Pasirinkite laikÄ…" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Vidurnaktis" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Vidurdienis" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "AtÅ¡aukti" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Å iandien" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalendorius" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Vakar" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Rytoj" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo deleted file mode 100644 index 0a73b001b..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.po deleted file mode 100644 index 948f786f1..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/django.po +++ /dev/null @@ -1,798 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Latvian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "VeiksmÄ«gi izdzÄ“sti %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Vai esat pÄrliecinÄts?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "IzdzÄ“st izvÄ“lÄ“to %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                              By %s:

                                                                                                                                              \n" -"
                                                                                                                                                \n" -msgstr "" -"

                                                                                                                                                PÄ“c %s:

                                                                                                                                                \n" -"
                                                                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Visi" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "JÄ" - -#: filterspecs.py:139 -msgid "No" -msgstr "NÄ“" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "NezinÄms" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "JebkurÅ¡ datums" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Å odien" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "PÄ“dÄ“jÄs 7 dienas" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Å omÄ“nes" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Å ogad" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"LÅ«dzu ievadiet lietotÄjvÄrdu un paroli. IevÄ“rojiet, ka abi lauki ir " -"reÄ£istrjÅ«tÄ«gi." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "LÅ«dzu pieslÄ“dzieties vÄ“lreiz, jÅ«su sesija ir beigusies." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "JÅ«su e-pasta adrese nav jÅ«su lietotÄjvÄrds. IzmÄ“Ä£iniet '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "DarbÄ«ba:" - -#: models.py:19 -msgid "action time" -msgstr "darbÄ«bas laiks" - -#: models.py:22 -msgid "object id" -msgstr "objekta id" - -#: models.py:23 -msgid "object repr" -msgstr "objekta attÄ“lojums" - -#: models.py:24 -msgid "action flag" -msgstr "darbÄ«bas atzÄ«me" - -#: models.py:25 -msgid "change message" -msgstr "izmaiņas teksts" - -#: models.py:28 -msgid "log entry" -msgstr "žurnÄla ieraksts" - -#: models.py:29 -msgid "log entries" -msgstr "žurnÄla ieraksti" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "nekas" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "IzmainÄ«ts %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "un" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Pievienots %(name)s \"%(object)s\"" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "IzmainÄ«ts %(list)s priekÅ¡ %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "DzÄ“sts %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Lauki nav izmainÄ«ti" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" pievienots sekmÄ«gi." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "ZemÄk varat labot to atkal" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "ZemÄk varat pievienot vÄ“l vienu %s." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" nomainÄ«ts sekmÄ«gi." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" pievienots sekmÄ«gi. ZemÄk varat to labot." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "Lai veiktu darbÄ«bu, jÄizvÄ“las rindas. Rindas nav izmainÄ«tas." - -#: options.py:846 -msgid "No action selected." -msgstr "Nav izvÄ“lÄ“ta darbÄ«ba." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Pievienot %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s objekts ar primÄro atslÄ“gu %(key)r neeksistÄ“." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Labot %s" - -#: options.py:1065 -msgid "Database error" -msgstr "DatubÄzes kļūda" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s ir laboti sekmÄ«gi" -msgstr[1] "%(count)s %(name)s ir sekmÄ«gi rediģēts" -msgstr[2] "%(count)s %(name)s ir sekmÄ«gi rediģēti." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s izvÄ“lÄ“ti" -msgstr[1] "%(total_count)s izvÄ“lÄ“ts" -msgstr[2] "%(total_count)s izvÄ“lÄ“ti" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 no %(cnt)s izvÄ“lÄ“ti" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" sekmÄ«gi izdzÄ“sts." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Izmaiņu vÄ“sture: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "PieslÄ“gties" - -#: sites.py:375 -msgid "Site administration" -msgstr "Lapas administrÄcija" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s administrÄcija" - -#: widgets.py:75 -msgid "Date:" -msgstr "Datums:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Laiks:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "PÄrlÅ«kot" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Pievienot vÄ“l vienu" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Lapa nav atrasta" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Atvainojiet, pieprasÄ«tÄ lapa neeksistÄ“." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "SÄkums" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Servera kļūda" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Servera kļūda (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Servera kļūda (500)" - -#: 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 "" -"Ir notikusi kļūda. TÄ ir paziņota lapas administratoriem ar e-pasta " -"starpniecÄ«bu un visdrÄ«zÄkajÄ laikÄ tiks izlabota. Paldies par sapratni." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "IzpildÄ«t izvÄ“lÄ“to darbÄ«bu" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Aiziet!" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Spiest Å¡eit, lai iezÄ«mÄ“tu objektus no visÄm lapÄm" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "IzvÄ“lÄ“ties visus %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Atcelt iezÄ«mÄ“to" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "SveicinÄti," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "DokumentÄcija" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Paroles maiņa" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "AtslÄ“gties" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django administrÄcijas lapa" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django administrÄcija" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Pievienot" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "VÄ“sture" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "ApskatÄ«t lapÄ" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "LÅ«dzu, izlabojiet kļūdu zemÄk." -msgstr[1] "LÅ«dzu, izlabojiet kļūdas zemÄk." -msgstr[2] "LÅ«dzu, izlabojiet kļūdas zemÄk." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Pievienot %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtrs" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "DzÄ“st" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"IzdzÄ“Å¡ot objektu %(object_name)s '%(escaped_object)s', tiks dzÄ“sti visi " -"saistÄ«tie objekti, bet jums nav tiesÄ«bu dzÄ“st sekojoÅ¡us objektu tipus:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Vai esat pÄrliecinÄts, ka vÄ“laties dzÄ“st %(object_name)s \"%(escaped_object)s" -"\"? Tiks dzÄ“sti arÄ« sekojoÅ¡i saistÄ«tie objekti:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "JÄ, esmu pÄrliecinÄts" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "DzÄ“st vairÄkus objektus" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " PÄ“c %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modeļi, kas pieejami %(name)s aplikÄcijÄ." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "IzmainÄ«t" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Jums nav tiesÄ«bas neko labot." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "NesenÄs darbÄ«bas" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Manas darbÄ«bas" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Nav pieejams" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "NezinÄms saturs" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"ProblÄ“ma ar datubÄzes instalÄciju. PÄrliecinieties, ka attiecÄ«gÄs tabulas ir " -"izveidotas un attiecÄ«gajam lietotÄjam ir tiesÄ«bas tai piekļūt." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "LietotÄja vÄrds:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Parole:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Datums/laiks" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "LietotÄjs" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "DarbÄ«ba" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Å im objektam nav izmaiņu vÄ“stures. Tas visdrÄ«zÄk netika pievienots, " -"izmantojot Å¡o administrÄcijas rÄ«ku." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "RÄdÄ«t visu" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "SaglabÄt" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "MeklÄ“t" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "kopÄ - %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "SaglabÄt kÄ jaunu" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "SaglabÄt un pievienot vÄ“l vienu" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "SaglabÄt un turpinÄt laboÅ¡anu" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Vispirms ievadiet lietotÄja vÄrdu un paroli. Tad varÄ“siet labot pÄrÄ“jos " -"lietotÄja uzstÄdÄ«jumus." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Ievadiet jaunu paroli lietotÄjam %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Parole" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Parole (vÄ“lreiz)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "PÄrbaudei atkÄrtoti ievadiet to paÅ¡u paroli kÄ augstÄk." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Pievienot vÄ“l %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "DzÄ“st" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "DzÄ“st?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Paldies par pavadÄ«to laiku mÄjas lapÄ." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "PieslÄ“gties vÄ“lreiz" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Paroles maiņa" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Paroles nomaiņa sekmÄ«ga" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "JÅ«su parole tika nomainÄ«ta." - -#: templates/registration/password_change_form.html:22 -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 "" -"DroÅ¡Ä«bas nolÅ«kos ievadiet veco paroli un pÄ“c tam ievadiet jauno paroli " -"divreiz, lai varÄ“tu pÄrbaudÄ«t, ka tÄ ir uzrakstÄ«ta pareizi." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "VecÄ parole" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "JaunÄ parole" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "NomainÄ«t manu paroli" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Paroles pÄrstatÄ«Å¡ana(reset)" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Paroles pÄrstatÄ«Å¡ana pabeigta" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "JÅ«su parole ir uzstÄdÄ«ta. Varat pieslÄ“gties." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Paroles pÄrstatÄ«Å¡anas apstiprinÄjums" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Ievadiet jauno paroli" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"LÅ«dzu ievadiet jauno paroli divreiz, lai varÄ“tu pÄrbaudÄ«t, ka tÄ ir " -"uzrakstÄ«ta pareizi." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "JaunÄ parole:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "ApstiprinÄt paroli:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Paroles pÄrstatÄ«Å¡ana nesekmÄ«ga" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Paroles pÄrstatÄ«Å¡anas saite bija nekorekta, iespÄ“jams, tÄ jau ir izmantota. " -"LÅ«dzu pieprasiet paroles pÄrstatÄ«Å¡anu vÄ“lreiz." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Paroles pÄrstatÄ«Å¡ana sekmÄ«ga" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Uz e-pastu aizsÅ«tÄ«tas instrukcijas paroles uzstÄdÄ«Å¡anai. Jums to drÄ«zumÄ " -"vajadzÄ“tu saņemt." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "LÅ«dzu apmeklÄ“jiet sekojoÅ¡o lapu un ievadiet jaunu paroli:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "JÅ«su lietotÄjvÄrds, ja gadÄ«jumÄ tas ir aizmirsts:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Paldies par mÅ«su lapas lietoÅ¡anu!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s komanda" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"AizmirsÄt savu paroli? Ievadiet e-pasta adresi zemÄk un saņemsiet e-pastu ar " -"instrukcijÄm jaunas paroles uzstÄdÄ«Å¡anai." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-pasta adrese:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Paroles pÄrstatÄ«Å¡ana" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Visi datumi" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "IzvÄ“lÄ“ties %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "IzvÄ“lÄ“ties %s, lai izmainÄ«tu" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 81a212346..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po deleted file mode 100644 index 83259a3bf..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/lv/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,156 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Latvian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Pieejams %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "IzvÄ“lÄ“ties visu" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Pievienot" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Izņemt" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "IzvÄ“lies %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "IzvÄ“lies un klikÅ¡Ä·ini" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "AttÄ«rÄ«t visu" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s no %(cnt)s izvÄ“lÄ“ts" -msgstr[1] "%(sel)s no %(cnt)s izvÄ“lÄ“ti" -msgstr[2] "%(sel)s no %(cnt)s izvÄ“lÄ“ti" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"JÅ«s neesat saglabÄjis izmaiņas rediģējamiem laukiem. Ja jÅ«s tagad " -"izpildÄ«siet izvÄ“lÄ“to darbÄ«bu, Å¡Ä«s izmaiņas netiks saglabÄtas." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"JÅ«s esat izvÄ“lÄ“jies veikt darbÄ«bu un neesat saglabÄjis veiktÄs izmaiņas. " -"LÅ«dzu nospiežat OK, lai saglabÄtu. Jums nÄksies Å¡o darbÄ«bu izpildÄ«t vÄ“lreiz." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"JÅ«s esat izvÄ“lÄ“jies veikt darbÄ«bu un neesat izmainÄ«jis nevienu lauku. JÅ«s " -"droÅ¡i vien meklÄ“jat pogu 'Aiziet' nevis 'SaglabÄt'." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"JanvÄris FebruÄris Marts AprÄ«lis Maijs JÅ«nijs JÅ«lijs Augusts Septembris " -"Oktobris Novembris Decembris" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S P O T C P S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "ParÄdÄ«t" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "SlÄ“pt" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "" -"SvÄ“tdiena Pirmdiena Otrdiena TreÅ¡diena Ceturtdiena Piektdiena Sestdiena" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Tagad" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Pulkstens" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "IzvÄ“lieties laiku" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Pusnakts" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "06.00" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Pusdienas laiks" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Atcelt" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Å odien" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "KalendÄrs" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Vakar" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "RÄ«t" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo deleted file mode 100644 index b70f75507..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.po deleted file mode 100644 index 62df32c5c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/django.po +++ /dev/null @@ -1,810 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: vvangelovski \n" -"Language-Team: Macedonian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "УÑпешно беа избришани %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Ðе може да Ñе избрише %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Сигурни Ñте?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Избриши ги избраните %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                  By %s:

                                                                                                                                                  \n" -"
                                                                                                                                                    \n" -msgstr "" -"

                                                                                                                                                    Според %s:

                                                                                                                                                    \n" -"
                                                                                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Сите" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Да" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ðе" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Ðепознато" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Било кој датум" - -#: filterspecs.py:197 -msgid "Today" -msgstr "ДенеÑка" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "ПоÑледните 7 дена" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Овој меÑец" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Оваа година" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Ве молам внеÑете точно кориÑничко име и лозинка. Имајте на ум дека и во " -"двете полиња Ñе битни големите и малите букви." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Ве молам најавете Ñе повторно бидејќи вашата ÑеÑија е иÑтечена." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Вашата е-пошта не е вашето кориÑничко име. Пробајте Ñо „%s“." - -#: helpers.py:19 -msgid "Action:" -msgstr "Ðкција:" - -#: models.py:19 -msgid "action time" -msgstr "време на акција" - -#: models.py:22 -msgid "object id" -msgstr "идентификационен број на објект" - -#: models.py:23 -msgid "object repr" -msgstr "репрезентација на објект" - -#: models.py:24 -msgid "action flag" -msgstr "знакче за акција" - -#: models.py:25 -msgid "change message" -msgstr "измени ја пораката" - -#: models.py:28 -msgid "log entry" -msgstr "Ñтавка во запиÑникот" - -#: models.py:29 -msgid "log entries" -msgstr "Ñтавки во запиÑникот" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ðишто" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Изменета %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "и" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Додадено %(name)s „%(object)s“." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Изменето %(list)s за %(name)s „%(object)s“." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Избришан %(name)s „%(object)s“." - -#: options.py:645 -msgid "No fields changed." -msgstr "Ðе беше изменето ниедно поле." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Ставката %(name)s \"%(obj)s\" беше уÑпешно додадена." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Подолу можете повторно да го уредите." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Подолу можете да додате уште еден %s." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" беше уÑпешно изменета." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Ставката %(name)s \"%(obj)s\" беше уÑпешно додадена. Подолу можете повторно " -"да ја уредите." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Мора да Ñе одберат предмети за да Ñе изврши акција врз нив. Ðиеден предмет " -"не беше променет." - -#: options.py:846 -msgid "No action selected." -msgstr "Ðиедна акција не е одбрана." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Додади %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "објект %(name)s Ñо примарен клуч %(key)r не поÑтои." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Измени %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Грешка во базата на податоци" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s Ñтавка %(name)s беше уÑпешно изменета." -msgstr[1] "%(count)s Ñтавки %(name)s беа уÑпешно изменети." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s одбран" -msgstr[1] "Сите %(total_count)s одбрани" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 од %(cnt)s избрани" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Ставаката %(name)s \"%(obj)s\" беше избришана уÑпешно." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ИÑторија на измени: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Ðајава" - -#: sites.py:375 -msgid "Site administration" -msgstr "ÐдминиÑтрација на Ñајт" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s админиÑтрација" - -#: widgets.py:75 -msgid "Date:" -msgstr "Датум:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Време:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Побарај" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Додади друго" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Страницата не е најдена" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Се извинуваме, но неможе да ја најдеме Ñтраницата која ја баравте." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Дома" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Грешка Ñо Ñерверот" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Грешка Ñо Ñерверот (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Грешка Ñо Ñерверот (500)" - -#: 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 "" -"Имаше грешка. ИÑтата беше пријавена на админиÑтраторите и ќе биде поправена " -"во брзо време. Ви благодариме за вашето трпение." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Изврши ја избраната акција" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Оди" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Кликнете тука за да изберете објекти низ повеќе Ñтраници" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Избери ги Ñите %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Откажи го изборот" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Добредојдовте," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Документација" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Промени лозинка" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Одјава" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Ðанго админиÑтрација на Ñајт" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Ðанго админиÑтрација" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Додади" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ИÑторија" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Погледни на Ñајтот" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Ве молам поправете ја грешката подолу." -msgstr[1] "Ве молам поправете ги грешките подолу." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Додади %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Филтер" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Избриши" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Бришење на %(object_name)s '%(escaped_object)s' ќе резултира Ñо бришење на " -"поврзаните објекти, но Ñо вашата Ñметка немате доволно привилегии да ги " -"бришете Ñледните типови на објекти:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Бришење на %(object_name)s '%(escaped_object)s' ќе резултира Ñо бришење на " -"Ñледниве заштитени објекти:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Сигурне Ñте дека Ñакате да ги бришете %(object_name)s „%(escaped_object)s“? " -"Сите овие Ñтавки ќе бидат избришани:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Да, Ñигурен Ñум" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Избриши повеќе Ñтавки" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Бришење на избраните %(objects_name)s ќе резултира Ñо бришење на поврзани " -"објекти, но немате одобрување да ги избришете Ñледниве типови објекти:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Бришење на избраните %(objects_name)s бара бришење на Ñледните поврзани " -"објекти кои Ñе заштитени:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Дали Ñте Ñигурни дека Ñакате да го избришете избраниот %(objects_name)s? " -"Сите овие објекти и оние поврзани Ñо нив ќе бидат избришани:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Според %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "ДоÑтапни модели во апликацијата %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Измени" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Ðемате дозвола ништо да уредува." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "ПоÑледни акции" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Мои акции" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ðишто не е доÑтапно" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Ðепозната Ñодржина" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Ðешто не е во ред Ñо инÑталацијата на базата на податоци. Потврдете дека " -"Ñоодветни табели во базата Ñе направени и потврдете дека базата може да биде " -"прочитана од Ñоодветниот кориÑник." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "КориÑник:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Лозинка:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Датум/чаÑ" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "КориÑник" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Ðкција" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Овој објект нема иÑторија на измени. Ðајверојатно не бил додаден Ñо админ " -"Ñајтот." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Прикажи ги Ñите" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Сними" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Барај" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s резултат" -msgstr[1] "%(counter)s резултати" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "вкупно %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Сними како нова" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Сними и додади уште" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Сними и продолжи Ñо уредување" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Прво, внеÑете кориÑничко име и лозинка. Потоа ќе можете да уредувате повеќе " -"кориÑнички опции." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "ВнеÑете кориÑничко име и лозинка." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "ВнеÑете нова лозинка за кориÑникот %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Лозинка" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Лозинка (повторно)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Заради верификација внеÑете ја иÑтата лозинка како и горе." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Додадете уште %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "ОтÑтрани" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Избриши?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "" -"Ви благодариме што денеÑка поминавте квалитетно време Ñо интернет Ñтраницава." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Ðајавете Ñе повторно" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Измена на лозинка" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "УÑпешна промена на лозинката" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Вашата лозинка беше Ñменета." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Заради ÑигурноÑÑ‚ ве молам внеÑете ја вашата Ñтара лозинка и потоа внеÑете ја " -"новата двапати за да може да Ñе потврди дека правилно Ñте ја иÑкуцале." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Стара лозинка" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Ðова лозинка" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Промени ја мојата лозинка" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "РеÑетирање на лозинка" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "РеÑетирањето на лозинката заврши" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Вашата лозинка беше поÑтавена. Сега можете да Ñе најавите." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Одобрување за реÑетирање на лозинка" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "ВнеÑете нова лозинка" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Ве молам внеÑете ја вашата нова лозинка двапати за да може да бидете Ñигурни " -"дека правилно Ñте ја внеле." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Ðова лозинка:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Потврди лозинка:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "ÐеуÑпеа реÑетирањето на лозинката" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Ð’Ñ€Ñката за реÑетирање на лозинката беше невалидна, најверојатно бидејќи веќе " -"била иÑкориÑтена. Ве молам повторно побарајте реÑетирање на вашата лозинката." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "УÑпешно е реÑетирањето на лозинката" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Ви пративме инÑтрукции за поÑтавување на вашата лозинка на е-пошта која ја " -"напишавте. Би требало да ја примите за кратко време." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Го добивате овој e-mail затоа што баравте промена на вашата лозинка на %" -"(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Ве молам одите на Ñледната Ñтраница и внеÑете нова лозинка:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Вашето кориÑничко име, во Ñлучај да Ñте го заборавиле:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Ви благодариме што го кориÑтите овој Ñајт!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Тимот на %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Сте ја заборавиле вашата лозинка? ВнеÑете ја вашата е-пошта подолу и ќе ви " -"пратиме инÑтрукции за поÑтавување на нова." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Е-пошта:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "РеÑетирај ја мојата лозинка" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Сите датуми" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ðишто)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Изберете %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Изберете %s за измена" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 8adbf6de7..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po deleted file mode 100644 index 285eda09f..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/mk/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: vvangelovski \n" -"Language-Team: Macedonian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "ДоÑтапно %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Филтер" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Избери ги Ñите" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Додади" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "ОтÑтрани" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Избрано %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Означете го вашиот избор/и и кликнете" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "ИÑчиÑти ги Ñите" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "избрано %(sel)s од %(cnt)s" -msgstr[1] "избрани %(sel)s од %(cnt)s" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Имате незачувани промени на поединечни полиња. Ðко извршите акција вашите " -"незачувани промени ќе бидат изгубени." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Избравте акција, но Ñеуште ги немате зачувано вашите промени на поединечни " -"полиња. Кликнете ОК за да ги зачувате. Ќе треба повторно да ја извршите " -"акцијата." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Избравте акција и немате направено промени на поединечни полиња. Веројатно " -"го барате копчето Оди намеÑто Зачувај." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Јануари Февруари Март Ðприл Мај Јуни Јули ÐвгуÑÑ‚ Септември Октомври Ðоември " -"Декември" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "РП Ð’ С Ч П С" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Прикажи" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Сокриј" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Ðедела Понеделник Вторник Среда Четврток Петок Сабота" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Сега" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "ЧаÑовник" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Избери време" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Полноќ" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 наутро" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Пладне" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Откажи" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "ДенеÑка" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Календар" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Вчера" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Утре" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo deleted file mode 100644 index a0d83ddd6..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.po deleted file mode 100644 index 36323abf1..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/django.po +++ /dev/null @@ -1,801 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Malayalam \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s വിജയകരമായി ഡിലീറàµà´±àµ ചെയàµà´¤àµ." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Cannot delete %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "തീരàµâ€à´šàµà´šà´¯à´¾à´£àµ‹?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ %(verbose_name_plural)s ഡിലീറàµà´±àµ ചെയàµà´¯àµà´•." - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                      By %s:

                                                                                                                                                      \n" -"
                                                                                                                                                        \n" -msgstr "" -"

                                                                                                                                                        By %s:

                                                                                                                                                        \n" -"
                                                                                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "à´Žà´²àµà´²à´¾à´‚" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "അതെ" - -#: filterspecs.py:139 -msgid "No" -msgstr "à´…à´²àµà´²" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "à´…à´œàµà´žà´¾à´¤à´‚" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "à´à´¤àµ†à´™àµà´•à´¿à´²àµà´‚ തീയതി" - -#: filterspecs.py:197 -msgid "Today" -msgstr "ഇനàµà´¨àµ" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "à´•à´´à´¿à´žàµà´ž à´à´´àµ ദിവസം" - -#: filterspecs.py:203 -msgid "This month" -msgstr "à´ˆ മാസം" - -#: filterspecs.py:205 -msgid "This year" -msgstr "à´ˆ വരàµâ€à´·à´‚" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"ദയവായി ശരിയായ യൂസരàµâ€à´¨à´¾à´®à´µàµà´‚ പാസàµà´µàµ‡à´°àµà´¡àµà´‚ നലàµà´•àµà´•. ഇംഗàµà´³àµ€à´·àµ à´…à´•àµà´·à´°à´™àµà´™à´³àµâ€ വലàµà´¯à´•àµà´·à´°à´®à´¾à´£àµ‹ à´…à´²àµà´²à´¯àµ‹ à´Žà´¨àµà´¨à´¤àµ " -"à´¶àµà´°à´¦àµà´§à´¿à´•àµà´•à´£à´‚" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "താങàµà´•à´³àµà´Ÿàµ† സെഷനàµà´±àµ† കാലാവധി à´•à´´à´¿à´žàµà´žàµ. വീണàµà´Ÿàµà´‚ ലോഗിനàµâ€ ചെയàµà´¯à´£à´‚." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "നിങàµà´™à´³àµà´Ÿàµ† à´‡-മെയിലàµâ€ à´…à´¡àµà´°à´¸àµà´¸àµ à´…à´²àµà´² യൂസരàµâ€à´¨à´¾à´®à´‚. പകരം '%s' ഉപയോഗിചàµà´šàµ നോകàµà´•àµà´•." - -#: helpers.py:19 -msgid "Action:" -msgstr "ആകàµà´·à´¨àµâ€" - -#: models.py:19 -msgid "action time" -msgstr "ആകàµà´·à´¨àµâ€ സമയം" - -#: models.py:22 -msgid "object id" -msgstr "à´’à´¬àµà´œàµ†à´•àµà´Ÿàµ à´à´¡à´¿" - -#: models.py:23 -msgid "object repr" -msgstr "à´’à´¬àµà´œàµ†à´•àµà´Ÿàµ സൂചന" - -#: models.py:24 -msgid "action flag" -msgstr "ആകàµà´·à´¨àµâ€ à´«àµà´³à´¾à´—àµ" - -#: models.py:25 -msgid "change message" -msgstr "സനàµà´¦àµ‡à´¶à´‚ മാറàµà´±àµà´•" - -#: models.py:28 -msgid "log entry" -msgstr "ലോഗൠഎനàµà´Ÿàµà´°à´¿" - -#: models.py:29 -msgid "log entries" -msgstr "ലോഗൠഎനàµà´Ÿàµà´°à´¿à´•à´³àµâ€" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "à´’à´¨àµà´¨àµà´®à´¿à´²àµà´²" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s മാറàµà´±à´¿." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ഉം" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" ചേരàµâ€à´¤àµà´¤àµ." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" à´¨àµà´±àµ† %(list)s മാറàµà´±à´¿." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" ഡിലീറàµà´±àµ ചെയàµà´¤àµ." - -#: options.py:645 -msgid "No fields changed." -msgstr "ഒരൠമാറàµà´±à´µàµà´®à´¿à´²àµà´²." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" വിജയകരമായി കൂടàµà´Ÿà´¿à´šàµà´šàµ‡à´°àµà´¤àµà´¤àµ." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "താഴെ നിനàµà´¨àµ വീണàµà´Ÿàµà´‚ മാറàµà´±à´‚ വരàµà´¤àµà´¤à´¾à´‚" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "%s à´’à´¨àµà´¨àµ കൂടി ചേരàµâ€à´•àµà´•à´¾à´‚" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" à´²àµâ€ മാറàµà´±à´‚ വരàµà´¤àµà´¤à´¿." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" കൂടàµà´Ÿà´¿ ചേരàµâ€à´¤àµà´¤àµ. താഴെ നിനàµà´¨àµà´‚ മാറàµà´±à´‚ വരàµà´¤àµà´¤à´¾à´‚." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "ആകàµà´·à´¨àµâ€ നടപàµà´ªà´¿à´²à´¾à´•àµà´•àµ‡à´£àµà´Ÿ വകകളàµâ€ തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´£à´‚. à´’à´¨àµà´¨àµà´‚ മാറàµà´±à´¿à´¯à´¿à´Ÿàµà´Ÿà´¿à´²àµà´²." - -#: options.py:846 -msgid "No action selected." -msgstr "ആകàµà´·à´¨àµŠà´¨àµà´¨àµà´‚ തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤à´¿à´²àµà´²." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s ചേരàµâ€à´•àµà´•àµà´•" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(key)r à´Žà´¨àµà´¨ à´ªàµà´°à´¾à´¥à´®à´¿à´• കീ ഉളàµà´³ %(name)s വസàµà´¤àµ à´’à´¨àµà´¨àµà´‚ നിലവിലിലàµà´²." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s മാറàµà´±à´¾à´‚" - -#: options.py:1065 -msgid "Database error" -msgstr "ഡേറàµà´±à´¾à´¬àµ‡à´¸àµ തകരാറാണàµ." - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s à´²àµâ€ മാറàµà´±à´‚ വരàµà´¤àµà´¤à´¿." -msgstr[1] "%(count)s %(name)s à´²àµâ€ മാറàµà´±à´‚ വരàµà´¤àµà´¤à´¿." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤àµ." -msgstr[1] "%(total_count)sഉം തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤àµ." - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "%(cnt)s à´²àµâ€ à´’à´¨àµà´¨àµà´‚ തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤à´¿à´²àµà´²." - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" ഡിലീറàµà´±àµ ചെയàµà´¤àµ." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "%s ലെ മാറàµà´±à´™àµà´™à´³àµâ€." - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "ലോഗàµ-ഇനàµâ€" - -#: sites.py:375 -msgid "Site administration" -msgstr "സൈറàµà´±àµ ഭരണം" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s ഭരണം" - -#: widgets.py:75 -msgid "Date:" -msgstr "തീയതി:" - -#: widgets.py:75 -msgid "Time:" -msgstr "സമയം:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "തിരയàµà´•" - -#: widgets.py:246 -msgid "Add Another" -msgstr "à´’à´¨àµà´¨àµ കൂടി ചേരàµâ€à´•àµà´•àµà´•" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "പേജൠകണàµà´Ÿà´¿à´²àµà´²" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "à´•àµà´·à´®à´¿à´•àµà´•à´£à´‚, ആവശàµà´¯à´ªàµà´ªàµ†à´Ÿàµà´Ÿ പേജൠകണàµà´Ÿàµ†à´¤àµà´¤à´¾à´¨àµâ€ à´•à´´à´¿à´žàµà´žà´¿à´²àµà´²." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "പൂമàµà´–à´‚" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "സെരàµâ€à´µà´°àµâ€ തകരാറാണàµ" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "സെരàµâ€à´µà´°àµâ€ തകരാറാണൠ(500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "സെരàµâ€à´µà´°àµâ€ തകരാറാണൠ(500)" - -#: 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 "" -"à´Žà´¨àµà´¤àµ‹ തകരാറàµà´£àµà´Ÿàµ. ഉടനàµâ€ പരിഹരികàµà´•à´¾à´¨à´¾à´¯à´¿ സൈറàµà´±àµ നിയനàµà´¤àµà´°à´•à´°àµâ€à´•àµà´•àµ à´‡-മെയിലàµâ€ വഴി à´°à´¿à´ªàµà´ªàµ‹à´°àµâ€à´Ÿàµà´Ÿàµ " -"ചെയàµà´¤à´¿à´Ÿàµà´Ÿàµà´£àµà´Ÿàµ.ദയവായി കാതàµà´¤à´¿à´°à´¿à´•àµà´•àµà´•." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ ആകàµà´·à´¨àµâ€ നടപàµà´ªà´¿à´²à´¾à´•àµà´•àµà´•" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Go" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "à´Žà´²àµà´²à´¾ പേജിലേയàµà´‚ വസàµà´¤àµà´•àµà´•à´³àµâ€ തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´¨àµâ€ ഇവിടെ à´•àµà´²à´¿à´•àµ ചെയàµà´¯àµà´•." - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "à´®àµà´´àµà´µà´¨àµâ€ %(total_count)s %(module_name)s ഉം തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤à´¤àµ റദàµà´¦à´¾à´•àµà´•àµà´•." - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "à´¸àµà´µà´¾à´—തം, " - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "സഹായകàµà´•àµà´±à´¿à´ªàµà´ªàµà´•à´³àµâ€" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "പാസൠവേരàµâ€à´¡àµ മാറàµà´±àµà´•." - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "à´ªàµà´±à´¤àµà´¤àµ à´•à´Ÿà´•àµà´•àµà´•." - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "ജാംഗോ സൈറàµà´±àµ à´…à´¡àµà´®à´¿à´¨àµâ€" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "ജാംഗോ ഭരണം" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Add" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "à´šà´°à´¿à´¤àµà´°à´‚" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "View on site" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "ദയവായി താഴെയàµà´³àµà´³ തെറàµà´±àµ പരിഹരികàµà´•àµà´•." -msgstr[1] "ദയവായി താഴെയàµà´³àµà´³ തെറàµà´±àµà´•à´³àµâ€ പരിഹരികàµà´•àµà´•." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Add %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filter" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Delete" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s ഡിലീറàµà´±àµ ചെയàµà´¯àµà´®àµà´ªàµ‹à´³àµâ€ à´…à´¤àµà´®à´¾à´¯à´¿ ബനàµà´§à´®àµà´³àµà´³ " -"വസàµà´¤àµà´•àµà´•à´³àµà´‚ഡിലീറàµà´±àµ ആവàµà´‚. പകàµà´·àµ‡ നിങàµà´™à´³àµâ€à´•àµà´•àµ താഴെ പറഞàµà´ž തരം വസàµà´¤àµà´•àµà´•à´³àµâ€ ഡിലീറàµà´±àµ ചെയàµà´¯à´¾à´¨àµà´³àµà´³ à´…à´¨àµà´®à´¤à´¿ " -"ഇലàµà´²:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"%(object_name)s \"%(escaped_object)s\" ഡിലീറàµà´±àµ ചെയàµà´¯à´£à´®àµ†à´¨àµà´¨àµ തീരàµâ€à´šàµà´šà´¯à´¾à´£àµ‹?à´…à´¤àµà´®à´¾à´¯à´¿ " -"ബനàµà´§à´®àµà´³àµà´³ താഴെപàµà´ªà´±à´¯àµà´¨àµà´¨ വസàµà´¤àµà´•àµà´•à´³àµ†à´²àµà´²à´¾à´‚ ഡിലീറàµà´±àµ ആവàµà´‚:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "അതെ, തീരàµâ€à´šàµà´šà´¯à´¾à´£àµ" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "à´’à´¨àµà´¨à´¿à´²àµ‡à´±àµ† വസàµà´¤àµà´•àµà´•à´³àµâ€ ഡിലീറàµà´±àµ ചെയàµà´¤àµ‹à´³àµ‚" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " By %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Models available in the %(name)s application." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "മാറàµà´±àµà´•" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "à´’à´¨àµà´¨à´¿à´²àµà´‚ മാറàµà´±à´‚ വരàµà´¤àµà´¤à´¾à´¨àµà´³àµà´³ à´…à´¨àµà´®à´¤à´¿ ഇലàµà´²." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "സമീപകാല à´ªàµà´°à´µàµà´°àµà´¤àµà´¤à´¿à´•à´³àµâ€" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "à´Žà´¨àµà´±àµ† à´ªàµà´°à´µàµà´°àµà´¤àµà´¤à´¿à´•à´³àµâ€" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "à´’à´¨àµà´¨àµà´‚ ലഭàµà´¯à´®à´²àµà´²" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "ഉളàµà´³à´Ÿà´•àµà´•à´‚ അറിയിലàµà´²." - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"നിങàµà´™à´³àµà´Ÿàµ† ഡേറàµà´±à´¾à´¬àµ‡à´¸àµ ഇനàµâ€à´¸àµà´Ÿà´¾à´²àµ‡à´·à´¨à´¿à´²àµâ€ à´Žà´¨àµà´¤àµ‹ പിശകàµà´£àµà´Ÿàµ. ശരിയായ ടേബിളàµà´•à´³àµâ€ ഉണàµà´Ÿàµ†à´¨àµà´¨àµà´‚ ഡേറàµà´±à´¾à´¬àµ‡à´¸àµ " -"വായനായോഗàµà´¯à´®à´¾à´£àµ†à´¨àµà´¨àµà´‚ ഉറപàµà´ªàµ വരàµà´¤àµà´¤àµà´•." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "യൂസരàµâ€ നാമം" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "പാസൠവേരàµâ€à´¡àµ" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "തീയതി/സമയം" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "യൂസരàµâ€" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "ആകàµà´·à´¨àµâ€" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"à´ˆ വസàµà´¤àµà´µà´¿à´¨àµà´±àµ† മാറàµà´±à´™àµà´™à´³àµà´Ÿàµ† à´šà´°à´¿à´¤àµà´°à´‚ ലഭàµà´¯à´®à´²àµà´². à´’à´°àµà´ªà´•àµà´·àµ† ഇതൠഅഡàµà´®à´¿à´¨àµâ€ സൈറàµà´±àµ വഴി " -"ചേരàµâ€à´¤àµà´¤à´¤à´¾à´¯à´¿à´°à´¿à´•àµà´•à´¿à´²àµà´²." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "à´Žà´²àµà´²à´¾à´‚ കാണടàµà´Ÿàµ†" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "സേവൠചെയàµà´¯à´£à´‚" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "പരതàµà´•" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s results" -msgstr[1] "%(counter)s results" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "ആകെ %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "à´ªàµà´¤à´¿à´¯à´¤à´¾à´¯à´¿ സേവൠചെയàµà´¯à´£à´‚" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "സേവൠചെയàµà´¤ ശേഷം വേറെ ചേരàµâ€à´•àµà´•à´£à´‚" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "സേവൠചെയàµà´¤ ശേഷം മാറàµà´±à´‚ വരàµà´¤àµà´¤à´¾à´‚" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "ആദàµà´¯à´‚, യൂസരàµâ€ നാമവàµà´‚ പാസൠവേരàµâ€à´¡àµà´‚ നലàµà´•à´£à´‚. പിനàµà´¨àµ†, കൂടàµà´¤à´²àµâ€ കാരàµà´¯à´™àµà´™à´³àµâ€ മാറàµà´±à´¾à´µàµà´¨àµà´¨à´¤à´¾à´£àµ." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Enter a username and password." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "%(username)s നൠപàµà´¤à´¿à´¯ പാസൠവേരàµâ€à´¡àµ നലàµà´•àµà´•." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "പാസൠവേരàµâ€à´¡àµ" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "പാസൠവേരàµâ€à´¡àµ (വീണàµà´Ÿàµà´‚)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "പാസൠവേരàµâ€à´¡àµ à´®àµà´•à´³à´¿à´²àµ† പോലെ തനàµà´¨àµ† നലàµà´•àµà´•. (ഉറപàµà´ªàµ വരàµà´¤àµà´¤à´¾à´¨à´¾à´£àµ.)" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "%(verbose_name)s à´’à´¨àµà´¨àµ കൂടി ചേരàµâ€à´•àµà´•àµà´•" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "നീകàµà´•à´‚ ചെയàµà´¯àµà´•" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "ഡിലീറàµà´±àµ ചെയàµà´¯à´Ÿàµà´Ÿàµ†?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "à´ˆ വെബൠസൈറàµà´±à´¿à´²àµâ€ à´•àµà´±àµ† നലàµà´² സമയം ചെലവഴിചàµà´šà´¤à´¿à´¨àµ നനàµà´¦à´¿." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "വീണàµà´Ÿàµà´‚ ലോഗàµ-ഇനàµâ€ ചെയàµà´¯àµà´•." - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "പാസൠവേരàµâ€à´¡àµ മാറàµà´±à´‚" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "പാസൠവേരàµâ€à´¡àµ മാറàµà´±à´‚ വിജയിചàµà´šàµ" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "നിങàµà´™à´³àµà´Ÿàµ† പാസൠവേരàµâ€à´¡àµ മാറàµà´±à´¿à´•àµà´•à´´à´¿à´žàµà´žàµ." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"à´¸àµà´°à´•àµà´·à´¯àµà´•àµà´•à´¾à´¯à´¿ നിങàµà´™à´³àµà´Ÿàµ† പഴയ പാസൠവേരàµâ€à´¡àµ നലàµà´•àµà´•. പിനàµà´¨àµ†, à´ªàµà´¤à´¿à´¯ പാസൠവേരàµâ€à´¡àµ à´°à´£àµà´Ÿàµ തവണ നലàµà´•àµà´•. " -"(à´Ÿà´¯àµà´ªàµ ചെയàµà´¤à´¤àµ ശരിയാണെനàµà´¨àµ ഉറപàµà´ªà´¾à´•àµà´•à´¾à´¨àµâ€)" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "പഴയ പാസൠവേരàµâ€à´¡àµ" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "à´ªàµà´¤à´¿à´¯ പാസൠവേരàµâ€à´¡àµ" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "à´Žà´¨àµà´±àµ† പാസൠവേരàµâ€à´¡àµ മാറàµà´±à´£à´‚" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "പാസൠവേരàµâ€à´¡àµ à´ªàµà´¨à´¸àµà´¥à´¾à´ªà´¿à´•àµà´•à´²àµâ€" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "പാസൠവേരàµâ€à´¡àµ à´ªàµà´¨à´¸àµà´¥à´¾à´ªà´¿à´•àµà´•à´²àµâ€ പൂരàµâ€à´£à´‚" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "നിങàµà´™à´³àµà´Ÿàµ† പാസൠവേരàµâ€à´¡àµ തയàµà´¯à´¾à´°àµâ€. ഇനി ലോഗàµ-ഇനàµâ€ ചെയàµà´¯à´¾à´‚." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "പാസൠവേരàµâ€à´¡àµ à´ªàµà´¨à´¸àµà´¥à´¾à´ªà´¿à´•àµà´•à´²àµâ€ ഉറപàµà´ªà´¾à´•àµà´•à´²àµâ€" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "à´ªàµà´¤à´¿à´¯ പാസൠവേരàµâ€à´¡àµ നലàµà´•àµ‚" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"ദയവായി നിങàµà´™à´³àµà´Ÿàµ† à´ªàµà´¤à´¿à´¯ പാസൠവേരàµâ€à´¡àµ à´°à´£àµà´Ÿàµ തവണ നലàµà´•à´£à´‚. ശരിയായാണൠടൈപàµà´ªàµ ചെയàµà´¤à´¤àµ à´Žà´¨àµà´¨àµ " -"ഉറപàµà´ªà´¿à´•àµà´•à´¾à´¨à´¾à´£àµ." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "à´ªàµà´¤à´¿à´¯ പാസൠവേരàµâ€à´¡àµ:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "പാസൠവേരàµâ€à´¡àµ ഉറപàµà´ªà´¾à´•àµà´•àµ‚:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "പാസൠവേരàµâ€à´¡àµ à´ªàµà´¨à´¸àµà´¥à´¾à´ªà´¿à´•àµà´•à´²àµâ€ പരാജയം" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"പാസൠവേരàµâ€à´¡àµ à´ªàµà´¨à´¸àµà´¥à´¾à´ªà´¿à´•àµà´•à´¾à´¨àµâ€ നലàµà´•à´¿à´¯ ലിങàµà´•àµ യോഗàµà´¯à´®à´²àµà´². ഒരൠപകàµà´·àµ‡, അതൠമàµà´¨àµà´ªàµ തനàµà´¨àµ† ഉപയോഗിചàµà´šàµ " -"à´•à´´à´¿à´žàµà´žà´¤à´¾à´µà´¾à´‚. à´ªàµà´¤à´¿à´¯ ഒരൠലിങàµà´•à´¿à´¨àµ അപേകàµà´·à´¿à´•àµà´•àµ‚." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "പാസൠവേരàµâ€à´¡àµ à´ªàµà´¨à´¸àµà´¥à´¾à´ªà´¿à´•àµà´•à´²àµâ€ വിജയം" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"നിങàµà´™à´³àµà´Ÿàµ† പാസൠവേരàµâ€à´¡àµ à´ªàµà´¨à´¸àµà´¥à´¾à´ªà´¿à´•àµà´•à´¾à´¨à´¾à´¯à´¿ നിരàµâ€à´¦àµà´¦àµ‡à´¶à´™àµà´™à´³àµâ€ à´…à´Ÿà´™àµà´™à´¿à´¯ ഒരൠഈ-മെയിലàµâ€ നിങàµà´™à´³àµâ€ " -"നലàµà´•à´¿à´¯à´µà´¿à´²à´¾à´¸à´¤àµà´¤à´¿à´²àµâ€ അയചàµà´šà´¿à´Ÿàµà´Ÿàµà´£àµà´Ÿàµ. അതൠനിങàµà´™à´³àµâ€à´•àµà´•àµ ഉടനàµâ€ ലഭികàµà´•àµ‡à´£àµà´Ÿà´¤à´¾à´£àµ." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "ദയവായി താഴെ പറയàµà´¨àµà´¨ പേജൠസനàµà´¦à´°àµâ€à´¶à´¿à´šàµà´šàµ à´ªàµà´¤à´¿à´¯ പാസൠവേരàµâ€à´¡àµ തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "നിങàµà´™à´³àµâ€ മറനàµà´¨àµ†à´™àµà´•à´¿à´²àµâ€, നിങàµà´™à´³àµà´Ÿàµ† യൂസരàµâ€ നാമം, :" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "à´žà´™àµà´™à´³àµà´Ÿàµ† സൈറàµà´±àµ ഉപയോഗിചàµà´šà´¤à´¿à´¨àµ നനàµà´¦à´¿!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "The %(site_name)s team" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"പാസൠവേരàµâ€à´¡àµ മറനàµà´¨àµ‹? നിങàµà´™à´³àµà´Ÿàµ† à´‡-മെയിലàµâ€ വിലാസം നലàµà´•àµ‚, à´ªàµà´¤à´¿à´¯ പാസൠവേരàµâ€à´¡àµ à´¸àµà´¥à´¾à´ªà´¿à´•àµà´•à´¾à´¨à´¾à´¯à´¿ à´žà´™àµà´™à´³àµâ€ " -"നിരàµâ€à´¦àµà´¦àµ‡à´¶à´™àµà´™à´³àµâ€ à´† വിലാസതàµà´¤à´¿à´²àµâ€ അയകàµà´•à´¾à´‚." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "à´‡-മെയിലàµâ€ വിലാസം:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "à´Žà´¨àµà´±àµ† പാസൠവേരàµâ€à´¡àµ à´ªàµà´¨à´¸àµà´¥à´¾à´ªà´¿à´•àµà´•àµ‚" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "à´Žà´²àµà´²à´¾ തീയതികളàµà´‚" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµ‚" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "മാറàµà´±à´¾à´¨àµà´³àµà´³ %s തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµ‚" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo deleted file mode 100644 index adba16e45..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po deleted file mode 100644 index 86d4b9c68..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ml/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Malayalam \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "ലഭàµà´¯à´®à´¾à´¯ %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "à´Žà´²àµà´²à´¾à´‚ തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµà´•" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "à´ªàµà´¤à´¿à´¯à´¤àµ ചേരàµâ€à´•àµà´•àµ‚" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "നീകàµà´•à´‚ ചെയàµà´¯àµ‚" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "ഉചിതമായതൠതെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤ ശേഷം à´•àµà´³à´¿à´•àµ ചെയàµà´¯àµ‚" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "à´Žà´²àµà´²à´¾à´‚ à´•àµà´³à´¿à´¯à´°àµâ€ ചെയàµà´¯àµ‚" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(cnt)sà´²àµâ€ %(sel)s തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤àµ" -msgstr[1] "%(cnt)sà´²àµâ€ %(sel)s à´Žà´£àµà´£à´‚ തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤àµ" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"വരàµà´¤àµà´¤à´¿à´¯ മാറàµà´±à´™àµà´™à´³àµâ€ സേവൠചെയàµà´¤à´¿à´Ÿàµà´Ÿà´¿à´²àµà´². ഒരൠആകàµà´·à´¨àµâ€ à´ªàµà´°à´¯àµ‹à´—à´¿à´šàµà´šà´¾à´²àµâ€ സേവൠചെയàµà´¯à´¾à´¤àµà´¤ മാറàµà´±à´™àµà´™à´³àµ†à´²àµà´²à´¾à´‚ " -"നഷàµà´Ÿà´ªàµà´ªàµ†à´Ÿàµà´‚." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"നിങàµà´™à´³àµâ€ ഒരൠആകàµà´·à´¨àµâ€ തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤à´¿à´Ÿàµà´Ÿàµà´£àµà´Ÿàµ. പകàµà´·àµ‡, കളങàµà´™à´³à´¿à´²àµ† മാറàµà´±à´™àµà´™à´³àµâ€ ഇനിയàµà´‚ സേവൠചെയàµà´¯à´¾à´¨àµà´£àµà´Ÿàµ. " -"ആദàµà´¯à´‚ സേവàµà´šàµ†à´¯àµà´¯à´¾à´¨à´¾à´¯à´¿ OK à´•àµà´²à´¿à´•àµ ചെയàµà´¯àµà´•. അതിനൠശേഷം ആകàµà´·à´¨àµâ€ à´’à´¨àµà´¨àµ കൂടി à´ªàµà´°à´¯àµ‹à´—à´¿à´•àµà´•àµ‡à´£àµà´Ÿà´¿ വരàµà´‚." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"നിങàµà´™à´³àµâ€ ഒരൠആകàµà´·à´¨àµâ€ തെരഞàµà´žàµ†à´Ÿàµà´¤àµà´¤à´¿à´Ÿàµà´Ÿàµà´£àµà´Ÿàµ. കളങàµà´™à´³à´¿à´²àµâ€ സേവൠചെയàµà´¯à´¾à´¤àµà´¤ മാറàµà´±à´™àµà´™à´³àµâ€ ഇലàµà´². നിങàµà´™à´³àµâ€à´¸àµ‡à´µàµ ബടàµà´Ÿà´£àµâ€ " -"തനàµà´¨àµ†à´¯à´¾à´£àµ‹ അതോ ഗോ ബടàµà´Ÿà´£à´¾à´£àµ‹ ഉദàµà´¦àµ‡à´¶à´¿à´šàµà´šà´¤àµ." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "ജനàµà´µà´°à´¿ ഫെബൃവരി മാരàµâ€à´šàµà´šàµ à´à´ªàµà´°à´¿à´²àµâ€ മെയൠജൂണàµâ€ ജൂലൈ ആഗസàµà´¤àµ സെപàµà´¤à´‚ബരàµâ€ à´’à´•àµà´Ÿàµ‹à´¬à´°àµâ€ നവംബരàµâ€ ഡിസംബരàµâ€" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "à´žà´¾ തി ചൊ ബൠവàµà´¯à´¾ വെ à´¶" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "കാണടàµà´Ÿàµ†" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "മറയടàµà´Ÿàµ†" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ഞായരàµâ€ തിങàµà´•à´³àµâ€ ചൊവàµà´µ à´¬àµà´§à´¨àµâ€ à´µàµà´¯à´¾à´´à´‚ വെളàµà´³à´¿ ശനി" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "ഇപàµà´ªàµ‹à´³àµâ€" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "ഘടികാരം (à´•àµà´²àµ‹à´•àµà´•àµ)" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "സമയം തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•àµ‚" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "à´…à´°àµâ€à´§à´°à´¾à´¤àµà´°à´¿" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "ഉചàµà´š" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "റദàµà´¦à´¾à´•àµà´•àµ‚" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "ഇനàµà´¨àµ" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "കലണàµà´Ÿà´°àµâ€" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "ഇനàµà´¨à´²àµ†" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "നാളെ" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo deleted file mode 100644 index e057d428e..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.po deleted file mode 100644 index ff85bf23f..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/django.po +++ /dev/null @@ -1,808 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-05 09:54+0000\n" -"Last-Translator: Ankhbayar \n" -"Language-Team: Mongolian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(items)s ÑÑÑ %(count)d-ийг амжилттай уÑтгалаа." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "%(name)s уÑтгаж чадахгүй." - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "ИтгÑлтÑй байна уу?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "СонгоÑон %(verbose_name_plural)s-ийг уÑтга" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                          By %s:

                                                                                                                                                          \n" -"
                                                                                                                                                            \n" -msgstr "" -"

                                                                                                                                                            %s :

                                                                                                                                                            \n" -"
                                                                                                                                                              \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Бүх " - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Тийм" - -#: filterspecs.py:139 -msgid "No" -msgstr "Үгүй" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Тодорхойгүй" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Бүх өдөр" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Өнөөдөр" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "ӨнгөрÑөн долоо хоног" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Ð­Ð½Ñ Ñар" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Ð­Ð½Ñ Ð¶Ð¸Ð»" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Ð¥ÑÑ€ÑглÑгчийн нÑÑ€, нууц үгÑÑ Ð·Ó©Ð² оруулна уу. Том жижиг Ò¯ÑÑг Ñлгаатайг " -"анхаарна уу." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "ОрÑон Ñ…ÑƒÑƒÐ´Ð°Ñ Ñ‚Ð°Ð½ÑŒ хүчингүй болÑон тул ахин нÑвтрÑÐ½Ñ Ò¯Ò¯." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Цахим шуудангийн хаÑг Ñ…ÑÑ€ÑглÑгчийн нÑÑ€ биш. Оронд нь '%s' -ийг оруулна уу." - -#: helpers.py:19 -msgid "Action:" -msgstr "ҮйлдÑл:" - -#: models.py:19 -msgid "action time" -msgstr "үйлдлийн хугацаа" - -#: models.py:22 -msgid "object id" -msgstr "обектийн id" - -#: models.py:23 -msgid "object repr" -msgstr "обектийн хамаарал" - -#: models.py:24 -msgid "action flag" -msgstr "үйлдÑлийн Ñ‚ÑмдÑг" - -#: models.py:25 -msgid "change message" -msgstr "өөрчлөлтийн мÑдÑÑлÑл" - -#: models.py:28 -msgid "log entry" -msgstr "лог өгөгдөл" - -#: models.py:29 -msgid "log entries" -msgstr "лог өгөгдөлүүд" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "ХооÑон" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "ӨөрчлөгдÑөн %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ба" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "ÐÑмÑгдÑÑн %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\"-ийн өөрчлөгдÑөн %(list)s" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "УÑтгаÑан %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "ӨөрчилÑөн талбар алга байна." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr " %(name)s \"%(obj)s\" амжилттай нÑмÑгдлÑÑ." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Доорх Ñ…ÑÑÑгт үүнийг ахин заÑварлах боломжтой." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Доорх Ñ…ÑÑÑгт Ó©Ó©Ñ€ %s нÑмÑÑ… боломжтой." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr " %(name)s \"%(obj)s\" амжилттай өөрчлөгдлөө. " - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" амжилттай нÑмÑгдлÑÑ. Доорх Ñ…ÑÑÑгт үүнийг ахин заÑварлах " -"боломжтой." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"ҮйлдÑл хийхийн тулд Та Ñдаж 1-ийг Ñонгох Ñ…ÑÑ€ÑгтÑй. Өөрчилөлт хийгдÑÑнгүй." - -#: options.py:846 -msgid "No action selected." -msgstr "ҮйлдÑл Ñонгоогүй." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s-ийг нÑмÑÑ…" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s обектийн үндÑÑн түлхүүр %(key)r олдохгүй байна." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s-ийг өөрчлөх" - -#: options.py:1065 -msgid "Database error" -msgstr "Өгөгдлийн Ñангийн алдаа" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s-ийг амжилттай өөрчиллөө." -msgstr[1] "%(count)s %(name)s-ийг амжилттай өөрчиллөө." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "Бүгд %(total_count)s ÑонгогдÑон" -msgstr[1] "Бүгд %(total_count)s ÑонгогдÑон" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "%(cnt)s Ð¾Ð¾Ñ 0 ÑонгоÑон" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr " %(name)s \"%(obj)s\" амжилттай уÑтгагдлаа." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Өөрчлөлтийн түүх: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "ÐÑвтрÑÑ…" - -#: sites.py:375 -msgid "Site administration" -msgstr "Сайтын удирдлага" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s удирдлага" - -#: widgets.py:75 -msgid "Date:" -msgstr "Огноо:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Цаг:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Хайх" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Ðхиад нÑмÑÑ…" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Ð¥ÑƒÑƒÐ´Ð°Ñ Ð¾Ð»Ð´Ñонгүй." - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Уучлаарай, хандахыг Ñ…Ò¯ÑÑÑн Ñ…ÑƒÑƒÐ´Ð°Ñ Ñ‚Ð°Ð½ÑŒ олдÑонгүй." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Ðүүр" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Серверийн алдаа" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Серверийн алдаа (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Серверийн алдаа (500)" - -#: 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 "" -"Ðлдаа гарÑан байна. Ð­Ð½Ñ Ñ‚Ð°Ð»Ð°Ð°Ñ€ цахим шуудангаар дамжуулан Ñайтын удирдлагад " -"мÑдÑгдÑж нÑн даруй заÑах Ñ…ÑÑ€ÑгтÑй. ХүлÑÑцтÑй хандÑанд баÑрлалаа." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "СонгоÑон үйлдÑлийг ажилуулах" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "ГүйцÑтгÑÑ…" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Бүх хуудаÑнууд дÑÑрх объектуудыг Ñонгох" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Бүгдийг Ñонгох %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "СонгоÑонг цÑвÑрлÑÑ…" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Тавтай морилно уу" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Баримтжуулалт" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Ðууц үг өөрчлөх" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Гарах" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Сайтын удирдлага" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Удирдлага" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "ÐÑмÑÑ…" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Түүх" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Ð¡Ð°Ð¹Ñ‚Ð°Ð°Ñ Ñ…Ð°Ñ€Ð°Ñ…" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Доорх алдааг заÑна уу." -msgstr[1] "Доорх алдаануудыг заÑна уу." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s нÑмÑÑ…" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Шүүлтүүр" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "УÑтгах" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s'-ийг уÑтгавал холбогдох объект нь уÑтах " -"ч бүртгÑл тань дараах төрлийн объектуудийг уÑтгах зөвшөөрөлгүй байна:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -" %(object_name)s обектийг уÑтгаж байна. '%(escaped_object)s' холбоотой " -"хамгаалагдÑан обектуудыг заавал утÑгах Ñ…ÑÑ€ÑгтÑй :" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Та %(object_name)s \"%(escaped_object)s\"-ийг уÑтгахдаа итгÑлтÑй байна уу? " -"Үүнийг уÑтгавал дараах холбогдох Ð·Ò¯Ð¹Ð»Ñ Ð½ÑŒ бүгд уÑтана:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Тийм, итгÑлтÑй байна." - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Олон обектууд уÑтгах" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"СонгоÑон %(objects_name)s обектуудыг уÑтгаÑанаар хамаатай бүх обкетууд уÑтах " -"болно. ГÑхдÑÑ Ñ‚Ð°Ð½ÑŒÐ´ Ñрх ÑдгÑÑÑ€ төрлийн обектуудыг утÑгах Ñрх байхгүй байна: " - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"%(objects_name)s обектуудыг утÑгаж байна дараах холбоотой хамгаалагдÑан " -"обектуудыг уÑтгах шаардлагатай:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Та %(objects_name)s ийг уÑтгах гÑж байна итгÑлтÑй байна? Дараах обектууд " -"болон холбоотой Ð·Ò¯Ð¹Ð»Ñ Ñ…Ð°Ð¼Ñ‚ уÑтагдах болно:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s -ÑÑÑ€" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s програмд загварууд байна." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Өөрчлөх" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Та Ñмар нÑг зүйл заÑварлах зөвшөөрөлгүй байна." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Сүүлд хийÑÑн үйлдлүүд" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Миний үйлдлүүд" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "ҮйлдÑл алга" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Тодорхойгүй агуулга" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Өгөгдлийн Ñангийн Ñмар нÑг зүйл буруу ÑуугдÑан байна. Өгөгдлийн Ñангийн " -"зохих Ñ…Ò¯ÑнÑгт Ò¯Ò¯ÑгÑгдÑÑн ÑÑÑÑ…, өгөгдлийн Ñанг зохих Ñ…ÑÑ€ÑглÑгч унших " -"боломжтой байгаа ÑÑÑхийг шалгаарай." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Ð¥ÑÑ€ÑглÑгчийн нÑÑ€:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Ðууц үг:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Огноо/цаг" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Ð¥ÑÑ€ÑглÑгч" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "ҮйлдÑл" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Уг объектÑд өөрчлөлтийн түүх байхгүй байна. Магадгүй үүнийг уг удирдлагын " -"Ñайтаар дамжуулан нÑмÑÑгүй байх." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Бүгдийг харуулах" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Хадгалах" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Хайлт" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s үр дүн" -msgstr[1] "%(counter)s үр дүн" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "Ðийт %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "ШинÑÑÑ€ хадгалах" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Хадгалаад өөрийг нÑмÑÑ…" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Хадгалаад нÑмж заÑах" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"ЭхлÑÑд Ñ…ÑÑ€ÑглÑгчийн нÑÑ€ нууц үгÑÑ Ð¾Ñ€ÑƒÑƒÐ»Ð½Ð° уу. ИнгÑÑнÑÑÑ€ та Ñ…ÑÑ€ÑглÑгчийн " -"Ñонголтыг нÑмж заÑварлах боломжтой болно. " - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Ð¥ÑÑ€ÑглÑгчийн нÑÑ€ ба нууц үгÑÑ Ð¾Ñ€ÑƒÑƒÐ»Ð½Ð°." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "%(username)s.Ñ…ÑÑ€ÑглÑгчид ÑˆÐ¸Ð½Ñ Ð½ÑƒÑƒÑ† үг оруулна уу." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Ðууц үг " - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Ðууц үг (ахиад)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Батлахын тулд дÑÑрх нууц үгÑÑ Ð°Ñ…Ð¸Ð½ Ñ…Ð¸Ð¹Ð½Ñ Ò¯Ò¯." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Ó¨Ó©Ñ€ %(verbose_name)s нÑмÑÑ… " - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "ХаÑах" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "УÑтгах уу?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Манай вÑб Ñайтыг ашиглаÑанд баÑрлалаа." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Ðхин нÑвтрÑÑ… " - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Ðууц үгийн өөрчлөлт" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Ðууц үгийн өөрчлөлт амжилттай" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Ðууц үг тань өөрчлөгдлөө." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Ðюулгүй байдлын үүднÑÑÑ Ñ…ÑƒÑƒÑ‡Ð¸Ð½ нууц үгÑÑ Ð¾Ñ€ÑƒÑƒÐ»Ð°Ð°Ð´ ÑˆÐ¸Ð½Ñ Ð½ÑƒÑƒÑ† үгÑÑ Ñ…Ð¾Ñ‘Ñ€ удаа " -"Ñ…Ð¸Ð¹Ð½Ñ Ò¯Ò¯. ИнгÑÑнÑÑÑ€ нууц үгÑÑ Ð·Ó©Ð² бичиж байгаа ÑÑÑхийг тань шалгах юм." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Хуучин нууц үг" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Ð¨Ð¸Ð½Ñ Ð½ÑƒÑƒÑ† үг" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Ðууц үгÑÑ Ñолих" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Ðууц үг шинÑчилÑÑ…" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Ðууц үг шинÑчилÑÑ… Ñвц дууÑлаа" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Та нууц үгтÑй боллоо. Одоо бүртгÑлд нÑвтрÑÑ… боломжтой." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Ðууц үг шинÑчилÑхийг баталгаажуулах" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Ð¨Ð¸Ð½Ñ Ð½ÑƒÑƒÑ† үг оруулах" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Ð¨Ð¸Ð½Ñ Ð½ÑƒÑƒÑ† үгÑÑ Ñ…Ð¾Ñ‘Ñ€ удаа оруулна уу. ИнгÑÑнÑÑÑ€ нууц үгÑÑ Ð·Ó©Ð² бичиж байгаа " -"ÑÑÑхийг тань шалгах юм. " - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Ð¨Ð¸Ð½Ñ Ð½ÑƒÑƒÑ† үг:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Ðууц үгÑÑ Ð±Ð°Ñ‚Ð»Ð°Ñ…:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Ðууц үг шинÑчилÑÑ… амжилтгүй боллоо" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Ðууц үг авах Ñ…Ð¾Ð»Ð±Ð¾Ð¾Ñ Ð±Ð¾Ð»Ð¾Ñ…Ð³Ò¯Ð¹ байна. Үүнийг аль Ñ…ÑÐ´Ð¸Ð¹Ð½Ñ Ñ…ÑÑ€ÑглÑÑнÑÑÑ Ð±Ð¾Ð»Ñон " -"байж болзошгүй. Ð¨Ð¸Ð½Ñ Ð½ÑƒÑƒÑ† үг авахаар Ñ…Ò¯ÑÑлт гаргана уу. " - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Ðууц үг шинÑчилÑÑ… амжилттай боллоо" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Таны оруулÑан цахим шуудангийн хаÑгаар нууц үг авах зааварчилгааг илгÑÑлÑÑ. " -"Ð­Ð½Ñ Ð·Ð°Ð°Ð²Ð°Ñ€Ñ‡Ð¸Ð»Ð³Ð°Ð° танд удахгүй очих болно. " - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Таны %(site_name)s Ñайт дах ÑрхÑÑÑ€ нууц үг ÑÑргÑÑÑ… Ñ…Ò¯ÑÑлт гаргаÑан ÑƒÑ‡Ñ€Ð°Ð°Ñ " -"ÑÐ½Ñ Ð¼Ð°Ð¹Ð» танд ирÑÑн." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Дараах Ñ…ÑƒÑƒÐ´Ð°Ñ Ñ€ÑƒÑƒ орон ÑˆÐ¸Ð½Ñ Ð½ÑƒÑƒÑ† үг Ñонгоно уу:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Ð¥ÑÑ€ÑглÑгчийн нÑÑ€ÑÑ Ð¼Ð°Ñ€Ñ‚Ñан бол :" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Манай Ñайтыг Ñ…ÑÑ€ÑглÑÑÑнд баÑрлалаа!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s баг" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Ðууц үгÑÑ Ð¼Ð°Ñ€Ñ‚Ñ‡Ð¸Ñ…Ñан уу? Доорх Ñ…ÑÑÑгт цахим шуудангийн хаÑгаа оруулвал бид " -"хаÑгаар тань шинийг авах зааварчилгаа Ñвуулах болно." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Цахим шуудангийн хаÑг:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Ðууц үгÑÑ ÑˆÐ¸Ð½ÑчлÑÑ…" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Бүх огноо" - -#: views/main.py:27 -msgid "(None)" -msgstr "(ХооÑон)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s-г Ñонго" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Өөрчлөх %s-г Ñонгоно уу" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo deleted file mode 100644 index ffe581573..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po deleted file mode 100644 index 03f7d1b6c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/mn/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Ankhbayar \n" -"Language-Team: Mongolian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Боломжтой %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Шүүлтүүр" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Бүгдийг Ñонго" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "ÐÑм" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "ХаÑ" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "СонгогдÑон %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Ð¡Ð¾Ð½Ð³Ð¾Ð»Ñ‚ÑƒÑƒÐ´Ð°Ð°Ñ Ñонгоод дарна уу " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Бүгдийг цÑвÑрлÑ" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s ÑÑÑ %(cnt)s ÑонгоÑон" -msgstr[1] "%(sel)s ÑÑÑ %(cnt)s ÑонгоÑон" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Хадгалаагүй өөрчлөлтүүд байна. Ð­Ð½Ñ Ò¯Ð¹Ð»Ð´Ñлийг хийвÑл өөрчлөлтүүд уÑтах болно." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Та 1 үйлдлийг ÑонгоÑон байна, гÑвч та өөрийн өөрчлөлтүүдÑÑ Ñ‚Ð¾Ð´Ð¾Ñ€Ñ…Ð¾Ð¹ " -"талбаруудад нь оруулагүй байна. OK дарж Ñануулна уу. Ð­Ð½Ñ Ò¯Ð¹Ð»Ð´Ð»Ð¸Ð¹Ð³ та дахин " -"хийх шаардлагатай." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Та 1 үйлдлийг ÑонгоÑон байна Ð±Ð°Ñ Ñ‚Ð° Ñмарваа өөрчлөлт оруулÑангүй. Та Save " -"товчлуур биш Go товчлуурыг хайж байгаа бололтой." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "Хулгана ҮхÑÑ€ Бар Туулай Луу Могой Морь Хонь Бич Тахиа Ðохой Гахай" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "ÐÑ Ð”Ð° ÐœÑ Ð›Ñ… Пү Ба БÑ" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "ҮзÑÑ…" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Ðуух" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ÐÑм Даваа ÐœÑгмар Лхагва ПүрÑв БааÑан БÑмба" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Одоо" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Цаг" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Цаг Ñонгох" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Шөнө дунд" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 цаг" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Үд дунд" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Болих" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Өнөөдөр" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Хуанли" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Өчигдөр" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Маргааш" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo deleted file mode 100644 index 0ccdaf339..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.po deleted file mode 100644 index 00a40ce39..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/django.po +++ /dev/null @@ -1,807 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: jonklo \n" -"Language-Team: Norwegian BokmÃ¥l <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Slettet %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Kan ikke slette %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Er du sikker?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Slett valgte %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                              By %s:

                                                                                                                                                              \n" -"
                                                                                                                                                                \n" -msgstr "" -"

                                                                                                                                                                Etter %s:

                                                                                                                                                                \n" -"
                                                                                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Alle" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ja" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nei" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Ukjent" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Når som helst" - -#: filterspecs.py:197 -msgid "Today" -msgstr "I dag" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Siste syv dager" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Denne måneden" - -#: filterspecs.py:205 -msgid "This year" -msgstr "I år" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Vennligst angi korrekt brukernavn og passord. Merk at det er forskjell på " -"små og store bokstaver." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Økten din har tidsavbrutt, vennligst logg inn igjen." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "E-postadressen er ikke brukernavnet ditt, prøv '%s' isteden." - -#: helpers.py:19 -msgid "Action:" -msgstr "Handling:" - -#: models.py:19 -msgid "action time" -msgstr "tid for handling" - -#: models.py:22 -msgid "object id" -msgstr "objekt-ID" - -#: models.py:23 -msgid "object repr" -msgstr "objekt repr" - -#: models.py:24 -msgid "action flag" -msgstr "handlingsflagg" - -#: models.py:25 -msgid "change message" -msgstr "endre melding" - -#: models.py:28 -msgid "log entry" -msgstr "logginnlegg" - -#: models.py:29 -msgid "log entries" -msgstr "logginnlegg" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ingen" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Endret %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "og" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Opprettet %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Endret %(list)s for %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Slettet %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Ingen felt endret." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" ble opprettet." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Du kan redigere videre nedenfor." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Du kan opprette ny %s nedenfor." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" ble endret." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" ble endret. Du kan redigere videre nedenfor." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Du må velge objekter for å utføre handlinger på dem. Ingen objekter har " -"blitt endret." - -#: options.py:846 -msgid "No action selected." -msgstr "Ingen handling valgt." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Opprett %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s-objekt med primærnøkkelen %(key)r finnes ikke." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Endre %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Databasefeil" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s ble endret." -msgstr[1] "%(count)s %(name)s ble endret." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s valgt" -msgstr[1] "Alle %(total_count)s valgt" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 av %(cnt)s valgt" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" ble slettet." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Endringshistorikk: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Logg inn" - -#: sites.py:375 -msgid "Site administration" -msgstr "Nettstedsadministrasjon" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s-administrasjon" - -#: widgets.py:75 -msgid "Date:" -msgstr "Dato:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Tid:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Oppslag" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Legg til ny" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Fant ikke siden" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Beklager, men siden du spør etter finnes ikke." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Hjem" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Tjenerfeil" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Tjenerfeil (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Tjenerfeil (500)" - -#: 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 "" -"Det har oppstått en feil. Feilen er blitt rapportert til administrator via e-" -"post, og vil bli fikset snart. Takk for din tålmodighet." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Utfør den valgte handlingen" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Gå" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Trykk her for å velge samtlige objekter fra alle sider" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Velg alle %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Nullstill valg" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Velkommen," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentasjon" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Endre passord" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Logg ut" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django administrasjonsside" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django-administrasjon" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Opprett" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historikk" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Vis på nettsted" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Vennligst korriger feilen under." -msgstr[1] "Vennligst korriger feilene under." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Opprett %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtrering" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Slett" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_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 '%(escaped_object)s', vil også slette " -"relaterte objekter, men du har ikke tillatelse til å slette følgende " -"objekttyper:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Sletting av %(object_name)s '%(escaped_object)s' krever sletting av følgende " -"beskyttede relaterte objekter:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Er du sikker på at du vil slette %(object_name)s \"%(escaped_object)s\"? " -"Alle de følgende relaterte objektene vil bli slettet:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ja, jeg er sikker" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Slett flere objekter" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Sletting av det valgte %(objects_name)s ville resultere i sletting av " -"relaterte objekter, men kontoen din har ikke tillatelse til å slette " -"følgende objekttyper:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Sletting av det valgte %(objects_name)s ville kreve sletting av følgende " -"beskyttede relaterte objekter:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Er du sikker på vil slette det valgte %(objects_name)s? De følgende " -"objektene og deres relaterte objekter vil bli slettet:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "Etter %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modeller tilgjengelig i %(name)s-applikasjonen." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Endre" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Du har ikke rettigheter til å redigere noe." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Siste handlinger" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mine handlinger" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ingen tilgjengelige" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Ukjent innhold" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Noe er galt med databaseinstallasjonen din. Sørg for at databasetabellene er " -"opprettet og at brukeren har de nødvendige rettigheter." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Brukernavn:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Passord:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Dato/tid" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Bruker" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Handling" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Dette objektet har ingen endringshistorikk. Det var sannsynligvis ikke " -"opprettet med administrasjonssiden." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Vis alle" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Lagre" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Søk" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultat" -msgstr[1] "%(counter)s resultater" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s totalt" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Lagre som ny" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Lagre og opprett ny" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Lagre og fortsett å redigere" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Skriv først inn brukernavn og passord. Deretter vil du få mulighet til å " -"endre flere brukerinnstillinger." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Oppgi brukernavn og passord." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Skriv inn et nytt passord for brukeren %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Passord" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Passord (gjenta)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Skriv inn det samme passordet som ovenfor, for verifisering." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Legg til ny %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Fjern" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Slette?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Takk for at du valgte å bruke kvalitetstid på nettstedet i dag." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Logg inn igjen" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Endre passord" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Passord endret" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Ditt passord ble endret." - -#: templates/registration/password_change_form.html:22 -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 "" -"Venligst oppgi ditt gamle passord av sikkerhetsgrunner. Oppgi deretter ditt " -"nye passord to ganger, slik at vi kan kontrollere at det er korrekt." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Gammelt passord" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nytt passord" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Endre passord" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Nullstill passord" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Passord nullstilt" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Passordet ditt er satt. Du kan nå logge inn." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Bekreftelse på nullstilt passord" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Oppgi nytt passord" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Venligst oppgi ditt nye passord to ganger, for å sikre at du oppgir det " -"korrekt." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nytt passord:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Gjenta nytt passord:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Passordet ble ikke nullstilt" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Nullstillingslinken er ugyldig, kanskje fordi den allerede har vært brukt. " -"Vennligst nullstill passordet ditt på nytt." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Passordet ble nullstilt" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Vi har sendt deg en e-post med instruksjoner for nullstilling av passord. Du " -"bør motta den om kort tid." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Du har mottatt denne e-posten fordi du har bedt om nullstilling av passordet " -"ditt for din konto på %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Vennligst gå til følgende side og velg et nytt passord:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Brukernavnet ditt, i tilfelle du har glemt det:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Takk for at du bruker siden vår!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Hilsen %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Glemt passordet ditt? Oppgi e-postadressen din under, så sender vi deg en e-" -"post med instruksjoner for nullstilling av passord." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-postadresse:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Nullstill mitt passord" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Alle datoer" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ingen)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Velg %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Velg %s du ønsker å endre" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo deleted file mode 100644 index f8527b11d..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po deleted file mode 100644 index 66ba2b380..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/nb/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: jonklo \n" -"Language-Team: Norwegian Bokmål <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Tilgjengelige %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filter" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Velg alle" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Ny" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Slett" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Valgte %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Velg ditt valg og klikk " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Fjern alle" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s av %(cnt)s valgt" -msgstr[1] "%(sel)s av %(cnt)s valgt" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Du har ulagrede endringer i individuelle felter. Hvis du utfører en " -"handling, vil dine ulagrede endringer gå tapt." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Du har valgt en handling, men du har ikke lagret dine endringer i " -"individuelle felter enda. Vennligst trykk OK for å lagre. Du må utføre " -"handlingen på nytt." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Du har valgt en handling, og har ikke gjort noen endringer i individuelle " -"felter. Du ser mest sannsynlig etter Gå-knappen, ikke Lagre-knappen." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Januar Februar Mars April Mai Juni Juli August September Oktober November " -"Desember" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M T O T F L" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Vis" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Skjul" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Søndag Mandag Tirsdag Onsdag Torsdag Fredag Lørdag" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Nå" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Klokke" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Velg et klokkeslett" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Midnatt" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "06:00" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "12:00" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Avbryt" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "I dag" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalender" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "I går" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "I morgen" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo deleted file mode 100644 index df4d27ac9..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.po deleted file mode 100644 index 3ccb14c96..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/django.po +++ /dev/null @@ -1,807 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: jeffrey \n" -"Language-Team: Dutch <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s succesvol verwijderd." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "%(name)s kan niet worden verwijderd " - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Weet u het zeker?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Verwijder geselecteerde %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                  By %s:

                                                                                                                                                                  \n" -"
                                                                                                                                                                    \n" -msgstr "" -"

                                                                                                                                                                    Op %s:

                                                                                                                                                                    \n" -"
                                                                                                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Alle" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ja" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nee" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Onbekend" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Elke datum" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Vandaag" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Afgelopen zeven dagen" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Deze maand" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Dit jaar" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Voer een correcte gebruikersnaam en wachtwoord in. Let op, de velden zijn " -"hoofdletter-gevoelig." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Uw sessie is verlopen, meld u opnieuw aan." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Uw e-mailadres is niet uw gebruikersnaam. Probeer '%s' eens." - -#: helpers.py:19 -msgid "Action:" -msgstr "Actie:" - -#: models.py:19 -msgid "action time" -msgstr "actietijd" - -#: models.py:22 -msgid "object id" -msgstr "object-id" - -#: models.py:23 -msgid "object repr" -msgstr "object-repr" - -#: models.py:24 -msgid "action flag" -msgstr "actievlag" - -#: models.py:25 -msgid "change message" -msgstr "wijzig bericht" - -#: models.py:28 -msgid "log entry" -msgstr "logregistratie" - -#: models.py:29 -msgid "log entries" -msgstr "logregistraties" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Geen" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s gewijzigd." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "en" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" toegevoegd." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(list)s aangepast voor %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" verwijderd." - -#: options.py:645 -msgid "No fields changed." -msgstr "Geen velden gewijzigd." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "De %(name)s \"%(obj)s\" is toegevoegd." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "U kunt dit hieronder weer bewerken." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "U kunt hieronder de volgende %s toevoegen." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Het wijzigen van %(name)s \"%(obj)s\" is geslaagd." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "De %(name)s \"%(obj)s\" was toegevoegd. U kunt het hieronder wijzigen." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Er moeten items worden geselecteerd om acties op uit te voeren. Geen items " -"zijn veranderd." - -#: options.py:846 -msgid "No action selected." -msgstr "Geen actie geselecteerd." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Toevoegen %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s object met primaire sleutel %(key)r bestaat niet." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Wijzig %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Databasefout" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s is succesvol gewijzigd." -msgstr[1] "%(count)s %(name)s zijn succesvol gewijzigd." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s geselecteerd" -msgstr[1] "Alle %(total_count)s geselecteerd" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 van de %(cnt)s geselecteerd" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "De verwijdering van %(name)s \"%(obj)s\" is geslaagd." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Wijzigingsgeschiedenis: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Inloggen" - -#: sites.py:375 -msgid "Site administration" -msgstr "Sitebeheer" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s beheer" - -#: widgets.py:75 -msgid "Date:" -msgstr "Datum:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Tijd:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Opzoeken" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Voeg nog één toe" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Pagina niet gevonden" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Onze excuses, maar de gevraagde pagina bestaat niet." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Voorpagina" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Serverfout" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Serverfout (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Serverfout (500)" - -#: 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 "" -"Er is een fout opgetreden. Dit is inmiddels doorgegeven aan de sitebeheerder " -"via e-mail en zal spoedig worden gerepareerd. Bedankt voor uw geduld." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Voer de geselecteerde actie uit" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Voer Uit" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Klik hier om alle objecten op alle pagina's te selecteren" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Selecteer alle %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Leeg selectie" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Welkom," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentatie" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Wachtwoord wijzigen" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Afmelden" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django sitebeheer" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Djangobeheer" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Toevoegen" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Geschiedenis" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Toon op site" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Herstel de fout hieronder." -msgstr[1] "Herstel de fouten hieronder." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s toevoegen" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filter" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Verwijderen" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Het verwijderen van %(object_name)s '%(escaped_object)s' zal ook " -"gerelateerde objecten verwijderen. Echter u heeft geen rechten om de " -"volgende typen objecten te verwijderen:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Het verwijderen van %(object_name)s '%(escaped_object)s' vereist het " -"verwijderen van de volgende gerelateerde objecten:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Weet u zeker dat u %(object_name)s \"%(escaped_object)s\" wilt verwijderen? " -"Alle volgende objecten worden verwijderd:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ja, ik weet het zeker" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Verwijder meerdere objecten" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Het verwijderen van de geselecteerde %(objects_name)s vereist het " -"verwijderen van gerelateerde objecten, maar uw account heeft geen " -"toestemming om de volgende soorten objecten te verwijderen:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Het verwijderen van de geselecteerde %(objects_name)s vereist het " -"verwijderen van de volgende beschermde gerelateerde objecten:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Weet u zeker dat u de geselecteerde %(objects_name)s wilt verwijderen? Alle " -"volgende objecten en hun aanverwante items zullen worden verwijderd:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Op %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Beschikbare modellen in de %(name)s toepassing." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Wijzigen" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "U heeft geen rechten om iets te wijzigen." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Recente acties" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mijn acties" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Geen beschikbaar" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Onbekende inhoud" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Er is iets mis met de database. Verzeker u ervan dat de benodigde tabellen " -"zijn aangemaakt en dat de database toegankelijk is voor de juiste gebruiker." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Gebruikersnaam:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Wachtwoord:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Datum/tijd" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Gebruiker" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Actie" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Dit object heeft geen wijzigingsgeschiedenis. Het is mogelijk niet via de " -"beheersite toegevoegd." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Alles tonen" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Opslaan" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Zoek" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultaat" -msgstr[1] "%(counter)s resultaten" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s totaal" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Opslaan als nieuw item" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Opslaan en nieuwe toevoegen" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Opslaan en opnieuw bewerken" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Vul allereerst een gebruikersnaam en wachtwoord in. Vervolgens kunt u de " -"andere opties instellen." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Voer een gebruikersnaam en wachtwoord in." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Geef een nieuw passwoord voor gebruiker %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Wachtwoord" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Wachtwoord (nogmaals)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Vul hetzelfde wachtwoord als hierboven in, ter bevestiging." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Voeg nog een %(verbose_name)s toe" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Verwijderen" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Verwijderen?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Bedankt voor de aanwezigheid op de site vandaag." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Log opnieuw in" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Wachtwoordwijziging" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Wachtwoord wijzigen is geslaagd" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Uw wachtwoord is gewijzigd." - -#: templates/registration/password_change_form.html:22 -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 "" -"Vanwege de beveiliging moet u uw oude en twee keer uw nieuwe wachtwoord " -"invoeren, zodat we kunnen controleren of er geen typefouten zijn gemaakt." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Oud wachtwoord" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nieuw wachtwoord" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Wijzig mijn wachtwoord" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Wachtwoord hersteld" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Wachtwoord herstellen volooid" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Uw wachtwoord is ingesteld. U kunt nu verder gaan en inloggen." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Bevestiging wachtwoord herstellen" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Voer nieuw wachtwoord in" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Voer het nieuwe wachtwoord twee keer in, zodat we kunnen controleren of er " -"geen typefouten zijn gemaakt." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nieuw wachtwoord:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Bevestig wachtwoord:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Wachtwoord herstel mislukt" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"De link voor het herstellen van het wachtwoord is ongeldig, misschien omdat " -"de link al eens is gebruikt. Vraag opnieuw het wachtwoord herstellenaan." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Wachtwoord herstel geslaagd" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"We hebben u de instructies voor het instellen van een nieuw wachtwoord per e-" -"mail gestuurd. U zou dit spoedig moeten ontvangen." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"U heeft deze email ontvangen, omdat u een wachtwoord reset heeft aangevraagd " -"voor uw gebruikersaccount op %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Gaat u naar de volgende pagina en kies een nieuw wachtwoord:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Uw gebruikersnaam, mocht u deze vergeten zijn:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Bedankt voor het gebruik van onze site!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Het %(site_name)s team" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Uw wachtwoord vergeten? Geef uw e-mailadres op en we sturen u per e-mail de " -"instructies voor het instellen van een nieuw wachtwoord." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mailadres:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Herstel mijn wachtwoord" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Alle data" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Geen)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Selecteer %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Selecteer %s om te wijzigen" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 209fa7e69..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po deleted file mode 100644 index db61dee42..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/nl/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: jeffrey \n" -"Language-Team: Dutch <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Beschikbare %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filter" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Kies allemaal" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Toevoegen" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Verwijderen" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Gekozen %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Selecteer uw keuze(s) en klik " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Allemaal verwijderen" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s van de %(cnt)s geselecteerd" -msgstr[1] "%(sel)s van de %(cnt)s geselecteerd" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"U heeft niet opgeslagen wijzigingen op enkele indviduele velden. Als u nu " -"een actie uitvoert zullen uw wijzigingen verloren gaan." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"U heeft een actie geselecteerd, maar heeft de wijzigingen op de individuele " -"velden nog niet opgeslagen. Klik alstublieft op OK om op te slaan. U zult " -"vervolgens de actie opnieuw moeten uitvoeren." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"U heeft een actie geselecteerd en heeft geen wijzigingen gemaakt op de " -"individuele velden. U zoekt waarschijnlijk naar de Gaan knop in plaats van " -"de Opslaan knop." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"januari februari maart april mei juni juli augustus september oktober " -"november december" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "Z M D W D V Z" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Tonen" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Verbergen" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "zondag maandag dinsdag woensdag donderdag vrijdag zaterdag" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Nu" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Klok" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Kies een tijd" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Middernacht" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "Zes uur 's ochtends" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Twaalf uur 's middags" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Annuleren" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Vandaag" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalender" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Gisteren" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Morgen" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo deleted file mode 100644 index 6eec5f2ed..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.po deleted file mode 100644 index 2ec74045b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/django.po +++ /dev/null @@ -1,805 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-07 08:34+0000\n" -"Last-Translator: hgrimelid \n" -"Language-Team: Norwegian Nynorsk \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Sletta %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Kan ikkje slette %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Er du sikker?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Slett valgte %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                      By %s:

                                                                                                                                                                      \n" -"
                                                                                                                                                                        \n" -msgstr "" -"

                                                                                                                                                                        Etter %s:

                                                                                                                                                                        \n" -"
                                                                                                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Alle" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ja" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nei" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Ukjend" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Når som helst" - -#: filterspecs.py:197 -msgid "Today" -msgstr "I dag" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Siste sju dager" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Denne månaden" - -#: filterspecs.py:205 -msgid "This year" -msgstr "I år" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Gje korrekt brukarnamn og passord. Merk at det er forskjell på små og store " -"bokstavar." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Økta har tidsavbrot, logg inn att." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "E-postadressa er ikkje brukarnamnet ditt, prøv '%s' istadenfor." - -#: helpers.py:19 -msgid "Action:" -msgstr "Handling:" - -#: models.py:19 -msgid "action time" -msgstr "tid for handling" - -#: models.py:22 -msgid "object id" -msgstr "objekt-ID" - -#: models.py:23 -msgid "object repr" -msgstr "objekt repr" - -#: models.py:24 -msgid "action flag" -msgstr "handlingsflagg" - -#: models.py:25 -msgid "change message" -msgstr "endre melding" - -#: models.py:28 -msgid "log entry" -msgstr "logginnlegg" - -#: models.py:29 -msgid "log entries" -msgstr "logginnlegg" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ingen" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Endra %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "og" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Oppretta %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Endra %(list)s for %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Sletta %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Ingen felt endra." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" vart oppretta." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Du kan redigere vidare nedanfor." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Du kan opprette ny %s nedanfor." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" vart endra." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" vart endra Du kan redigere vidare nedanfor." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Objekt må vere valde for at dei skal kunne utførast handlingar på. Ingen " -"object er endra." - -#: options.py:846 -msgid "No action selected." -msgstr "Inga valt handling." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Opprett %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s-objekt med primærnøkkelen %(key)r eksisterer ikkje." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Rediger %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Databasefeil" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s vart endra." -msgstr[1] "%(count)s %(name)s vart endra." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s valde" -msgstr[1] "Alle %(total_count)s valde" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "Ingen av %(cnt)s valde" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" vart sletta." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Endringshistorikk: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Logg inn" - -#: sites.py:375 -msgid "Site administration" -msgstr "Nettstadsadministrasjon" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s-administrasjon" - -#: widgets.py:75 -msgid "Date:" -msgstr "Dato:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Tid:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Oppslag" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Legg til ny" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Fann ikkje sida" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Sida du spør etter finst ikkje." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Heim" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Tenarfeil" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Tenarfeil (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Tenarfeil (500)" - -#: 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 "" -"Det har oppstått ein feil. Feilen er rapportert til administrator via e-" -"post, og vil bli fiksa snart. " - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Utfør den valde handlinga" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Gå" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Klikk her for å velje objekt på tvers av alle sider" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Velg alle %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Nullstill utval" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Velkommen," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentasjon" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Endre passord" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Logg ut" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django administrasjonsside" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django-administrasjon" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Opprett" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historikk" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Vis på nettstad" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Korriger feilen under." -msgstr[1] "Korriger feila under." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Opprett %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtrering" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Slett" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Dersom du slettar %(object_name)s '%(escaped_object)s', vil også slette " -"relaterte objekt, men du har ikkje løyve til å slette følgande objekttypar:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Sletting av %(object_name)s '%(escaped_object)s' krevar sletting av " -"følgjande beskytta relaterte objekt:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Er du sikker på at du vil slette %(object_name)s \"%(escaped_object)s\"? " -"Alle dei følgjande relaterte objekta vil bli sletta:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ja, eg er sikker" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Slett fleire objekt" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Sletting av %(objects_name)s vil føre til at relaterte objekt blir sletta, " -"men kontoen din manglar løyve til å slette følgjande objekttypar:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Sletting av %(objects_name)s krevar sletting av følgjande beskytta relaterte " -"objekt:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Er du sikker på at du vil slette dei valgte objekta %(objects_name)s? " -"Følgjande objekt og deira relaterte objekt vil bli sletta:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "Etter %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modellar tilgjengeleg i %(name)s-applikasjonen." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Endre" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Du har ikkje løyve til å redigere noko." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Siste handlingar" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mine handlingar" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ingen tilgjengelege" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Ukjent innhald" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Noko er gale med databaseinstallasjonen din. Syt for at databasetabellane er " -"oppretta og at brukaren har dei naudsynte løyve." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Brukarnamn:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Passord:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Dato/tid" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Brukar" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Handling" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Dette objektet har ingen endringshistorikk. Det var sannsynlegvis ikkje " -"oppretta med administrasjonssida." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Vis alle" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Lagre" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Søk" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultat" -msgstr[1] "%(counter)s resultat" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s totalt" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Lagre som ny" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Lagre og opprett ny" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Lagre og hald fram å redigere" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Skriv først inn brukernamn og passord. Deretter vil du få høve til å endre " -"fleire brukarinnstillingar." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Skriv inn nytt brukarnamn og passord." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Skriv inn eit nytt passord for brukaren %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Passord" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Passord (gjenta)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Skriv inn det samme passordet som over, for verifisering." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Legg til ny %(verbose_name)s." - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Fjern" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Slette?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Takk for at du brukte kvalitetstid på nettstaden i dag." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Logg inn att" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Endre passord" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Passord endra" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Passordet ditt vart endret." - -#: templates/registration/password_change_form.html:22 -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 "" -"Av sikkerheitsgrunnar må du oppgje det gamle passordet ditt. Oppgje så det " -"nye passordet ditt to gonger, slik at vi kan kontrollere at det er korrekt." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Gammalt passord" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nytt passord" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Endre passord" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Nullstill passord" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Passord nullstilt" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Passordet ditt er sett. Du kan logge inn." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Stadfesting på nullstilt passord" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Oppgje nytt passord" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Oppgje det nye passordet ditt to gonger, for å sikre at du oppgjev det " -"korrekt." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nytt passord:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Gjenta nytt passord:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Passordet vart ikkje nullstilt" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Nullstillingslinken er ugyldig, kanskje fordi den allereie har vore brukt. " -"Nullstill passordet ditt på nytt." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Passordet vart nullstilt" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Vi har sendt deg ein e-post med instruksjonar for nullstilling av passord. " -"Du bør motta den om kort tid." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Du mottar denne eposten fordi du ba om å nullstille passordet for " -"brukarkontoen din på %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Gå til følgjande side og velg eit nytt passord:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Brukarnamnet ditt, i tilfelle du har gløymt det:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Takk for at du brukar sida vår!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Helsing %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Har du gløymt passordet ditt? Oppgje e-postadressa di under, så sender vi " -"deg ein e-post med instruksjonar for nullstilling av passord." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-postadresse:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Nullstill passordet" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Alle datoar" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ingen)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Velg %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Velg %s du ønskar å redigere" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 01362f739..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po deleted file mode 100644 index 973292255..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/nn/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,153 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-07 08:35+0000\n" -"Last-Translator: hgrimelid \n" -"Language-Team: Norwegian Nynorsk \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Tilgjengelege %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filter" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Velg alle" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Ny" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Slett" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Valde %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Velg valet og klikk " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Fjern alle" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s av %(cnt)s vald" -msgstr[1] "%(sel)s av %(cnt)s valde" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Det er endringar som ikkje er lagra i individuelt redigerbare felt. " -"Endringar som ikkje er lagra vil gå tapt." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Du har vald ei handling, men du har framleis ikkje lagra endringar for " -"individuelle felt. Klikk OK for å lagre. Du må gjere handlinga på nytt." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Du har vald ei handling og du har ikkje gjort endringar i individuelle felt. " -"Du ser sannsynlegvis etter Gå vidare-knappen - ikkje Lagre-knappen." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Januar Februar Mars April Mai Juni Juli August September Oktober November " -"Desember" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M T O T F L" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Vis" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Skjul" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Søndag Måndag Tysdag Onsdag Torsdag Fredag Laurdag" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "No" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Klokke" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Velg eit klokkeslett" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Midnatt" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "06:00" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "12:00" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Avbryt" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "I dag" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalender" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "I går" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "I morgon" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/django.mo deleted file mode 100644 index 096ca9ac7..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/django.po deleted file mode 100644 index 13cfad12b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/django.po +++ /dev/null @@ -1,807 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: jonklo \n" -"Language-Team: Norwegian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: no\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Slettet %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Kan ikke slette %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Er du sikker?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Slett valgte %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                          By %s:

                                                                                                                                                                          \n" -"
                                                                                                                                                                            \n" -msgstr "" -"

                                                                                                                                                                            Etter %s:

                                                                                                                                                                            \n" -"
                                                                                                                                                                              \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Alle" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ja" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nei" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Ukjent" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "NÃ¥r som helst" - -#: filterspecs.py:197 -msgid "Today" -msgstr "I dag" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Siste syv dager" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Denne mÃ¥neden" - -#: filterspecs.py:205 -msgid "This year" -msgstr "I Ã¥r" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Vennligst angi korrekt brukernavn og passord. Merk at det er forskjell pÃ¥ " -"smÃ¥ og store bokstaver." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Økten din har tidsavbrutt, vennligst logg inn igjen." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "E-postadressen er ikke brukernavnet ditt, prøv '%s' isteden." - -#: helpers.py:19 -msgid "Action:" -msgstr "Handling:" - -#: models.py:19 -msgid "action time" -msgstr "tid for handling" - -#: models.py:22 -msgid "object id" -msgstr "objekt-ID" - -#: models.py:23 -msgid "object repr" -msgstr "objekt repr" - -#: models.py:24 -msgid "action flag" -msgstr "handlingsflagg" - -#: models.py:25 -msgid "change message" -msgstr "endre melding" - -#: models.py:28 -msgid "log entry" -msgstr "logginnlegg" - -#: models.py:29 -msgid "log entries" -msgstr "logginnlegg" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ingen" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Endret %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "og" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Opprettet %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Endret %(list)s for %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Slettet %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Ingen felt endret." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" ble opprettet." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Du kan redigere videre nedenfor." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Du kan opprette ny %s nedenfor." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" ble endret." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" ble endret. Du kan redigere videre nedenfor." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Du mÃ¥ velge objekter for Ã¥ utføre handlinger pÃ¥ dem. Ingen objekter har " -"blitt endret." - -#: options.py:846 -msgid "No action selected." -msgstr "Ingen handling valgt." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Opprett %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s-objekt med primærnøkkelen %(key)r finnes ikke." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Endre %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Databasefeil" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s ble endret." -msgstr[1] "%(count)s %(name)s ble endret." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s valgt" -msgstr[1] "Alle %(total_count)s valgt" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 av %(cnt)s valgt" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" ble slettet." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Endringshistorikk: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Logg inn" - -#: sites.py:375 -msgid "Site administration" -msgstr "Nettstedsadministrasjon" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s-administrasjon" - -#: widgets.py:75 -msgid "Date:" -msgstr "Dato:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Tid:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Oppslag" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Legg til ny" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Fant ikke siden" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Beklager, men siden du spør etter finnes ikke." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Hjem" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Tjenerfeil" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Tjenerfeil (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Tjenerfeil (500)" - -#: 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 "" -"Det har oppstÃ¥tt en feil. Feilen er blitt rapportert til administrator via e-" -"post, og vil bli fikset snart. Takk for din tÃ¥lmodighet." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Utfør den valgte handlingen" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "GÃ¥" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Trykk her for Ã¥ velge samtlige objekter fra alle sider" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Velg alle %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Nullstill valg" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Velkommen," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentasjon" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Endre passord" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Logg ut" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django administrasjonsside" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django-administrasjon" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Opprett" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historikk" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Vis pÃ¥ nettsted" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Vennligst korriger feilen under." -msgstr[1] "Vennligst korriger feilene under." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Opprett %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtrering" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Slett" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_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 '%(escaped_object)s', vil ogsÃ¥ slette " -"relaterte objekter, men du har ikke tillatelse til Ã¥ slette følgende " -"objekttyper:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Sletting av %(object_name)s '%(escaped_object)s' krever sletting av følgende " -"beskyttede relaterte objekter:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Er du sikker pÃ¥ at du vil slette %(object_name)s \"%(escaped_object)s\"? " -"Alle de følgende relaterte objektene vil bli slettet:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ja, jeg er sikker" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Slett flere objekter" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Sletting av det valgte %(objects_name)s ville resultere i sletting av " -"relaterte objekter, men kontoen din har ikke tillatelse til Ã¥ slette " -"følgende objekttyper:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Sletting av det valgte %(objects_name)s ville kreve sletting av følgende " -"beskyttede relaterte objekter:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Er du sikker pÃ¥ vil slette det valgte %(objects_name)s? De følgende " -"objektene og deres relaterte objekter vil bli slettet:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "Etter %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modeller tilgjengelig i %(name)s-applikasjonen." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Endre" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Du har ikke rettigheter til Ã¥ redigere noe." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Siste handlinger" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mine handlinger" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ingen tilgjengelige" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Ukjent innhold" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Noe er galt med databaseinstallasjonen din. Sørg for at databasetabellene er " -"opprettet og at brukeren har de nødvendige rettigheter." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Brukernavn:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Passord:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Dato/tid" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Bruker" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Handling" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Dette objektet har ingen endringshistorikk. Det var sannsynligvis ikke " -"opprettet med administrasjonssiden." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Vis alle" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Lagre" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Søk" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultat" -msgstr[1] "%(counter)s resultater" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s totalt" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Lagre som ny" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Lagre og opprett ny" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Lagre og fortsett Ã¥ redigere" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Skriv først inn brukernavn og passord. Deretter vil du fÃ¥ mulighet til Ã¥ " -"endre flere brukerinnstillinger." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Oppgi brukernavn og passord." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Skriv inn et nytt passord for brukeren %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Passord" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Passord (gjenta)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Skriv inn det samme passordet som ovenfor, for verifisering." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Legg til ny %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Fjern" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Slette?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Takk for at du valgte Ã¥ bruke kvalitetstid pÃ¥ nettstedet i dag." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Logg inn igjen" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Endre passord" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Passord endret" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Ditt passord ble endret." - -#: templates/registration/password_change_form.html:22 -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 "" -"Venligst oppgi ditt gamle passord av sikkerhetsgrunner. Oppgi deretter ditt " -"nye passord to ganger, slik at vi kan kontrollere at det er korrekt." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Gammelt passord" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nytt passord" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Endre passord" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Nullstill passord" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Passord nullstilt" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Passordet ditt er satt. Du kan nÃ¥ logge inn." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Bekreftelse pÃ¥ nullstilt passord" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Oppgi nytt passord" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Venligst oppgi ditt nye passord to ganger, for Ã¥ sikre at du oppgir det " -"korrekt." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nytt passord:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Gjenta nytt passord:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Passordet ble ikke nullstilt" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Nullstillingslinken er ugyldig, kanskje fordi den allerede har vært brukt. " -"Vennligst nullstill passordet ditt pÃ¥ nytt." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Passordet ble nullstilt" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Vi har sendt deg en e-post med instruksjoner for nullstilling av passord. Du " -"bør motta den om kort tid." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Du har mottatt denne e-posten fordi du har bedt om nullstilling av passordet " -"ditt for din konto pÃ¥ %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Vennligst gÃ¥ til følgende side og velg et nytt passord:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Brukernavnet ditt, i tilfelle du har glemt det:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Takk for at du bruker siden vÃ¥r!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Hilsen %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Glemt passordet ditt? Oppgi e-postadressen din under, sÃ¥ sender vi deg en e-" -"post med instruksjoner for nullstilling av passord." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-postadresse:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Nullstill mitt passord" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Alle datoer" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ingen)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Velg %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Velg %s du ønsker Ã¥ endre" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 9182233cf..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/djangojs.po deleted file mode 100644 index 249e01d06..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/no/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: jonklo \n" -"Language-Team: Norwegian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: no\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Tilgjengelige %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filter" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Velg alle" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Ny" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Slett" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Valgte %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Velg ditt valg og klikk " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Fjern alle" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s av %(cnt)s valgt" -msgstr[1] "%(sel)s av %(cnt)s valgt" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Du har ulagrede endringer i individuelle felter. Hvis du utfører en " -"handling, vil dine ulagrede endringer gÃ¥ tapt." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Du har valgt en handling, men du har ikke lagret dine endringer i " -"individuelle felter enda. Vennligst trykk OK for Ã¥ lagre. Du mÃ¥ utføre " -"handlingen pÃ¥ nytt." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Du har valgt en handling, og har ikke gjort noen endringer i individuelle " -"felter. Du ser mest sannsynlig etter GÃ¥-knappen, ikke Lagre-knappen." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Januar Februar Mars April Mai Juni Juli August September Oktober November " -"Desember" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M T O T F L" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Vis" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Skjul" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Søndag Mandag Tirsdag Onsdag Torsdag Fredag Lørdag" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "NÃ¥" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Klokke" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Velg et klokkeslett" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Midnatt" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "06:00" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "12:00" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Avbryt" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "I dag" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalender" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "I gÃ¥r" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "I morgen" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo deleted file mode 100644 index b889085c9..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.po deleted file mode 100644 index a0425d1cd..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/django.po +++ /dev/null @@ -1,777 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Panjabi (Punjabi) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pa\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਹਟਾਈਆਂ ਗਈਆਂ।" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "ਕੀ ਤà©à¨¸à©€à¨‚ ਇਹ ਚਾਹà©à©°à¨¦à©‡ ਹੋ?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "ਚà©à¨£à©‡ %(verbose_name_plural)s ਹਟਾਓ" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                              By %s:

                                                                                                                                                                              \n" -"
                                                                                                                                                                                \n" -msgstr "" -"

                                                                                                                                                                                %s ਵਲੋਂ:

                                                                                                                                                                                \n" -"
                                                                                                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "ਸਭ" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "ਹਾਂ" - -#: filterspecs.py:139 -msgid "No" -msgstr "ਨਹੀਂ" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "ਅਣਜਾਣ" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "ਕੋਈ ਵੀ ਮਿਤੀ" - -#: filterspecs.py:197 -msgid "Today" -msgstr "ਅੱਜ" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "ਪਿਛਲੇ à©­ ਦਿਨ" - -#: filterspecs.py:203 -msgid "This month" -msgstr "ਇਹ ਮਹੀਨੇ" - -#: filterspecs.py:205 -msgid "This year" -msgstr "ਇਹ ਸਾਲ" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"ਠੀਕ ਯੂਜ਼ਰ ਨਾਂ ਤੇ ਪਾਸਵਰਡ ਦਿਉ ਜੀ। ਯਾਦ ਰੱਖੋ ਕਿ ਦੋਵੇਂ ਖੇਤਰਾਂ ਅੱਖਰ ਆਕਾਰ ਪà©à¨°à¨¤à©€ ਸੰਵੇਦਨਸ਼ੀਲ ਹਨ।" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "ਫੇਰ ਲਾਗਇਨ ਕਰੋ ਜੀ, ਕਿਉਂਕਿ ਤà©à¨¹à¨¾à¨¡à©‡ ਸ਼ੈਸ਼ਨ ਦੀ ਮਿਆਦ ਪà©à©±à¨— ਗਈ ਸੀ।" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "ਤà©à¨¹à¨¾à¨¡à¨¾ ਈਮੇਲ à¨à¨¡à¨°à©ˆà©±à¨¸ ਤà©à¨¹à¨¾à¨¡à¨¾ ਯੂਜ਼ਰ ਨਾਂ ਨਹੀਂ ਹੈ। '%s' ਨਾਲ ਕੋਸ਼ਿਸ਼ ਕਰੋ ਜੀ।" - -#: helpers.py:19 -msgid "Action:" -msgstr "ਕਾਰਵਾਈ:" - -#: models.py:19 -msgid "action time" -msgstr "ਕਾਰਵਾਈ ਸਮਾਂ" - -#: models.py:22 -msgid "object id" -msgstr "ਆਬਜੈਕਟ id" - -#: models.py:23 -msgid "object repr" -msgstr "ਆਬਜੈਕਟ repr" - -#: models.py:24 -msgid "action flag" -msgstr "ਕਾਰਵਾਈ ਫਲੈਗ" - -#: models.py:25 -msgid "change message" -msgstr "ਸà©à¨¨à©‡à¨¹à¨¾ ਬਦਲੋ" - -#: models.py:28 -msgid "log entry" -msgstr "ਲਾਗ à¨à¨‚ਟਰੀ" - -#: models.py:29 -msgid "log entries" -msgstr "ਲਾਗ à¨à¨‚ਟਰੀਆਂ" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "ਕੋਈ ਨਹੀਂ" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s ਬਦਲਿਆ।" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ਅਤੇ" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" ਸ਼ਾਮਲ ਕੀਤਾ।" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" ਲਈ %(list)s ਨੂੰ ਬਦਲਿਆ" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" ਹਟਾਇਆ ਗਿਆ।" - -#: options.py:645 -msgid "No fields changed." -msgstr "ਕੋਈ ਖੇਤਰ ਨਹੀਂ ਬਦਲਿਆ।" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਹਟਾਇਆ ਗਿਆ ਹੈ।" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "ਤà©à¨¸à©€à¨‚ ਇਸ ਨੂੰ ਹੇਠਾਂ ਸੋਧ ਸਕਦੇ ਹੋ।" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "ਤà©à¨¸à©€à¨‚ ਇੱਕ ਹੋਰ %s ਹੇਠਾਂ ਜੋੜ ਸਕਦੇ ਹੋ।" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" ਨੂੰ ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਬਦਲਿਆ ਗਿਆ ਸੀ।" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਜੋੜਿਆ ਗਿਆ ਸੀ। ਤà©à¨¸à©€à¨‚ ਇਸ ਨੂੰ ਹੇਠਾਂ ਸੋਧ ਸਕਦੇ ਹੋ।" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "ਕੋਈ ਕਾਰਵਾਈ ਨਹੀਂ ਚà©à¨£à©€ ਗਈ।" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s ਸ਼ਾਮਲ" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s ਬਦਲੋ" - -#: options.py:1065 -msgid "Database error" -msgstr "ਡਾਟਾਬੇਸ ਗਲਤੀ" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਬਦਲਿਆ ਗਿਆ।" -msgstr[1] "%(count)s %(name)s ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਬਦਲੇ ਗਠਹਨ।" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s ਚà©à¨£à¨¿à¨†à¥¤" -msgstr[1] "%(total_count)s ਚà©à¨£à©‡" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਹਟਾਇਆ ਗਿਆ ਹੈ।" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ਅਤੀਤ ਬਦਲੋ: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "ਲਾਗ ਇਨ" - -#: sites.py:375 -msgid "Site administration" -msgstr "ਸਾਈਟ ਪਰਬੰਧ" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s ਪਰਸ਼ਾਸ਼ਨ" - -#: widgets.py:75 -msgid "Date:" -msgstr "ਮਿਤੀ:" - -#: widgets.py:75 -msgid "Time:" -msgstr "ਸਮਾਂ:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "ਖੋਜ" - -#: widgets.py:246 -msgid "Add Another" -msgstr "ਹੋਰ ਸ਼ਾਮਲ" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "ਸਫ਼ਾ ਨਹੀਂ ਲੱਭਿਆ" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "ਸਾਨੂੰ ਅਫਸੋਸ ਹੈ, ਪਰ ਅਸੀਂ ਮੰਗਿਆ ਗਿਆ ਸਫ਼ਾ ਨਹੀਂ ਲੱਭ ਸਕੇ।" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "ਘਰ" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "ਸਰਵਰ ਗਲਤੀ" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "ਸਰਵਰ ਗਲਤੀ (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "ਸਰਵਰ ਗਲਤੀ (500)" - -#: 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 "" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "ਚà©à¨£à©€ ਕਾਰਵਾਈ ਕਰੋ" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "ਜਾਓ" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "ਸਭ ਸਫ਼ਿਆਂ ਵਿੱਚੋਂ ਆਬਜੈਕਟ ਚà©à¨£à¨¨ ਲਈ ਇੱਥੇ ਕਲਿੱਕ ਕਰੋ" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "ਸਭ %(total_count)s %(module_name)s ਚà©à¨£à©‹" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "ਚੋਣ ਸਾਫ਼ ਕਰੋ" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "ਜੀ ਆਇਆਂ ਨੂੰ, " - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "ਡੌਕੂਮੈਂਟੇਸ਼ਨ" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "ਪਾਸਵਰਡ ਬਦਲੋ" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "ਲਾਗ ਆਉਟ" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "ਡੀਜਾਂਗੋ ਸਾਈਟ à¨à¨¡à¨®à¨¿à¨¨" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "ਡੀਜਾਂਗੋ ਪਰਸ਼ਾਸ਼ਨ" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "ਸ਼ਾਮਲ" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ਅਤੀਤ" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "ਸਾਈਟ ਉੱਤੇ ਜਾਓ" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "ਹੇਠਾਂ ਦਿੱਤੀ ਗਲਤੀ ਠੀਕ ਕਰੋ ਜੀ।" -msgstr[1] "ਹੇਠ ਦਿੱਤੀਆਂ ਗਲਤੀਆਂ ਠੀਕ ਕਰੋ ਜੀ।" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s ਸ਼ਾਮਲ" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "ਫਿਲਟਰ" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "ਹਟਾਓ" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "ਹਾਂ, ਮੈਂ ਚਾਹà©à©°à¨¦à¨¾ ਹਾਂ" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "ਕਈ ਆਬਜੈਕਟ ਹਟਾਓ" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s ਵਲੋਂ " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "à¨à¨ªà¨²à©€à¨•à©‡à¨¸à¨¼à¨¨ %(name)s ਵਿੱਚ ਉਪਲੱਬਧ ਮਾਡਲ ਹਨ।" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "ਬਦਲੋ" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "ਤà©à¨¹à¨¾à¨¨à©‚à©° ਕà©à¨ ਵੀ ਸੋਧਣ ਦਾ ਅਧਿਕਾਰ ਨਹੀਂ ਹੈ।" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "ਤਾਜ਼ਾ ਕਾਰਵਾਈਆਂ" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "ਮੇਰੀਆਂ ਕਾਰਵਾਈਆਂ" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "ਕੋਈ ਉਪਲੱਬਧ ਨਹੀਂ" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "ਅਣਜਾਣ ਸਮੱਗਰੀ" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "ਯੂਜ਼ਰ ਨਾਂ:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "ਪਾਸਵਰਡ:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "ਮਿਤੀ/ਸਮਾਂ" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "ਯੂਜ਼ਰ" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "ਕਾਰਵਾਈ" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "ਸਭ ਵੇਖੋ" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "ਸੰਭਾਲੋ" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "ਖੋਜ" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" -msgstr[1] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s ਕà©à©±à¨²" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "ਨਵੇਂ ਵਜੋਂ ਵੇਖੋ" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "ਸੰਭਾਲੋ ਤੇ ਹੋਰ ਸ਼ਾਮਲ" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "ਸੰਭਾਲੋ ਤੇ ਸੋਧਣਾ ਜਾਰੀ ਰੱਖੋ" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "ਪਹਿਲਾਂ ਆਪਣਾ ਯੂਜ਼ਰ ਨਾਂ ਤੇ ਪਾਸਵਰਡ ਦਿਉ। ਫੇਰ ਤà©à¨¸à©€à¨‚ ਹੋਰ ਯੂਜ਼ਰ ਚੋਣਾਂ ਨੂੰ ਸੋਧ ਸਕਦੇ ਹੋ।" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "ਯੂਜ਼ਰ %(username)s ਲਈ ਨਵਾਂ ਪਾਸਵਰਡ ਦਿਓ।" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "ਪਾਸਵਰਡ" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "ਪਾਸਵਰਡ (ਫੇਰ)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "ਜਾਂਚ ਲਈ, ਉੱਤੇ ਦਿੱਤਾ ਪਾਸਵਰਡ ਹੀ ਦਿਓ।" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "%(verbose_name)s ਹੋਰ ਸ਼ਾਮਲ" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "ਹਟਾਓ" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "ਹਟਾਉਣਾ?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "ਅੱਜ ਵੈੱਬਸਾਈਟ ਨੂੰ ਕà©à¨ ਚੰਗਾ ਸਮਾਂ ਦੇਣ ਲਈ ਧੰਨਵਾਦ ਹੈ।" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "ਫੇਰ ਲਾਗਇਨ ਕਰੋ" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "ਪਾਸਵਰਡ ਬਦਲੋ" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "ਪਾਸਵਰਡ ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਬਦਲਿਆ ਗਿਆ" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "ਤà©à¨¹à¨¾à¨¡à¨¾ ਪਾਸਵਰਡ ਬਦਲਿਆ ਗਿਆ ਹੈ।" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"ਸà©à¨°à©±à¨–ਿਆ ਲਈ ਪਹਿਲਾਂ ਆਪਣਾ ਪà©à¨°à¨¾à¨£à¨¾ ਪਾਸਵਰਡ ਦਿਉ, ਅਤੇ ਫੇਰ ਆਪਣਾ ਨਵਾਂ ਪਾਸਵਰਡ ਦੋ ਵਰਾ ਦਿਉ ਤਾਂ ਕਿ " -"ਅਸੀਂ ਜਾਂਚ ਸਕੀਠਕਿ ਤà©à¨¸à©€à¨‚ ਇਹ ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਲਿਖਿਆ ਹੈ।" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "ਪà©à¨°à¨¾à¨£à¨¾ ਪਾਸਵਰਡ" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "ਨਵਾਂ ਪਾਸਵਰਡ" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "ਮੇਰਾ ਪਾਸਵਰਡ ਬਦਲੋ" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "ਪਾਸਵਰਡ ਮà©à©œ-ਸੈੱਟ" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "ਪਾਸਵਰਡ ਮà©à©œ-ਸੈੱਟ ਕਰਨਾ ਪੂਰਾ ਹੋਇਆ" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "ਤà©à¨¹à¨¾à¨¡à¨¾ ਪਾਸਵਰਡ ਸੈੱਟ ਕੀਤਾ ਗਿਆ ਹੈ। ਤà©à¨¸à©€à¨‚ ਜਾਰੀ ਰੱਖ ਕੇ ਹà©à¨£à©‡ ਲਾਗਇਨ ਕਰ ਸਕਦੇ ਹੋ।" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "ਪਾਸਵਰਡ ਮà©à©œ-ਸੈੱਟ ਕਰਨ ਪà©à¨¸à¨¼à¨Ÿà©€" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "ਨਵਾਂ ਪਾਸਵਰਡ ਦਿਓ" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"ਆਪਣਾ ਨਵਾਂ ਪਾਸਵਰਡ ਦੋ ਵਾਰ ਦਿਉ ਤਾਂ ਕਿ ਅਸੀਂ ਜਾਂਚ ਕਰ ਸਕੀਠਕਿ ਤà©à¨¸à©€à¨‚ ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਲਿਖਿਆ ਹੈ।" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "ਨਵਾਂ ਪਾਸਵਰਡ:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "ਪਾਸਵਰਡ ਪà©à¨¸à¨¼à¨Ÿà©€:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "ਪਾਸਵਰਡ ਮà©à©œ-ਸੈੱਟ ਕਰਨ ਅਸਫ਼ਲ" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"ਪਾਸਵਰਡ ਰੀ-ਸੈੱਟ ਲਿੰਕ ਗਲਤ ਹੈ, ਸੰਭਵ ਤੌਰ ਉੱਤੇ ਇਹ ਪਹਿਲਾਂ ਹੀ ਵਰਤਿਆ ਜਾ ਚà©à©±à¨•à¨¾ ਹੈ। ਨਵਾਂ ਪਾਸਵਰਡ ਰੀ-" -"ਸੈੱਟ ਲਈ ਬੇਨਤੀ ਭੇਜੋ ਜੀ।" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "ਪਾਸਵਰਡ ਠੀਕ ਤਰà©à¨¹à¨¾à¨‚ ਬਦਲਿਆ ਗਿਆ" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "ਅੱਗੇ ਦਿੱਤੇ ਸਫ਼ੇ ਉੱਤੇ ਜਾਉ ਤੇ ਨਵਾਂ ਪਾਸਵਰਡ ਚà©à¨£à©‹:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "ਤà©à¨¹à¨¾à¨¡à¨¾ ਯੂਜ਼ਰ ਨਾਂ, ਜੇ ਕਿਤੇ ਗਲਤੀ ਨਾਲ ਭà©à©±à¨² ਗਠਹੋਵੋ:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "ਸਾਡੀ ਸਾਈਟ ਵਰਤਣ ਲਈ ਧੰਨਵਾਦ ਜੀ!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s ਟੀਮ" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"ਆਪਣਾ ਪਾਸਵਰਡ ਭà©à©±à¨² ਗà¨? ਆਪਣਾ ਈਮੇਲ à¨à¨¡à¨°à©ˆà©±à¨¸ ਹੇਠਾਂ ਦਿਓ ਅਤੇ ਅਸੀਂ ਤà©à¨¹à¨¾à¨¨à©‚à©° ਨਵੇਂ ਲਈ ਹਦਾਇਤਾਂ ਨਾਲ ਈਮੇਲ ਭੇਜ " -"ਦੇਵਾਂਗੇ।" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "ਈਮੇਲ à¨à¨¡à¨°à©ˆà©±à¨¸:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "ਮੇਰਾ ਪਾਸਵਰਡ ਮà©à©œ-ਸੈੱਟ ਕਰੋ" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "ਸਭ ਮਿਤੀਆਂ" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s ਚà©à¨£à©‹" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "ਬਦਲਣ ਲਈ %s ਚà©à¨£à©‹" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo deleted file mode 100644 index a39ded61a..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po deleted file mode 100644 index b651b682f..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/pa/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,145 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Panjabi (Punjabi) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pa\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "ਉਪਲੱਬਧ %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "ਸਭ ਚà©à¨£à©‹" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "ਸ਼ਾਮਲ" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "ਹਟਾਓ" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s ਚà©à¨£à©‹" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "ਆਪਣੀ ਚੋਣ ਕਰੋ ਤੇ ਕਲਿੱਕ ਕਰੋ " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "ਸਭ ਸਾਫ਼ ਕਰੋ" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" -msgstr[1] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "ਜਨਵਰੀ ਫਰਵਰੀ ਮਾਰਚ ਅਪਰੈਲ ਮਈ ਜੂਨ ਜà©à¨²à¨¾à¨ˆ ਅਗਸਤ ਸਤੰਬਰ ਅਕਤੂਬਰ ਨਵੰਬਰ ਦਸੰਬਰ" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M T W T F S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "ਵੇਖੋ" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "ਓਹਲੇ" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "à¨à¨¤à¨µà¨¾à¨° ਸੋਮਵਾਰ ਮੰਗਲਵਾਰ ਬà©à©±à¨§à¨µà¨¾à¨° ਵੀਰਵਾਰ ਸ਼à©à©±à¨•à¨°à¨µà¨¾à¨° ਸ਼ਨਿੱਚਰਵਾਰ" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "ਹà©à¨£à©‡" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "ਘੜੀ" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "ਸਮਾਂ ਚà©à¨£à©‹" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "ਅੱਧੀ-ਰਾਤ" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 ਸਵੇਰ" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "ਦà©à¨ªà¨¹à¨¿à¨°" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "ਰੱਦ ਕਰੋ" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "ਅੱਜ" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "ਕੈਲੰਡਰ" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "ਕੱਲà©à¨¹" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "ਭਲਕੇ" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo deleted file mode 100644 index 94d76040a..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.po deleted file mode 100644 index 9eb66bae4..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/django.po +++ /dev/null @@ -1,812 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-15 20:39+0000\n" -"Last-Translator: angularcircle \n" -"Language-Team: Polish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "UsuniÄ™to %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Nie można usunąć %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "JesteÅ› pewien?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "UsuÅ„ wybrane %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                  By %s:

                                                                                                                                                                                  \n" -"
                                                                                                                                                                                    \n" -msgstr "" -"

                                                                                                                                                                                    Przez %s:

                                                                                                                                                                                    \n" -"
                                                                                                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Wszystko" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Tak" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nie" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Nieznany" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Dowolna data" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Dzisiaj" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Ostatnie 7 dni" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Ten miesiąc" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Ten rok" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Proszę wpisać poprawną nazwę użytkownika i hasło. Uwaga: wielkość liter ma " -"znaczenie." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Twoja sesja wygasła, zaloguj się ponownie." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Podany adres e-mail nie jest Twoją nazwą użytkownika. Spróbuj '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Akcja:" - -#: models.py:19 -msgid "action time" -msgstr "czas akcji" - -#: models.py:22 -msgid "object id" -msgstr "id obiektu" - -#: models.py:23 -msgid "object repr" -msgstr "reprezentacja obiektu" - -#: models.py:24 -msgid "action flag" -msgstr "flaga akcji" - -#: models.py:25 -msgid "change message" -msgstr "zmień wiadomość" - -#: models.py:28 -msgid "log entry" -msgstr "log" - -#: models.py:29 -msgid "log entries" -msgstr "logi" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "brak" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Zmieniono %s" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "i" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Dodano %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Zmieniono %(list)s w %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Usunięto %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Żadne pole nie zmienione." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" dodany pomyślnie." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Możesz ponownie edytować wpis poniżej." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Możesz dodać nowy wpis %s poniżej." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" zostało pomyślnie zmienione." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" dodane pomyślnie. Możesz edytować ponownie wpis poniżej." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Wykonanie akcji wymaga wybrania obiektów. Żaden obiekt nie został zmieniony." - -#: options.py:846 -msgid "No action selected." -msgstr "Nie wybrano akcji." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Dodaj %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Obiekt %(name)s o kluczu głównym %(key)r nie istnieje." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Zmień %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Błąd bazy danych" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s został pomyślnie zmieniony." -msgstr[1] "%(count)s %(name)s zostały pomyślnie zmienione." -msgstr[2] "%(count)s %(name)s zostało pomyślnie zmienionych." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s wybrany" -msgstr[1] "%(total_count)s wybrane" -msgstr[2] "%(total_count)s wybranych" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 z %(cnt)s wybranych" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" usunięty pomyślnie." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Historia zmian: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Zaloguj się" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administracja stroną" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s - administracja" - -#: widgets.py:75 -msgid "Date:" -msgstr "Data:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Czas:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Szukaj" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Dodaj kolejny" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Strona nie znaleziona" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Niestety, żądana strona nie została znaleziona." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Początek" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Błąd serwera" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Błąd serwera (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Błąd Serwera (500)" - -#: 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 "" -"Wystąpił niespodziewany błąd. Został on zgłoszony e-mailem administratorowi " -"strony i powinien zostać wkrótce naprawiony. Dziękujemy za cierpliwość." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Wykonaj wybraną akcję" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Wykonaj" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Kliknij by wybrać obiekty na wszystkich stronach" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Wybierz wszystkie %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Wyczyść wybór" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Witaj," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentacja" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Zmiana hasła" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Wyloguj się" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Administracja stroną Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administracja Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Dodaj" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historia" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Pokaż na stronie" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Proszę popraw poniższy błąd." -msgstr[1] "Proszę popraw poniższe błędy." -msgstr[2] "Proszę popraw poniższe błędy." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Dodaj %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtr" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Usuń" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Skasowanie %(object_name)s '%(escaped_object)s' spowoduje usunięcie " -"zależnych obiektów, lecz nie posiadasz uprawnień do usunięcia następujących " -"typów obiektów:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Skasowanie %(object_name)s '%(escaped_object)s' wymaga usunięcia " -"następujących chronionych zależnych obiektów:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Czy chcesz skasować %(object_name)s \"%(escaped_object)s\"? Następujące " -"zależne obiekty zostaną skasowane:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Tak, na pewno" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Usuwanie wielu obiektów" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Skasowanie %(objects_name)s spowoduje usunięcie zależnych obiektów, lecz nie " -"posiadasz uprawnień do usunięcia następujących typów obiektów:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Skasowanie %(objects_name)s wymaga usunięcia następujących chronionych " -"zależnych obiektów:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Czy chcesz skasować zaznaczone %(objects_name)s? Następujące obiekty oraz " -"obiekty od nich zależne zostaną skasowane:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Używając %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modele dostępne w aplikacji %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Zmień" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Nie masz uprawnień by edytować cokolwiek." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Ostatnie akcje" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Moje akcje" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Brak" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Zawartość nieznana" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Instalacja Twojej bazy danych jest niepoprawna. Upewnij się, że odpowiednie " -"tabele zostały utworzone i odpowiedni użytkownik jest uprawniony do ich " -"odczytu." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Nazwa użytkownika:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Hasło:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Data/czas" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Użytkownik" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Akcja" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Ten obiekt nie ma historii zmian. Najprawdopodobniej wpis ten nie został " -"dodany poprzez panel administracyjny." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Pokaż wszystko" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Zapisz" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Szukaj" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s wynik" -msgstr[1] "%(counter)s wyniki" -msgstr[2] "%(counter)s wyników" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s trafień" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Zapisz jako nowe" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Zapisz i dodaj nowe" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Zapisz i kontynuuj edycję" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Najpierw podaj nazwę użytkownika i hasło. Następnie będziesz mógł edytować " -"więcej opcji użytkownika." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Podaj nazwę użytkownika i hasło." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Podaj nowe hasło dla użytkownika %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Hasło" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Hasło (powtórz)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Podaj powyższe hasło w celu weryfikacji." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Dodaj kolejne %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Usuń" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Usunąć?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Dziękujemy za odwiedzenie serwisu." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Zaloguj się ponownie" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Zmiana hasła" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Hasło zmienione" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Twoje hasło zostało zmienione." - -#: templates/registration/password_change_form.html:22 -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 "Podaj swoje stare hasło i dwa razy nowe." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Stare hasło" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nowe hasło" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Zmień hasło" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Zresetuj hasło" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Hasło zostało zresetowane" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Twoje hasło zostało ustawione. Możesz się teraz zalogować." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Potwierdzenie zresetowania hasła" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Podaj nowe hasło" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Podaj dwukrotnie nowe hasło, by można było zweryfikować, czy zostało wpisane " -"poprawnie." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nowe hasło:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Potwierdź hasło:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Zresetowanie hasła nie powiodło się" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Link do resetowania hasła był niepoprawny, być może dlatego, że został już " -"raz użyty. Możesz ponownie zażądać zresetowania hasła." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Zresetowanie hasła zakończyło się powodzeniem" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Instrukcje dalszego postępowania zostały wysłane na podany adres e-mail. " -"Powinieneś otrzymać je niebawem." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Otrzymujesz tę wiadomość w odpowiedzi na prośbę o zresetowanie hasła dla " -"twojego konta na stronie %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" -"Aby wprowadzić nowe hasło, proszę przejść na stronę, której adres widnieje " -"poniżej:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Twoja nazwa użytkownika:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Dziękujemy za skorzystanie naszej strony." - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Zespół %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Zapomniałeś hasła? Podaj swój adres e-mail, a prześlemy Ci instrukcję, jak " -"ustawić nowe hasło." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Adres e-mail:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Zresetuj moje hasło" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Wszystkie daty" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Brak)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Zaznacz %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Zaznacz %s aby zmienić" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo deleted file mode 100644 index b6a4c772b..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po deleted file mode 100644 index 50606c78e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/pl/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: angularcircle \n" -"Language-Team: Polish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Dostępne %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtr" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Wybierz wszystko" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Dodaj" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Usuń" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Wybrano %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Zaznacz swój wybór i kliknij " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Wyczyść wszystko" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "Zaznaczono %(sel)s z %(cnt)s" -msgstr[1] "Zaznaczono %(sel)s z %(cnt)s" -msgstr[2] "Zaznaczono %(sel)s z %(cnt)s" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Zmiany w niektórych polach nie zostały zachowane. Po wykonaniu akcji zmiany " -"te zostaną utracone." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Wybrano akcję, lecz część zmian w polach nie została zachowana. Kliknij OK " -"aby zapisać. Aby wykonać akcję, należy ją ponownie uruchomić." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Wybrano akcję, lecz nie dokonano żadnych zmian. Prawdopodobnie szukasz " -"przycisku \"Wykonaj\" (a nie \"Zapisz\")" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Styczeń Luty Marzec Kwiecień Maj Czerwiec Lipiec Sierpień Wrzesień " -"Październik Listopad Grudzień" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "N Pn Wt Śr Cz Pt So" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Pokaż" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Ukryj" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Niedziela Poniedziałek Wtorek Środa Czwartek Piątek Sobota" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Teraz" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Zegar" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Wybierz czas" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Północ" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 rano" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Południe" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Anuluj" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Dzisiaj" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalendarz" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Wczoraj" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Jutro" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo deleted file mode 100644 index ec43e8e7f..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.po deleted file mode 100644 index 5c0701e43..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/django.po +++ /dev/null @@ -1,814 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-14 20:50+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Portuguese <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Foram removidos com sucesso %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Não é possível remover %(name)s " - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Tem a certeza?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Remover %(verbose_name_plural)s selecionados" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                  By %s:

                                                                                                                                                                                  \n" -"
                                                                                                                                                                                    \n" -msgstr "" -"

                                                                                                                                                                                    Por %s:

                                                                                                                                                                                    \n" -"
                                                                                                                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Todos" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Sim" - -#: filterspecs.py:139 -msgid "No" -msgstr "Não" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Desconhecido" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Qualquer data" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Hoje" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Últimos 7 dias" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Este mês" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Este ano" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Por favor introduza o utilizador e palavra-passe corretos. Note que ambos os " -"casos diferenciam maiúsculas e minúsculas." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Por favor autentique-se novamente, porque a sua sessão expirou." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"O seu endereço de e-mail não é o seu nome de utilizador. Tente usar '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Ação:" - -#: models.py:19 -msgid "action time" -msgstr "hora da ação" - -#: models.py:22 -msgid "object id" -msgstr "id do objeto" - -#: models.py:23 -msgid "object repr" -msgstr "repr do objeto" - -#: models.py:24 -msgid "action flag" -msgstr "flag de ação" - -#: models.py:25 -msgid "change message" -msgstr "modificar mensagem" - -#: models.py:28 -msgid "log entry" -msgstr "entrada de log" - -#: models.py:29 -msgid "log entries" -msgstr "entradas de log" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Nenhum" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Foi modificado %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "e" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Foram adicionados %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Foram modificados %(list)s para %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Foram removidos %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Nenhum campo foi modificado." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "O(A) %(name)s \"%(obj)s\" foi adicionado(a) com sucesso." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Pode editá-lo(a) outra vez abaixo." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Pode adicionar outro %s abaixo." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "O(A) %(name)s \"%(obj)s\" foi modificado(a) com sucesso." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"O(A) %(name)s \"%(obj)s\" foi adicionado(a) com sucesso. Pode voltar a " -"editar novamente abaixo." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Os itens devem ser selecionados de forma a efectuar ações sobre eles. Nenhum " -"item foi modificado." - -#: options.py:846 -msgid "No action selected." -msgstr "Nenhuma ação selecionada." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Adicionar %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "O object %(name)s com a chave primária %(key)r não existe." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Modificar %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Erro de base de dados" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s foi modificado com sucesso." -msgstr[1] "%(count)s %(name)s foram modificados com sucesso." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s selecionado" -msgstr[1] "Todos %(total_count)s selecionados" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 de %(cnt)s selecionados" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "O(A) %(name)s \"%(obj)s\" foi removido(a) com sucesso." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Histórico de modificações: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Entrar" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administração do site" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administração de %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Data:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Hora:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Procurar" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Adicionar Outro" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Página não encontrada" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Pedimos desculpa, mas a página solicitada não foi encontrada." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Início" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Erro do servidor" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Erro do servidor (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Erro do servidor (500)" - -#: 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 "" -"Ocorreu um erro. Foi reportado aos administradores do site via e-mail e " -"deverá ser corrigido brevemente. Obrigado pela sua paciência." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Executar a acção selecionada" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Ir" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Clique aqui para selecionar os objetos em todas as páginas" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Selecionar todos %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Remover seleção" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Bem-vindo," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentação" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Modificar palavra-passe" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Sair" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Site de administração do Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administração do Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Adicionar" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "História" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Ver no site" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Por favor corrija o erro abaixo." -msgstr[1] "Por favor corrija os erros abaixo." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Adicionar %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtro" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Remover" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"A remoção de %(object_name)s '%(escaped_object)s' resultará na remoção dos " -"objetos relacionados, mas a sua conta não tem permissão de remoção dos " -"seguintes tipos de objetos:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Remover o %(object_name)s ' %(escaped_object)s ' exigiria a remoção dos " -"seguintes objetos protegidos relacionados:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Tem a certeza que deseja remover %(object_name)s \"%(escaped_object)s\"? " -"Todos os items relacionados seguintes irão ser removidos:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Sim, tenho a certeza" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Remover múltiplos objetos." - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Remover o %(objects_name)s selecionado poderia resultar na remoção de " -"objetos relacionados, mas a sua conta não tem permissão para remover os " -"seguintes tipos de objetos:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Remover o %(objects_name)s selecionado exigiria remover os seguintes objetos " -"protegidos relacionados:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Tem certeza de que deseja remover %(objects_name)s selecionado? Todos os " -"objetos seguintes e seus itens relacionados serão removidos:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Por %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Models disponíveis na aplicação %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Modificar" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Não tem permissão para modificar nada." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Ações Recentes" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "As minhas Ações" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Nenhum disponível" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Conteúdo desconhecido" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Passa-se algo de errado com a instalação da sua base de dados. Verifique se " -"as tabelas da base de dados foram criadas apropriadamente e verifique se a " -"base de dados pode ser lida pelo utilizador definido." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Utilizador:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Palavra-passe:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Data/hora" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Utilizador" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Ação" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Este objeto não tem histórico de modificações. Provavelmente não foi " -"modificado via site de administração." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Mostrar todos" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Gravar" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Pesquisar" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultado" -msgstr[1] "%(counter)s resultados" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s no total" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Gravar como novo" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Gravar e adicionar outro" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Gravar e continuar a editar" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Primeiro introduza o nome do utilizador e palavra-passe. Depois poderá " -"editar mais opções do utilizador." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Introduza o utilizador e palavra-passe." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Introduza uma nova password para o utilizador %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Palavra-passe" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Palavra-passe (novamente)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Introduza a palavra-passe como acima, para verificação." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Adicionar outro %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Remover" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Remover?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Obrigado pela sua visita." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Entrar novamente" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Modificação da palavra-passe" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Palavra-passe modificada com sucesso" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "A sua palavra-passe foi modificada." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Por razões de segurança, por favor introduza a sua palavra-passe antiga e " -"depois introduza a nova duas vezes para que possamos verificar se introduziu " -"corretamente." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Palavra-passe antiga" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nova palavra-passe" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Modificar a minha palavra-passe" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Palavra-passe de reinicialização" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Reinicialização da palavra-passe concluída" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "A sua palavra-passe foi atribuída. Pode entrar agora." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Confirmação da reinicialização da palavra-passe" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Introduza a nova palavra-passe" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Por favor, introduza a sua nova palavra-passe duas vezes para verificarmos " -"se está correcta." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nova palavra-passe:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Confirmação da palavra-passe:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Palavra-passe reinicializada sem sucesso" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"O endereço de reinicialização da palavra-passe é inválido, possivelmente " -"porque já foi usado. Por favor requisite uma nova reinicialização da palavra-" -"passe." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Palavra-passe reinicializada com sucesso" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Foi enviado para o e-mail que submeteu as instruções de configuração da " -"palavra-passe. Deverá estar a recebê-lo brevemente." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Está a receber este e-mail porque pediu uma palavra-passe nova para a sua " -"conta em %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Por favor siga a seguinte página e escolha a sua nova palavra-passe:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "O seu nome de utilizador, no caso de se ter esquecido:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Obrigado pela sua visita ao nosso site!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "A equipa do %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Esqueceu-se da palavra-passe? Introduza o seu e-mail abaixo, e enviaremos as " -"instruções de configuração de uma nova." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Endereço de e-mail:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Reinicializar a minha palavra-passe" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Todas as datas" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Nada)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Selecionar %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Selecione %s para modificar" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 5e68f64f7..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po deleted file mode 100644 index 78e0e42cd..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/pt/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,153 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-11 10:22+0000\n" -"Last-Translator: nmariz \n" -"Language-Team: Portuguese <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Disponível %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtrar" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Escolher todos" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Adicionar" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Remover" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Escolhido %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Selecione a(s) sua(s) escolha(s) e clique " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Limpar tudo" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s de %(cnt)s selecionado" -msgstr[1] "%(sel)s de %(cnt)s selecionados" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Tem mudanças por guardar nos campos individuais. Se usar uma ação, as suas " -"mudanças por guardar serão perdidas." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Selecionou uma ação mas ainda não guardou as mudanças dos campos " -"individuais. Carregue em OK para gravar. Precisará de correr de novo a ação." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Selecionou uma ação mas ainda não guardou as mudanças dos campos " -"individuais. Provavelmente quererá o botão Ir ao invés do botão Guardar." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Janeiro Fevereiro Março Abril Maio Junho Julho Agosto Setembro Outubro " -"Novembro Dezembro" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D S T Q Q S S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Mostrar" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Ocultar" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Domingo Segunda Terça Quarta Quinta Sexta Sábado" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Agora" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Relógio" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Escolha a hora" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Meia-noite" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Meio-dia" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Cancelar" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Hoje" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendário" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Ontem" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Amanhã" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo deleted file mode 100644 index 4522fc29f..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po deleted file mode 100644 index 14f209d78..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/django.po +++ /dev/null @@ -1,811 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: eduardocereto \n" -"Language-Team: Portuguese (Brazilian) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Removido %(count)d %(items)s com sucesso." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Não é possível excluir %(name)s " - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Tem certeza?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Remover %(verbose_name_plural)s selecionados" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                      By %s:

                                                                                                                                                                                      \n" -"
                                                                                                                                                                                        \n" -msgstr "" -"

                                                                                                                                                                                        Por %s

                                                                                                                                                                                        \n" -"
                                                                                                                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Todos" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Sim" - -#: filterspecs.py:139 -msgid "No" -msgstr "Não" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Desconhecido" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Qualquer data" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Hoje" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Últimos 7 dias" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Este mês" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Este ano" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Por favor, entre com um usuário e senha corretos. Note que ambos os campos " -"diferenciam maiúsculas e minúsculas." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Por favor acesse novamente, pois sua sessão expirou." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Seu endereço de e-mail não é seu nome de usuário. Tente usar '%s'" - -#: helpers.py:19 -msgid "Action:" -msgstr "Ação:" - -#: models.py:19 -msgid "action time" -msgstr "hora da ação" - -#: models.py:22 -msgid "object id" -msgstr "id do objeto" - -#: models.py:23 -msgid "object repr" -msgstr "repr do objeto" - -#: models.py:24 -msgid "action flag" -msgstr "flag de ação" - -#: models.py:25 -msgid "change message" -msgstr "modificar mensagem" - -#: models.py:28 -msgid "log entry" -msgstr "entrada de log" - -#: models.py:29 -msgid "log entries" -msgstr "entradas de log" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Nenhum" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Modificado %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "e" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Adicionado %(name)s \"%(object)s\"" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Modificado %(list)s para %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Deletado %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Nenhum campo modificado." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\": adicionado com sucesso." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Você pode editar novamente abaixo." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Você pode adicionar outro %s abaixo." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\": modificado com sucesso." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\": adicionado com sucesso. Você pode editar novamente " -"abaixo." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Os itens devem ser selecionados a fim de executar ações sobre eles. Nenhum " -"item foi modificado." - -#: options.py:846 -msgid "No action selected." -msgstr "Nenhuma ação selecionada." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Adicionar %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Objeto %(name)s com chave primária %(key)r não existe." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Modificar %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Erro no banco de dados" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s modificado com sucesso." -msgstr[1] "%(count)s %(name)s modificados com sucesso." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s selecionado" -msgstr[1] "Todos %(total_count)s selecionados" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 de %(cnt)s selecionados" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\": excluído com sucesso." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Histórico de modificações: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Acessar" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administração do Site" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administração de %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Data:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Hora:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Olhar" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Adicionar Outro(a)" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Página não encontrada" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Desculpe, mas a página requisitada não pode ser encontrada." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Início" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Erro no servidor" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Erro no servidor (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Erro no Servidor (500)" - -#: 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 "" -"Houve um erro. Este foi reportado aos administradores do site através do e-" -"mail e deve ser corrigido em breve. Obrigado pela compreensão." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Executar ação selecionada" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Ir" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Clique aqui para selecionar os objetos de todas as páginas" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Selecionar todos %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Limpar seleção" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Bem vindo," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Documentação" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Alterar senha" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Encerrar sessão" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Site de administração do Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administração do Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Adicionar" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Histórico" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Ver no site" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Por favor, corrija o erro abaixo." -msgstr[1] "Por favor, corrija os erros abaixo." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Adicionar %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtro" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Apagar" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"A remoção de '%(object_name)s' %(escaped_object)s pode resultar na remoção " -"de objetos relacionados, mas sua conta não tem a permissão para remoção dos " -"seguintes tipos de objetos:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Excluir o %(object_name)s ' %(escaped_object)s ' exigiria excluir os " -"seguintes objetos protegidos relacionados:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Você tem certeza que quer remover %(object_name)s \"%(escaped_object)s\"? " -"Todos os seguintes itens relacionados serão removidos:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Sim, tenho certeza" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Remover múltiplos objetos" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Excluir o %(objects_name)s selecionado pode resultar na remoção de objetos " -"relacionados, mas sua conta não tem permissão para excluir os seguintes " -"tipos de objetos:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Excluir o %(objects_name)s selecionado exigiria excluir os seguintes objetos " -"relacionados protegidos:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Tem certeza de que deseja apagar o %(objects_name)s selecionado? Todos os " -"seguintes objetos e seus itens relacionados serão removidos:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "Por %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modelos disponíveis na aplicação %(name)s" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Modificar" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Você não tem permissão para edição." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Ações Recentes" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Minhas Ações" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Nenhuma disponível" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Conteúdo desconhecido" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Alguma coisa está errada com a instalação do banco de dados. Certifique-se " -"que as tabelas necessárias foram criadas e que o banco de dados pode ser " -"acessado pelo usuário apropriado." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Usuário:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Senha:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Data/hora" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Usuário" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Ação" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Este objeto não tem um histórico de alterações. Ele provavelmente não foi " -"adicionado por este site de administração." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Mostrar tudo" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Salvar" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Pesquisar" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultado" -msgstr[1] "%(counter)s resultados" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s total" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Salvar como novo" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Salvar e adicionar outro" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Salvar e continuar editando" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Primeiro, informe um nome de usuário e senha. Depois você será capaz de " -"editar mais opções do usuário." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Digite um nome de usuário e senha." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Informe uma nova senha para o usuário %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Senha" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Senha (novamente)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Informe a mesma senha digitada acima, para verificação." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Adicionar outro %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Remover" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Apagar?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Obrigado por visitar nosso Web site hoje." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Acessar novamente" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Alterar senha" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Senha alterada com sucesso" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Sua senha foi alterada." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Por favor, informe sua senha antiga, por segurança, e então informe sua nova " -"senha duas vezes para que possamos verificar se você digitou corretamente." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Senha antiga" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nova senha" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Alterar minha senha" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Recuperar senha" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Recuperação de senha completa" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Sua senha foi definida. Você pode prosseguir e se autenticar agora." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Confirmação de recuperação de senha" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Insira a nova senha" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Por favor, informe sua nova senha duas vezes para que possamos verificar se " -"você a digitou corretamente." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nova senha:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Confirme a senha:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Recuperação de senha sem sucesso" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"O link para a recuperação de senha era inválido, possivelmente porque jã foi " -"utilizado. Por favor, solicite uma nova recuperação de senha." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Senha recuperada com sucesso" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Enviamos as instruções de como definir sua nova senha para o e-mail que você " -"informou. Você deverá recebê-las em breve." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Você está recebendo este e-mail porque você pediu um reset de senha para sua " -"conta de usuário em %(site_name)s ." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Por favor, acesse a seguinte página e escolha uma nova senha:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Seu nome de usuário, caso tenha esquecido:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Obrigado por usar nosso site!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Equipe %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Esqueceu sua senha? Digite seu e-mail abaixo e receberá instruções para " -"definir uma nova." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Endereço de e-mail:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Reinicializar minha senha" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Todas as datas" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Nenhum)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Selecione %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Selecione %s para modificar" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 5d49151fb..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po deleted file mode 100644 index a3deb319e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/pt_BR/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: eduardocereto \n" -"Language-Team: Portuguese (Brazilian) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s disponíveis" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtro" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Escolher todos" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Adicionar" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Remover" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s escolhido(s)" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Selecione sua(s) escolha(s) e clique " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Limpar tudo" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s de %(cnt)s selecionado" -msgstr[1] "%(sel)s de %(cnt)s selecionados" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Você tem alterações não salvas em campos editáveis individuais. Se você " -"executar uma ação suas alterações não salvas serão perdidas." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Você selecionou uma ação, mas você não salvou as alterações de cada campo " -"ainda. Clique em OK para salvar. Você vai precisar executar novamente a ação." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Você selecionou uma ação, e você não fez alterações em campos individuais. " -"Você provavelmente está procurando o botão Ir ao invés do botão \"Salvar\"." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Janeiro Fevereiro Março Abril Maio Junho Julho Agosto Setembro Outubro " -"Novembro Dezembro" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D S T Q Q S S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Mostrar" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Esconder" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Domingo Segunda Terça Quarta Quinta Sexta Sábado" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Agora" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Relógio" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Escolha uma hora" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Meia-noite" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 da manhã" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Meio-dia" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Cancelar" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Hoje" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendário" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Ontem" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Amanhã" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo deleted file mode 100644 index fa71fddc0..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.po deleted file mode 100644 index 1268b2ef9..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/django.po +++ /dev/null @@ -1,821 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-15 22:59+0000\n" -"Last-Translator: danniel \n" -"Language-Team: Romanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1))\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s eliminate cu succes." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Nu se poate șterge %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Sigur?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Elimină %(verbose_name_plural)s selectate" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                          By %s:

                                                                                                                                                                                          \n" -"
                                                                                                                                                                                            \n" -msgstr "" -"

                                                                                                                                                                                            De %s:

                                                                                                                                                                                            \n" -"
                                                                                                                                                                                              \n" -"\n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Toate" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Da" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nu" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Necunoscut" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Orice dată" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Astăzi" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Ultimele 7 zile" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Luna aceasta" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Anul acesta" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"IntroduceÈ›i un nume de utilizator È™i o parolă corectă. NotaÈ›i faptul că " -"ambele câmpuri sunt cu majuscule semnificative." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "AutentificaÈ›i-vă din nou, deoarece sesiunea dumneavoastră a expirat." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Adresa de email nu este totuna cu numele dumneavoastră de utilizator. " -"ÃŽncercaÈ›i '%s' în schimb." - -#: helpers.py:19 -msgid "Action:" -msgstr "AcÈ›iune:" - -#: models.py:19 -msgid "action time" -msgstr "timp acÈ›iune" - -#: models.py:22 -msgid "object id" -msgstr "id obiect" - -#: models.py:23 -msgid "object repr" -msgstr "repr obiect" - -#: models.py:24 -msgid "action flag" -msgstr "marcaj acÈ›iune" - -#: models.py:25 -msgid "change message" -msgstr "schimbă mesaj" - -#: models.py:28 -msgid "log entry" -msgstr "intrare jurnal" - -#: models.py:29 -msgid "log entries" -msgstr "intrări jurnal" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Nimic" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "S-a schimbat %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "È™i" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "S-a adăugat %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "S-a schimbat %(list)s în %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "S-a È™ters %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Niciun câmp modificat." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" a fost adăugat cu succes." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "PuteÈ›i edita din nou mai jos." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "PuteÈ›i adăuga înca un/o %s mai jos." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" a fost modificat(ă) cu succes." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" a fost adăugat(ă) cu succes. PuteÈ›i edita din nou mai " -"jos." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Itemii trebuie selectaÈ›i pentru a putea îndeplini sarcini asupra lor. Niciun " -"item nu a fost modificat." - -#: options.py:846 -msgid "No action selected." -msgstr "Nicio acÈ›iune selectată." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Adaugă %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Obiectul %(name)s ce are cheie primară %(key)r nu există." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Schimbă %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Eroare de bază de date" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s s-a modificat cu succes." -msgstr[1] "%(count)s %(name)s s-au modificat cu succes." -msgstr[2] "%(count)s de %(name)s s-au modificat cu succes." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s selectat(ă)" -msgstr[1] "Toate %(total_count)s selectate" -msgstr[2] "Toate %(total_count)s selectate" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 din %(cnt)s selectat" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" eliminat(ă) cu succes." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Istoric schimbări: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Autentificare" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administrare site" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administrare %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Dată:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Oră:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Căutare" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Mai adăugaÈ›i" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Pagină inexistentă" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Ne pare rău, dar pagina solicitată nu a putut fi găsită." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Acasă" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Eroare de server" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Eroare de server (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Eroare server (500)" - -#: 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 "" -"A apărut o eroare. A fost raportată prin e-mail către administrator È™i ar " -"trebui să fie rezolvată în scurt timp. MulÅ£umim pentru înÅ£elegere." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "PorneÈ™te acÈ›iunea selectată" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Start" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Clic aici pentru a selecta obiectele la nivelul tuturor paginilor" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "SelectaÈ›i toate %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "DeselectaÈ›i" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Bun venit," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "DocumentaÈ›ie" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Schimbă parola" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Deautentificare" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Administrare sit Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administrare Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Adaugă" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Istoric" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Vizualizează pe sit" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "CorectaÈ›i eroarea de mai jos" -msgstr[1] "CorectaÈ›i erorile de mai jos" -msgstr[2] "CorectaÈ›i erorile de mai jos" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Adaugă %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtru" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Șterge" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Ștergerea %(object_name)s '%(escaped_object)s' va duce È™i la È™tergerea " -"obiectelor asociate, însă contul dumneavoastră nu are permisiunea de a " -"È™terge următoarele tipuri de obiecte:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Ștergerea %(object_name)s '%(escaped_object)s' ar putea necesita È™i " -"È™tergerea următoarelor obiecte protejate asociate:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Sigur doriÈ›i È™tergerea %(object_name)s \"%(escaped_object)s\"? Următoarele " -"itemuri asociate vor fi È™terse:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Da, cu siguranță" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "ȘtergeÈ›i obiecte multiple" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Ștergerea %(objects_name)s conform selecÈ›iei ar putea duce la È™tergerea " -"obiectelor asociate, însă contul dvs. de utilizator nu are permisiunea de a " -"È™terge următoarele tipuri de obiecte:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Åžtergerea %(objects_name)s conform selecÈ›iei ar necesita È™i È™tergerea " -"următoarelor obiecte protejate asociate:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Sigur doriÅ£i să È™tergeÈ›i %(objects_name)s conform selecÈ›iei? Toate obiectele " -"următoare alături de cele asociate lor vor fi È™terse:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "După %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modele disponibile în aplicaÈ›ia %(name)s" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Schimbă" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Nu nicio permisiune de editare." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "AcÈ›iuni recente" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "AcÈ›iunile mele" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Niciuna" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "ConÈ›inut necunoscut" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Există o problema cu baza de date. VerificaÈ›i dacă tabelele necesare din " -"baza de date au fost create È™i verificaÈ›i dacă baza de date poate fi citită " -"de utilizatorul potrivit." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Utilizator:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Parolă:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Dată/oră" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Utilizator" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "AcÈ›iune" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Acest obiect nu are un istoric al schimbărilor. Probabil nu a fost adăugat " -"prin intermediul acestui sit de administrare." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Arată totul" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Salvează" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Caută" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s rezultat" -msgstr[1] "%(counter)s rezultate" -msgstr[2] "%(counter)s de rezultate" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s în total" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "SalvaÈ›i ca nou" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "SalvaÈ›i È™i mai adăugaÈ›i" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "SalvaÈ›i È™i continuaÈ›i editarea" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"IntroduceÈ›i mai întâi un nume de utilizator È™i o parolă. Apoi veÈ›i putea " -"modifica mai multe opÈ›iuni ale utilizatorului." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "IntroduceÈ›i un nume de utilizator È™i o parolă." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"IntroduceÈ›i o parolă nouă pentru utilizatorul %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Parolă" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Parolă (din nou)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "IntroduceÈ›i parola din nou, pentru verificare." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Adăugati încă un/o %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Elimină" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Elimină?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "MulÅ£umiri pentru timpul petrecut astăzi pe sit." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Reautentificare" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Schimbare parolă" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Schimbare reuÈ™ită a parolei" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Parola a fost schimbată." - -#: templates/registration/password_change_form.html:22 -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 "" -"Din motive de securitate, introduceÈ›i parola veche, apoi de două ori parola " -"nouă, pentru a putea verifica dacă aÈ›i scris-o corect. " - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Parolă veche" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Parolă nouă" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Schimbă-mi parola" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Resetare parolă" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Resetare completă a parolei" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" -"Parola dumneavoastră a fost stabilită. Acum puteÈ›i continua să vă " -"autentificaÈ›i." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Confirmare resetare parolă" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "IntroduceÈ›i parolă nouă" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"IntroduceÈ›i parola de două ori, pentru a putea verifica dacă aÈ›i scris-o " -"corect." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Parolă nouă:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Confirmare parolă:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Resetare nereuÈ™ită a parolei" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Link-ul de resetare a parolei a fost nevalid, probabil din cauză că acesta a " -"fost deja utilizat. SolicitaÈ›i o nouă resetare a parolei." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Parolă resetată cu succes" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Vi s-au trimis la adresa de e-mail specificată instrucÈ›iunile pentru a vă " -"seta parola. Ar trebui să le primiÈ›i în curând." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"AÈ›i primit acest e-mail deoarece aÈ›i solicitat resetarea parolei pentru " -"contul dumneavoastră de utilizator de la %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "MergeÈ›i la următoarea pagină È™i alegeÈ›i o parolă nouă:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Numele de utilizator, în caz că l-aÈ›i uitat:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "MulÈ›umiri pentru utilizarea sitului nostru!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Echipa %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"AÈ›i uitat parola? IntroduceÈ›i adresa dvs. de e-mail mai jos È™i vă vom " -"trimite la aceasta instrucÈ›iunile de setare a unei parole noi." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Adresă email:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Resetează-mi parola" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Toate datele" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Nimic)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Selectează %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Selectează %s pentru schimbare" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo deleted file mode 100644 index c7fc5c9b1..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po deleted file mode 100644 index 912478da7..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ro/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,156 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-07 10:18+0000\n" -"Last-Translator: danniel \n" -"Language-Team: Romanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1))\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s disponibil" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtru" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Alege toate" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Adaugă" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Șterge" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s alese" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "SelectaÈ›i alegerile si daÈ›i clic" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "ȘtergeÈ›i tot" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s din %(cnt)s selectate" -msgstr[1] "%(sel)s din %(cnt)s selectate" -msgstr[2] "de %(sel)s din %(cnt)s selectate" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"AveÅ£i modificări nesalvate în cîmpuri individuale editabile. Dacă executaÅ£i " -"o acÈ›iune, modificările nesalvate vor fi pierdute." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"AÅ£i selectat o acÅ£iune, dar nu aÅ£i salvat încă modificările la câmpuri " -"individuale. FaceÅ£i clic pe OK pentru a salva. Va trebui să executaÈ›i " -"acÈ›iunea din nou." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"AÈ›i selectat o acÅ£iune È™i nu ațţi făcut modificări în cîmpuri individuale. " -"Probabil căutaÈ›i butonul Go, în loc de Salvează." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Ianuarie Februare Martie Aprilie Mai Iunie Iulie August Septembrie Octombrie " -"Noiembrie Decembrie" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D L M M J V S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Arată" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Ascunde" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Duminica Luni MarÈ›i Miercuri Joi Vineri Sâmbătă" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Acum" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Ceas" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Alege o oră" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Miezul nopÈ›ii" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Amiază" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Anulează" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Astăzi" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Calendar" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Ieri" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Mâine" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo deleted file mode 100644 index 35a241dac..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.po deleted file mode 100644 index 7b6f09eea..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/django.po +++ /dev/null @@ -1,821 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: dnx \n" -"Language-Team: Russian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "УÑпешно удалены %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Ðе удаетÑÑ ÑƒÐ´Ð°Ð»Ð¸Ñ‚ÑŒ %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Ð’Ñ‹ уверены?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Удалить выбранные %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                              By %s:

                                                                                                                                                                                              \n" -"
                                                                                                                                                                                                \n" -msgstr "" -"

                                                                                                                                                                                                По %s:

                                                                                                                                                                                                \n" -"
                                                                                                                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Ð’Ñе" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Да" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ðет" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "ÐеизвеÑтно" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Ð›ÑŽÐ±Ð°Ñ Ð´Ð°Ñ‚Ð°" - -#: filterspecs.py:197 -msgid "Today" -msgstr "СегоднÑ" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "ПоÑледние 7 дней" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Этот меÑÑц" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Этот год" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"ПожалуйÑта, введите верные Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸ пароль. Помните, оба Ð¿Ð¾Ð»Ñ " -"чувÑтвительны к региÑтру." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "ПожалуйÑта, войдите Ñнова, поÑкольку ваша ÑеÑÑÐ¸Ñ ÑƒÑтарела." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Ваш Ð°Ð´Ñ€ÐµÑ Ñлектронной почты не ÑвлÑетÑÑ Ð²Ð°ÑˆÐ¸Ð¼ именем пользователÑ. " -"Попробуйте '%s' взамен." - -#: helpers.py:19 -msgid "Action:" -msgstr "ДейÑтвие:" - -#: models.py:19 -msgid "action time" -msgstr "Ð²Ñ€ÐµÐ¼Ñ Ð´ÐµÐ¹ÑтвиÑ" - -#: models.py:22 -msgid "object id" -msgstr "идентификатор объекта" - -#: models.py:23 -msgid "object repr" -msgstr "предÑтавление объекта" - -#: models.py:24 -msgid "action flag" -msgstr "тип дейÑтвиÑ" - -#: models.py:25 -msgid "change message" -msgstr "Ñообщение об изменении" - -#: models.py:28 -msgid "log entry" -msgstr "запиÑÑŒ в журнале" - -#: models.py:29 -msgid "log entries" -msgstr "запиÑи в журнале" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ðет" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Изменен %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "и" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Добавлен %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Изменены %(list)s Ð´Ð»Ñ %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Удален %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Ðи одно поле не изменено." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" был уÑпешно добавлен." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Ðиже вы можете Ñнова его отредактировать." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Ðиже вы можете добавить еще один %s." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" был уÑпешно изменен." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" был уÑпешно добавлен. Ðиже вы можете Ñнова его " -"отредактировать." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Чтобы произвеÑти дейÑÑ‚Ð²Ð¸Ñ Ð½Ð°Ð´ объектами, необходимо их выбрать. Объекты не " -"были изменены." - -#: options.py:846 -msgid "No action selected." -msgstr "ДейÑтвие не выбрано." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Добавить %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s Ñ Ð¿ÐµÑ€Ð²Ð¸Ñ‡Ð½Ñ‹Ð¼ ключом %(key)r не ÑущеÑтвует." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Изменить %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Ошибка базы данных" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s был уÑпешно изменен." -msgstr[1] "%(count)s %(name)s были уÑпешно изменены." -msgstr[2] "%(count)s %(name)s были уÑпешно изменены." -msgstr[3] "%(count)s %(name)s были уÑпешно изменены." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "Выбран %(total_count)s" -msgstr[1] "Выбраны вÑе %(total_count)s" -msgstr[2] "Выбраны вÑе %(total_count)s" -msgstr[3] "Выбраны вÑе %(total_count)s" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "Выбрано 0 объектов из %(cnt)s " - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" был уÑпешно удален." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ИÑÑ‚Ð¾Ñ€Ð¸Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ð¹: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Войти" - -#: sites.py:375 -msgid "Site administration" -msgstr "ÐдминиÑтрирование Ñайта" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s админиÑтрирование" - -#: widgets.py:75 -msgid "Date:" -msgstr "Дата:" - -#: widgets.py:75 -msgid "Time:" -msgstr "ВремÑ:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "ПоиÑк" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Добавить еще" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Страница не найдена" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "К Ñожалению, Ð·Ð°Ð¿Ñ€Ð°ÑˆÐ¸Ð²Ð°ÐµÐ¼Ð°Ñ Ð²Ð°Ð¼Ð¸ Ñтраница не найдена." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Ðачало" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Ошибка Ñервера" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Ошибка Ñервера (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Ошибка Ñервера (500)" - -#: 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 "" -"Произошла ошибка. О ней Ñообщено админиÑтраторам Ñайта по Ñлектронной почте, " -"ошибка должна быть вÑкоре иÑправлена. Благодарим Ð²Ð°Ñ Ð·Ð° терпение." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Выполнить выбранное дейÑтвие" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Выполнить" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Ðажмите здеÑÑŒ, чтобы выбрать объекты на вÑех Ñтраницах" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Выбрать вÑе %(module_name)s (%(total_count)s)" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "СнÑÑ‚ÑŒ выделение" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Добро пожаловать," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "ДокументациÑ" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Изменить пароль" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Выйти" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "ÐдминиÑтративный Ñайт Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "ÐдминиÑтрирование Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Добавить" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ИÑториÑ" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Смотреть на Ñайте" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "ПожалуйÑта, иÑправьте ошибку ниже." -msgstr[1] "ПожалуйÑта, иÑправьте ошибки ниже." -msgstr[2] "ПожалуйÑта, иÑправьте ошибки ниже." -msgstr[3] "ПожалуйÑта, иÑправьте ошибки ниже." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Добавить %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Фильтр" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Удалить" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Удаление %(object_name)s '%(escaped_object)s' приведет к удалению ÑвÑзанных " -"объектов, но ваша ÑƒÑ‡ÐµÑ‚Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ не имеет прав Ð´Ð»Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ñледующих типов " -"объектов:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Удаление %(object_name)s '%(escaped_object)s' потребует ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ñледующих " -"ÑвÑзанных защищенных объектов:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Ð’Ñ‹ уверены, что хотите удалить %(object_name)s \"%(escaped_object)s\"? Ð’Ñе " -"Ñледующие ÑвÑзанные объекты также будут удалены:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Да, Ñ ÑƒÐ²ÐµÑ€ÐµÐ½" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Удалить неÑколько объектов" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Удаление выбранной %(objects_name)s приведет к удалению ÑвÑзанных объектов, " -"но ваша ÑƒÑ‡ÐµÑ‚Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ не имеет Ñ€Ð°Ð·Ñ€ÐµÑˆÐµÐ½Ð¸Ñ Ð½Ð° удаление Ñледующих типов " -"объектов:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Удаление %(objects_name)s потребует ÑƒÐ´Ð°Ð»ÐµÐ½Ð¸Ñ Ñледующих ÑвÑзанных защищенных " -"объектов:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Ð’Ñ‹ уверены, что хотите удалить %(objects_name)s? Ð’Ñе Ñледующие объекты и " -"ÑвÑзанные Ñ Ð½Ð¸Ð¼Ð¸ Ñлементы будут удалены:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " По %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Модели доÑтупны в приложении %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Изменить" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "У Ð²Ð°Ñ Ð½ÐµÐ´Ð¾Ñтаточно прав Ð´Ð»Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "ПоÑледние дейÑтвиÑ" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Мои дейÑтвиÑ" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "ÐедоÑтупно" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "ÐеизвеÑтный тип" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Ваша база данных неправильно наÑтроена. УбедитеÑÑŒ, что ÑоответÑтвующие " -"таблицы были Ñозданы, и что ÑоответÑтвующему пользователю разрешен к ним " -"доÑтуп." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "ИмÑ:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Пароль:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Дата и времÑ" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Пользователь" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "ДейÑтвие" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Данный объект не имеет иÑтории изменений. Возможно, он был добавлен не через " -"данный админиÑтративный Ñайт." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Показать вÑе" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Сохранить" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Ðайти" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s результат" -msgstr[1] "%(counter)s результата" -msgstr[2] "%(counter)s результатов" -msgstr[3] "%(counter)s результатов" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s вÑего" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Сохранить как новый объект" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Сохранить и добавить другой объект" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Сохранить и продолжить редактирование" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Сначала введите Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸ пароль. Затем вы Ñможете отредактировать " -"больше информации о пользователе." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Введите Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ Ð¸ пароль." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Введите новый пароль Ð´Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Пароль" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Пароль (еще раз)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Введите тот же пароль, что и выше, Ð´Ð»Ñ Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Добавить еще один %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Удалить" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Удалить?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Благодарим Ð²Ð°Ñ Ð·Ð° времÑ, проведенное на Ñтом Ñайте." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Войти Ñнова" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Изменение паролÑ" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Пароль уÑпешно изменен" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Ваш пароль был изменен." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Ð’ целÑÑ… безопаÑноÑти, пожалуйÑта, введите Ñвой Ñтарый пароль, затем введите " -"новый пароль дважды, чтобы мы могли убедитьÑÑ Ð² правильноÑти напиÑаниÑ." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Старый пароль" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Ðовый пароль" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Изменить мой пароль" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "ВоÑÑтановление паролÑ" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "ВоÑÑтановление Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¾" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Ваш пароль был Ñохранен. Теперь вы можете войти." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Подтверждение воÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Введите новый пароль:" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"ПожалуйÑта, введите новый пароль дважды, чтобы мы могли убедитьÑÑ Ð² " -"правильноÑти напиÑаниÑ." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Ðовый пароль:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Подтвердите пароль:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Ошибка воÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"ÐÐµÐ²ÐµÑ€Ð½Ð°Ñ ÑÑылка Ð´Ð»Ñ Ð²Ð¾ÑÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ. Возможно, ей уже воÑпользовалиÑÑŒ. " -"ПожалуйÑта, попробуйте воÑÑтановить пароль еще раз." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Пароль уÑпешно воÑÑтановлен" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Мы отправили инÑтрукцию по воÑÑтановлению Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ð° Ð°Ð´Ñ€ÐµÑ Ñлектронной почты, " -"который вы указали. Ð’Ñ‹ должны ее вÑкоре получить." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Ð’Ñ‹ получиле Ñто пиÑьмо, потому что проÑили ÑÐ±Ñ€Ð¾Ñ Ð¿Ð°Ñ€Ð¾Ð»Ñ Ð½Ð° Ñвой " -"пользовательÑкий Ñчет на %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "ПожалуйÑта, проÑледуйте на Ñту Ñтраницу и введите новый пароль:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Ваше Ð¸Ð¼Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»Ñ (на Ñлучай, еÑли вы его забыли):" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "СпаÑибо, что иÑпользуете наш Ñайт." - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Команда Ñайта %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Забыли пароль? Введите Ñвой Ð°Ð´Ñ€ÐµÑ Ñлектронной почты ниже, и мы вышлем вам " -"инÑтрукцию, как уÑтановить новый пароль." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "ÐÐ´Ñ€ÐµÑ Ñлектронной почты:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "ВоÑÑтановить мой пароль" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Ð’Ñе даты" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ðичего)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Выберите %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Выберите %s Ð´Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo deleted file mode 100644 index e19f014ef..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po deleted file mode 100644 index 2a2368867..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ru/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,158 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: dnx \n" -"Language-Team: Russian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "ДоÑтупные %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Фильтр" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Выбрать вÑе" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Добавить" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Удалить" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Выбранные %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Выберите и нажмите " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "ОчиÑтить вÑÑ‘" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "Выбран %(sel)s из %(cnt)s" -msgstr[1] "Выбрано %(sel)s из %(cnt)s" -msgstr[2] "Выбрано %(sel)s из %(cnt)s" -msgstr[3] "Выбрано %(sel)s из %(cnt)s" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"ИмеютÑÑ Ð½ÐµÑохраненные Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð² отдельных полÑÑ… Ð´Ð»Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ. ЕÑли " -"вы запуÑтите дейÑтвие, неÑохраненные Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð±ÑƒÐ´ÑƒÑ‚ потерÑны." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Ð’Ñ‹ выбрали дейÑтвие, но еще не Ñохранили изменениÑ, внеÑенные в некоторых " -"полÑÑ… Ð´Ð»Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ. Ðажмите OK, чтобы Ñохранить изменениÑ. ПоÑле " -"ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ð²Ð°Ð¼ придетÑÑ Ð·Ð°Ð¿ÑƒÑтить дейÑтвие еще раз." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Ð’Ñ‹ выбрали дейÑтвие и не внеÑли изменений в данные. Возможно, вы хотели " -"воÑпользоватьÑÑ ÐºÐ½Ð¾Ð¿ÐºÐ¾Ð¹ \"Выполнить\", а не кнопкой \"Сохранить\". ЕÑли Ñто " -"так, то нажмите \"Отмена\", чтобы вернутьÑÑ Ð² Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ. " - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Январь Февраль Март Ðпрель Май Июнь Июль ÐвгуÑÑ‚ СентÑбрь ОктÑбрь ÐоÑбрь " -"Декабрь" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "Ð’ П Ð’ С Ч П С" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Показать" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Скрыть" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ВоÑкреÑенье Понедельник Вторник Среда Четверг ПÑтница Суббота" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "СейчаÑ" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "ЧаÑÑ‹" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Выберите времÑ" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Полночь" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 чаÑов" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Полдень" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Отмена" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "СегоднÑ" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Календарь" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Вчера" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Завтра" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo deleted file mode 100644 index 269f271db..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.po deleted file mode 100644 index 9be1a99f2..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/django.po +++ /dev/null @@ -1,815 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-06 09:47+0000\n" -"Last-Translator: martinkosir \n" -"Language-Team: Slovak \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "ÚspeÅ¡ne zmazaných %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Nedá sa vymazaÅ¥ %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Ste si istý?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "ZmazaÅ¥ oznaÄené %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                  By %s:

                                                                                                                                                                                                  \n" -"
                                                                                                                                                                                                    \n" -msgstr "" -"

                                                                                                                                                                                                    Od %s:

                                                                                                                                                                                                    \n" -"
                                                                                                                                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "VÅ¡etko" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ãno" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nie" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Neznámy" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Ľubovoľný dátum" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Dnes" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Posledných 7 dní" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Tento mesiac" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Tento rok" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Prosím, zadajte správne používateľské meno a heslo. ReÅ¡pektujte malé a veľké " -"písmená." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "VaÅ¡e prihlásenie vyprÅ¡alo. Prosím, prihláste sa znovu." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"VaÅ¡a e-mailová adresa nie je vaÅ¡im používateľským menom. Skúste namiesto " -"toho použiÅ¥ '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Akcia:" - -#: models.py:19 -msgid "action time" -msgstr "Äas akcie" - -#: models.py:22 -msgid "object id" -msgstr "identifikátor objektu" - -#: models.py:23 -msgid "object repr" -msgstr "reprezentácia objektu" - -#: models.py:24 -msgid "action flag" -msgstr "príznak akcie" - -#: models.py:25 -msgid "change message" -msgstr "zmeniÅ¥ správu" - -#: models.py:28 -msgid "log entry" -msgstr "položka záznamu" - -#: models.py:29 -msgid "log entries" -msgstr "položky záznamu" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Žiadne" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Zmenené %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "a" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Pridaný %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Zmenený %(list)s pre %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Zmazaný %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Polia nezmenené." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Objekt %(name)s \"%(obj)s\" bol úspeÅ¡ne pridaný." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Nižšie môžete znova robiÅ¥ úpravy." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Nižšie môžete pridaÅ¥ ÄalÅ¡ie %s." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Objekt %(name)s \"%(obj)s\" bol úspeÅ¡ne zmenený." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Objekt %(name)s \"%(obj)s\" bol úspeÅ¡ne pridaný. ÄŽalÅ¡ie zmeny môžete urobiÅ¥ " -"nižšie." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Položky musia byÅ¥ vybrané, ak chcete na nich vykonaÅ¥ akcie. Neboli vybrané " -"žiadne položky." - -#: options.py:846 -msgid "No action selected." -msgstr "Nebola vybraná žiadna akcia." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "PridaÅ¥ %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Objekt %(name)s s primárnym kľúÄom %(key)r neexistuje." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "ZmeniÅ¥ %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Chyba databázy" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s bola úspeÅ¡ne zmenená." -msgstr[1] "%(count)s %(name)s boli úspeÅ¡ne zmenené." -msgstr[2] "%(count)s %(name)s bolo úspeÅ¡ne zmenených." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s vybraná" -msgstr[1] "VÅ¡etky %(total_count)s vybrané" -msgstr[2] "VÅ¡etkých %(total_count)s vybraných" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 z %(cnt)s vybraných" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Objekt %(name)s \"%(obj)s\" bol úspeÅ¡ne vymazaný." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ZmeniÅ¥ históriu: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Prihlásenie" - -#: sites.py:375 -msgid "Site administration" -msgstr "Správa stránky" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s správa" - -#: widgets.py:75 -msgid "Date:" -msgstr "Dátum:" - -#: widgets.py:75 -msgid "Time:" -msgstr "ÄŒas:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Vyhľadanie" - -#: widgets.py:246 -msgid "Add Another" -msgstr "PridaÅ¥ Äalší" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Stránka nenájdená" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Ľutujeme, ale požadovanú stránku nie je možné nájsÅ¥." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Domov" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Chyba servera" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Chyba servera (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Chyba servera (500)" - -#: 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 "" -"Vyskytla sa chyba. Bola oznámená správcovi stránky e-mailom a mala by byÅ¥ " -"Äoskoro opravená. ÄŽakujeme za pochopenie." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "VykonaÅ¥ vybranú akciu" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "VykonaÅ¥" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Kliknite sem pre výber objektov na vÅ¡etkých stránkach" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "VybraÅ¥ vÅ¡etkých %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "ZruÅ¡iÅ¥ výber" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Vitajte," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentácia" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "ZmeniÅ¥ heslo" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "OdhlásiÅ¥" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Správa Django stránky" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Správa Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "PridaÅ¥" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "História" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "PozrieÅ¥ na stránke" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Prosím, opravte chybu uvedenú nižšie." -msgstr[1] "Prosím, opravte chyby uvedené nižšie." -msgstr[2] "Prosím, opravte chyby uvedené nižšie." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "PridaÅ¥ %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "FiltrovaÅ¥" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "OdstrániÅ¥" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Odstránenie objektu %(object_name)s '%(escaped_object)s' by malo za následok " -"aj odstránenie súvisiacich objektov. Váš úÄet vÅ¡ak nemá oprávnenie na " -"odstránenie nasledujúcich typov objektov:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Vymazanie %(object_name)s '%(escaped_object)s' vyžaduje vymazanie " -"nasledovných súvisiacich chránených objektov:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Ste si istý, že chcete odstrániÅ¥ objekt %(object_name)s \"%(escaped_object)s" -"\"? VÅ¡etky nasledujúce súvisiace objekty budú odstránené:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ãno, som si istý" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "ZmazaÅ¥ viacero objektov" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Vymazanie oznaÄených %(objects_name)s by spôsobilo vymazanie súvisiacich " -"objektov, ale váš úÄet nemá oprávnenie na vymazanie nasledujúcich typov " -"objektov:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Vymazanie oznaÄených %(objects_name)s vyžaduje vymazanie nasledujúcich " -"chránených súvisiacich objektov:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Ste si isty, že chcete vymazaÅ¥ oznaÄené %(objects_name)s? Vymažú sa vÅ¡etky " -"nasledujúce objekty a ich súvisiace položky:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "Podľa %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modely dostupné v aplikácii %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "ZmeniÅ¥" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Nemáte právo na vykonávanie zmien." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Posledné akcie" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Moje akcie" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Nedostupné" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Neznámy obsah" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"NieÄo nie je v poriadku s vaÅ¡ou inÅ¡taláciou databázy. Uistite sa, že boli " -"vytvorené potrebné databázové tabuľky a taktiež skontrolujte, Äi prísluÅ¡ný " -"používateľ môže databázu ÄítaÅ¥." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Meno používateľa:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Heslo:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Dátum a Äas" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Používateľ" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Akcia" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Tento objekt nemá históriu zmien. Pravdepodobne nebol pridaný " -"prostredníctvom tejto správcovskej stránky." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "ZobraziÅ¥ vÅ¡etky" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "UložiÅ¥" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Vyhľadávanie" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s výsledok" -msgstr[1] "%(counter)s výsledky" -msgstr[2] "%(counter)s výsledkov" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s spolu" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "UložiÅ¥ ako nový" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "UložiÅ¥ a pridaÅ¥ Äalší" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "UložiÅ¥ a pokraÄovaÅ¥ v úpravách" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Najskôr zadajte používateľské meno a heslo. Potom budete môcÅ¥ upraviÅ¥ viac " -"používateľských nastavení." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Zadajte používateľské meno a heslo." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Zadajte nové heslo pre používateľa %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Heslo" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Heslo (znova)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Kvôli overeniu zadajte rovnaké heslo ako vyÅ¡Å¡ie." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "PridaÅ¥ Äalší %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "OdstrániÅ¥" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "ZmazaÅ¥?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "ÄŽakujeme za Äas strávený na naÅ¡ich stránkach." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Znova sa prihlásiÅ¥" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Zmena hesla" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Zmena hesla úspeÅ¡ná" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "VaÅ¡e heslo bolo zmenené." - -#: templates/registration/password_change_form.html:22 -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 "" -"Z bezpeÄnostných dôvodov zadajte staré heslo a potom nové heslo dvakrát, aby " -"sme mohli overiÅ¥, že ste ho zadali správne." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Staré heslo" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nové heslo" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "ZmeniÅ¥ moje heslo" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Obnovenie hesla" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Obnovenie hesla ukonÄené" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "VaÅ¡e heslo bolo nastavené. Môžete pokraÄovaÅ¥ a prihlásiÅ¥ sa." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Potvrdenie obnovenia hesla" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Zadajte nové heslo" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Zadajte nové heslo dvakrát, aby sme mohli overiÅ¥, že ste ho zadali správne." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nové heslo:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Potvrdenie hesla:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Obnova hesla sa nepodarila" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Odkaz na obnovenie hesla je neplatný, pretože už bol pravdepodobne raz " -"použitý. Prosím, požiadajte znovu o obnovu hesla." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Obnovenie hesla úspeÅ¡né" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Na uvedenú e-mailovú adresu sme vám poslali návod na obnovenie hesla. Mali " -"by ste ho zakrátko dostaÅ¥." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Obdržali ste tento e-mail, pretože ste požiadali o obnovu hesla vášho úÄtu " -"na %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Prosím, choÄte na túto stránku a zvoľte si nové heslo:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "VaÅ¡e používateľské meno, pre prípad, že ste ho zabudli:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "ÄŽakujeme, že používate naÅ¡u stránku!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Tím %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Zabudli ste heslo? Zadajte svoju e-mail adresu a my Vám poÅ¡leme inÅ¡trukcie " -"pre nastavenie nového." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mailová adresa:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Obnova môjho hesla" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "VÅ¡etky dátumy" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Žiadne)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "VybraÅ¥ %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "VybraÅ¥ \"%s\" na úpravu" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo deleted file mode 100644 index c284c9cc9..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po deleted file mode 100644 index a15655822..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sk/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-06 09:43+0000\n" -"Last-Translator: martinkosir \n" -"Language-Team: Slovak \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Dostupné %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "FiltrovaÅ¥" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "VybraÅ¥ vÅ¡etko" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "PridaÅ¥" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "OdstrániÅ¥" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Vybrané %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Zvoľte možnosÅ¥ a kliknite " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "VÅ¡etko zruÅ¡iÅ¥" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s z %(cnt)s vybrané" -msgstr[1] "%(sel)s z %(cnt)s vybrané" -msgstr[2] "%(sel)s z %(cnt)s vybraných" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Vrámci jednotlivých editovateľných polí máte neuložené zmeny. Ak vykonáte " -"akciu, vaÅ¡e zmeny budú stratené." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Vybrali ste akciu, ale neuložili ste jednotlivé polia. Prosím, uložte zmeny " -"kliknutím na OK. Akciu budete musieÅ¥ vykonaÅ¥ znova." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Vybrali ste akciu, ale neurobili ste žiadne zmeny v jednotlivých poliach. " -"Pravdepodobne ste chceli použiÅ¥ tlaÄidlo vykonaÅ¥ namiesto uložiÅ¥." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"január február marec apríl máj jún júl august september október november " -"december" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "N P U S Å  P S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "ZobraziÅ¥" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "SkryÅ¥" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "nedeľa pondelok utorok streda Å¡tvrtok piatok sobota" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Teraz" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Hodiny" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "VybraÅ¥ Äas" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Polnoc" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6:00" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Poludnie" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "ZruÅ¡iÅ¥" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Dnes" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalendár" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "VÄera" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Zajtra" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo deleted file mode 100644 index 82b8e3f49..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.po deleted file mode 100644 index f728200fe..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/django.po +++ /dev/null @@ -1,815 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-05 13:48+0000\n" -"Last-Translator: zejn \n" -"Language-Team: Slovenian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "UspeÅ¡no izbrisano %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Ni mogoÄe izbrisati %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Ste prepriÄani?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "IzbriÅ¡i izbrano: %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                      By %s:

                                                                                                                                                                                                      \n" -"
                                                                                                                                                                                                        \n" -msgstr "" -"

                                                                                                                                                                                                        Avtor: %s

                                                                                                                                                                                                        \n" -"
                                                                                                                                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Vse" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Da" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ne" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Neznano" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Kadarkoli" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Danes" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Zadnjih 7 dni" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Ta mesec" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Letos" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Prosimo, vnesite veljavno uporabniÅ¡ko ime in geslo. Opomba: obe polji " -"upoÅ¡tevata velikost Ärk." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "VaÅ¡a seja je pretekla; prosimo da se ponovno prijavite." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "VaÅ¡ e-mail naslov ni vaÅ¡e uporabniÅ¡ko ime. Poskusite uporabiti '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Dejanje:" - -#: models.py:19 -msgid "action time" -msgstr "Äas dejanja" - -#: models.py:22 -msgid "object id" -msgstr "id objekta" - -#: models.py:23 -msgid "object repr" -msgstr "predstavitev objekta" - -#: models.py:24 -msgid "action flag" -msgstr "zastavica dejanja" - -#: models.py:25 -msgid "change message" -msgstr "spremeni sporoÄilo" - -#: models.py:28 -msgid "log entry" -msgstr "dnevniÅ¡ki vnos" - -#: models.py:29 -msgid "log entries" -msgstr "dnevniÅ¡ki vnosi" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Brez vrednosti" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Spremenjen %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "in" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Dodal %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Spremenjeno %(list)s za %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Izbrisan %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Nobeno polje ni bilo spremenjeno." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" je bil uspeÅ¡no dodan." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Vsebino lahko znova uredite spodaj." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Spodaj lahko dodate Å¡e en %s." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" je bil uspeÅ¡no spremenjen." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" je bil uspeÅ¡no dodan. Ponovno ga lahko uredite spodaj." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Izbrati morate vnose, nad katerimi želite izvesti operacijo. Noben vnos ni " -"bil spremenjen." - -#: options.py:846 -msgid "No action selected." -msgstr "Brez dejanja." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Dodaj %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Objekt %(name)s z glavnim kljuÄem %(key)r ne obstaja." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Spremeni %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Napaka v podatkovni bazi" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s je bil uspeÅ¡no spremenjen." -msgstr[1] "%(count)s %(name)s sta bila uspeÅ¡no spremenjena." -msgstr[2] "%(count)s %(name)s so bili uspeÅ¡no spremenjeni." -msgstr[3] "%(count)s %(name)s je bilo uspeÅ¡no spremenjenih." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s izbran" -msgstr[1] "%(total_count)s izbrana" -msgstr[2] "%(total_count)s izbrani" -msgstr[3] "%(total_count)s izbranih" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 od %(cnt)s izbranih" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" je bil uspeÅ¡no izbrisan." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Zgodovina sprememb: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Prijavite se" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administracija strani" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administracija %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Datum:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Ura:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Poizvedba" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Dodaj Å¡e enega" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Strani ni mogoÄe najti" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "OpraviÄujemo se, a zahtevane strani ni mogoÄe najti." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Domov" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Napaka na strežniku" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Napaka na strežniku (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Napaka na strežniku (500)" - -#: 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 "" -"PriÅ¡lo je do nepriÄakovane napake. Napaka je bila javljena administratorjem " -"spletne strani in naj bi jo v kratkem odpravili. Hvala za potrpljenje." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Izvedi izbrano dejanje" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Pojdi" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Kliknite tu za izbiro vseh vnosov na vseh straneh" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Izberi vse %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "PoÄisti izbiro" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "DobrodoÅ¡li," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentacija" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Spremeni geslo" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Odjava" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django administrativni vmesnik" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django administracija" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Dodaj" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Zgodovina" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Poglej na strani" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Prosimo, odpravite sledeÄo napako." -msgstr[1] "Prosimo, odpravite sledeÄi napaki." -msgstr[2] "Prosimo, odpravite sledeÄe napake." -msgstr[3] "Prosimo, odpravite sledeÄe napake." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Dodaj %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filter" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "IzbriÅ¡i" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Izbris %(object_name)s '%(escaped_object)s' bi pomenil izbris povezanih " -"objektov, vendar nimate dovoljenja za izbris naslednjih tipov objektov:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Brisanje %(object_name)s '%(escaped_object)s' bi zahtevalo brisanje " -"naslednjih zaÅ¡Äitenih povezanih objektov:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Ste prepriÄani, da želite izbrisati %(object_name)s \"%(escaped_object)s\"? " -"Vsi naslednji povezani elementi bodo izbrisani:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ja, prepriÄan sem" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "IzbriÅ¡i veÄ objektov" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Brisanje naslendjih %(objects_name)s bi imelo za posledico izbris naslednjih " -"povezanih objektov, vendar vaÅ¡ raÄun nima pravic za izbris naslednjih tipov " -"objektov:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Brisanje izbranih %(objects_name)s zahteva brisanje naslednjih zaÅ¡Äitenih " -"povezanih objektov:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Ali res želite izbrisati izbrane %(objects_name)s? Vsi naslednji objekti in " -"njihovi povezani vnosi bodo izbrisani:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Po %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modeli na voljo v aplikaciji %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Spremeni" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Nimate dovoljenja za urejanje." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Zadnja dejanja" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Moja dejanja" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ni na voljo" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Neznana vsebina" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Nekaj je narobe z namestitvijo vaÅ¡e podatkovne baze. Preverite, da so bile " -"ustvarjene prave tabele v podatkovni bazi in da je dostop do branja baze " -"omogoÄen pravemu uporabniku." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "UporabniÅ¡ko ime:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Geslo:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Datum/Äas" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Uporabnik" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Dejanje" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Ta objekt nima zgodovine sprememb. Verjetno ni bil dodan preko te strani za " -"administracijo." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Prikaži vse" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Shrani" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "IÅ¡Äi" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s zadetkov" -msgstr[1] "%(counter)s zadetek" -msgstr[2] "%(counter)s zadetka" -msgstr[3] "%(counter)s zadetki" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s skupno" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Shrani kot novo" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Shrani in dodaj Å¡e eno" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Shrani in nadaljuj z urejanjem" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Najprej vpiÅ¡ite uporabniÅ¡ko ime in geslo, nato boste lahko urejali druge " -"lastnosti uporabnika." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Vnesite uporabniÅ¡ko ime in geslo." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "VpiÅ¡ite novo geslo za uporabnika %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Geslo" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Geslo (ponovno)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "VpiÅ¡ite enako geslo kot zgoraj, da se izognete tipkarskim napakam." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Dodaj Å¡e en %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Odstrani" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "IzbriÅ¡em?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Hvala, ker ste si danes vzeli nekaj Äasa za to spletno stran." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Ponovna prijava" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Sprememba gesla" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Sprememba gesla je uspela" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "VaÅ¡e geslo je bilo spremenjeno." - -#: templates/registration/password_change_form.html:22 -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 "" -"Vnesite vaÅ¡e staro geslo (zaradi varnosti) in nato Å¡e dvakrat novo, da se " -"izognete tipkarskim napakam." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Staro geslo" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Novo geslo" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Spremeni moje geslo" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Ponastavitev gesla" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Ponastavitev gesla zakljuÄena" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "VaÅ¡e geslo je bilo nastavljeno. Zdaj se lahko prijavite." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Potrdite ponastavitev gesla" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "VpiÅ¡ite novo geslo" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "Vnesite vaÅ¡e novo geslo dvakrat, da se izognete tipkarskim napakam." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Novo geslo:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Potrditev gesla:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Ponastavitev gesla ni uspela" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Povezava za ponastavitev gesla ni bila veljavna, morda je bila že " -"uporabljena. Prosimo zahtevajte novo ponastavitev gesla." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Ponastavitev gesla je uspela" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Na e-poÅ¡tni naslov, ki ste ga navedli, smo vam poslali navodila za " -"ponastavitev gesla. Morali bi ga prejeti v kratkem." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"To e-poÅ¡to ste prejeli, ker je ste zahtevali ponastavitev gesla za vaÅ¡ " -"uporabniÅ¡ki raÄun na %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Prosimo pojdite na sledeÄo stran in izberite novo geslo:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "VaÅ¡e uporabniÅ¡ko ime (za vsak primer):" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Hvala, ker uporabljate naÅ¡o stran!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Ekipa strani %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Ste pozabili geslo? Vnesite vaÅ¡ e-mail naslov in poslali vam bomo navodila " -"za ponastavitev gesla." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Naslov e-poÅ¡te:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Ponastavi moje geslo" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Vsi datumi" - -#: views/main.py:27 -msgid "(None)" -msgstr "(None)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Izberite %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Izberite %s, ki ga želite spremeniti" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 009aad575..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po deleted file mode 100644 index 899e6a328..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sl/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,158 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-05 13:50+0000\n" -"Last-Translator: zejn \n" -"Language-Team: Slovenian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Možne %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtriraj" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Izberi vse" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Dodaj" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Odstrani" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Izbran %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Izberite in kliknite " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "IzbriÅ¡i vse" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s od %(cnt)s izbran" -msgstr[1] "%(sel)s od %(cnt)s izbrana" -msgstr[2] "%(sel)s od %(cnt)s izbrani" -msgstr[3] "%(sel)s od %(cnt)s izbranih" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Na posameznih poljih, ki imajo omogoÄeno urejanje, imate neshranjene " -"spremembe. ÄŒe boste izvedli dejanje, bodo vaÅ¡e neshranjene spremembe " -"izgubljene." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Izbrali ste dejanje, vendar niste shranili sprememb na posameznih poljih. " -"Kliknite na 'V redu', da boste shranili. Dejanje boste morali ponovno " -"izvesti." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Izbrali ste dejanje, vendar niste naredili nobenih sprememb na posameznih " -"poljih. Verjetno iÅ¡Äete gumb Pojdi namesto Shrani." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Januar Februar Marec April Maj Junij Julij Avgust September Oktober November " -"December" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "N P T S ÄŒ P S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Prikaži" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Skrij" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Nedelja Ponedeljek Torek Sreda ÄŒetrtek Petek Sobota" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Sedaj" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "URA" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Izberite Äas" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "PolnoÄ" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "Ob 6h" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Opoldne" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "PrekliÄi" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Danes" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Koledar" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "VÄeraj" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Jutri" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo deleted file mode 100644 index b8fa50a54..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.po deleted file mode 100644 index d1f298064..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/django.po +++ /dev/null @@ -1,812 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Albanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "U fshinë me sukses %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "S'mund të fshijë %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Jeni i sigurt?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Fshiji %(verbose_name_plural)s e përzgjdhur" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                          By %s:

                                                                                                                                                                                                          \n" -"
                                                                                                                                                                                                            \n" -msgstr "" -"

                                                                                                                                                                                                            Nga %s:

                                                                                                                                                                                                            \n" -"
                                                                                                                                                                                                              \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Krejt" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Po" - -#: filterspecs.py:139 -msgid "No" -msgstr "Jo" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "E panjohur" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Çfarëdo date" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Sot" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "7 ditët e shkuara" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Këtë muaj" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Këtë vit" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Ju lutem, jepni një emër përdoruesi dhe një fjalëkalim të saktë. Mbani " -"parasysh që në të dyja fushat ka ndryshim mes shkronjash të mëdha dhe " -"shkronjash të vogla." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Ju lutem, hyni sërish, sepse sesioni juaj ka skaduar." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Adresa juaj e-mail nuk është emri juaj i përdoruesit. Provoni '%s' më mirë." - -#: helpers.py:19 -msgid "Action:" -msgstr "Veprim:" - -#: models.py:19 -msgid "action time" -msgstr "kohë veprimi" - -#: models.py:22 -msgid "object id" -msgstr "id objekti" - -#: models.py:23 -msgid "object repr" -msgstr "" - -#: models.py:24 -msgid "action flag" -msgstr "shenjë veprimi" - -#: models.py:25 -msgid "change message" -msgstr "mesazh ndryshimi" - -#: models.py:28 -msgid "log entry" -msgstr "zë regjistrimi" - -#: models.py:29 -msgid "log entries" -msgstr "zëra regjistrimi" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Asnjë" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Ndryshoi %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr " dhe " - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "U shtua %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "U ndryshua %(list)s për %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "U fshi %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Nuk u ndryshuan fusha." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" u shtua me sukses." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Mund ta përpunoni sërish më poshtë." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Mund të shtoni një tjetër %s më poshtë." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" u ndryshua me sukses." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" u shtua me sukses. Mund ta përpunoni sërish më poshtë." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Duhen përzgjedhur objekte që të kryhen veprime mbi ta. Nuk u ndryshua ndonjë " -"objekt." - -#: options.py:846 -msgid "No action selected." -msgstr "Pa përzgjedhje veprimi." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Shtoni %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Objekti %(name)s me kyç parësor %(key)r nuk ekziston." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Ndrysho %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Gabimi baze të dhënash" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s u ndryshua me sukses." -msgstr[1] "%(count)s %(name)s u ndryshuan me sukses." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s të përzgjedhur" -msgstr[1] "Krejt %(total_count)s të përzgjedhurat" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 nga %(cnt)s të përzgjedhur" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" u fshi me sukses." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Ndryshoni historikun: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Hyni" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administrim site-i" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administrim i %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Datë:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Kohë:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Kërkim" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Shtoni Një Tjetër" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Nuk u gjet faqe" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Na ndjeni, por faqja e kërkuar nuk gjendet dot." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Hyrje" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Gabim shërbyesi" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Gabim shërbyesi (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Gabim Shërbyesi (500)" - -#: 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 "" -"Pati një gabim. U është njoftuar përgjegjësve të site-it përmes e-mail-it " -"dhe do të duhej të ndreqej shpejt. Faleminderit për durimin." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Xhironi veprimin e përzgjedhur" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Shko tek" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Klikoni këtu që të përzgjidhni objektet nëpër krejt faqet" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Përzgjidhni krejt %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Pastroje përzgjedhjen" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Mirë se vini," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentim" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Ndryshoni fjalëkalimin" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Dilni" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Përgjegjësi i site-it Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Administrim i Django-s" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Shtoni" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historik" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Shiheni në site" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Ju lutem, ndreqni gabimin e mëposhtëm." -msgstr[1] "Ju lutem, ndreqini gabimet e mëposhtme." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Shto %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtër" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Fshije" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Fshirja e %(object_name)s '%(escaped_object)s' do të shpinte në fshirjen e " -"objekteve të lidhur me të, por llogaria juaj nuk ka leje për fshirje të " -"objekteve të llojeve të mëposhtëm:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Fshirja e %(object_name)s '%(escaped_object)s' do të kërkonte fshirjen e " -"objekteve vijues, të mbrojtur, të lidhur me të:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Jeni i sigurt se doni të fshihet %(object_name)s \"%(escaped_object)s\"? " -"Krejt objektet vijues të lidhur me të do të fshihen:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Po, jam i sigurt" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Fshini disa objekte njëherësh" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Fshirja e %(objects_name)s të përzgjedhur do të shpjerë në fshirjen e " -"objekteve të lidhur me të, por llogaria juaj nuk ka leje të fshijë llojet " -"vijuese të objekteve:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Fshirja e %(objects_name)s të përzgjedhur do të kërkonte fshirjen e " -"objekteve vijues, të mbrojtur, të lidhur me të:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Jeni i sigurt se doni të fshihen e %(objects_name)s përzgjedhur? Krejt " -"objektet vijues dhe gjëra të lidhura me ta do të fshihen:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "Nga %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modele të mundshme te zbatimi %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Ndryshoje" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Nuk keni leje për të përpunuar ndonjë gjë." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Veprime Së Fundi" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Veprimet e Mia" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Asnjë i passhëm" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Lëndë e panjohur" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Ka diçka që nuk shkon me instalimin e bazës suaj të të dhënave. Sigurohuni " -"që janë krijuar tabelat e duhura të bazës së të dhënave, dhe që baza e të " -"dhënave është e lexueshme nga përdoruesi i duhur." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Emër përdoruesi:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Fjalëkalim:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Datë/kohë" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Përdorues" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Veprim" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Ky objekt nuk ka historik ndryshimesh. Ndoshta nuk qe shtuar përmes këtij " -"site-i administrimi." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Shfaqi krejt" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Ruaje" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Kërko" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s përfundim" -msgstr[1] "%(counter)s përfundime" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s gjithsej" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Ruaje si të ri" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Ruajeni dhe shtoni një tjetër" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Ruajeni dhe vazhdoni përpunimin" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Së pari, jepni një emër përdoruesi dhe fjalëkalim. Mandej, do të jeni në " -"gjendje të përpunoni më tepër mundësi përdoruesi." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Jepni emër përdoruesi dhe fjalëkalim." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" -"Jepni një fjalëkalim të ri për përdoruesin %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Fjalëkalim" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Fjalëkalim (sërish)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Jepni, për verifikim, të njëjtin fjalëkalim si më sipër." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Shtoni një tjetër %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Hiqe" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Të fshihet?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Faleminderit që shpenzoni pak kohë të çmuar me site-in Web sot." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Hyni sërish" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Ndryshim fjalëkalimi" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Ndryshim i sukseshëm fjalëkalimi" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Fjalëkalimi juaj u ndryshua." - -#: templates/registration/password_change_form.html:22 -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 "" -"Ju lutem, jepni fjalëkalimin tuaj të vjetër, për hir të sigurisë, dhe mandej " -"jepni dy herë fjalëkalimin tuaj të ri, që kështu të mund të verifikojmë se e " -"shtypët saktë." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Fjalëkalim i vjetër" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Fjalëkalim i ri" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Ndrysho fjalëkalimin tim" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Ricaktim fjalëkalimi" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Ricaktim fjalëkalimi i plotësuar" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" -"Fjakalimi juaj u caktua. Mund të vazhdoni më tej dhe të bëni hyrjen tani." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Ripohim ricaktimi fjalëkalimi" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Jepni fjalëkalim të ri" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Ju lutem, jepeni fjalëkalimin tuaj dy herë, që kështu të mund të verifikojmë " -"që e shtypët saktë." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Fjalëkalim i ri:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Ripohoni fjalëkalimin:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Fjalëkalimi nuk u ricaktua me sukses" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Lidhja për ricaktimin e fjalëkalimit qe e pavlefshme, ndoshta ngaqë është " -"përdorur tashmë një herë. Ju lutem, kërkoni një ricaktim të ri fjalëkalimi." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Ndryshim i sukseshëm fjalëkalimi" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Ju dërguam me e-mail udhëzimet për rregullimin e fjalëkalimit tuaj, te " -"adresa e-mail që keni dhënë. Do të duhej t'ju vinte pas pak." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Ju lutem, shkoni te faqja vijuese dhe zgjidhni një fjalëkalim të ri:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Emri juaj i përdoruesit, në rast se e keni harruar:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Faleminderit që përdorni site-in tonë!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Ekipi i %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Harruat fjalëkalimin tuaj? Jepni më poshtë adresën tuaj e-mail, dhe do t'ju " -"dërgojmë në të udhëzimet për të caktuar një të ri." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Adresë e-mail:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Ricakto fjalëkalimin tim" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Krejt datat" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Përzgjidhni %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Përzgjidhni %s për ta ndryshuar" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo deleted file mode 100644 index f2fe8815d..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po deleted file mode 100644 index 3e37e907e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sq/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,156 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Albanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "I mundshëm %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Zgjidheni krejt" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Shtoni" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Hiq" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "U zgjodh %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Përzgjidhni zgjedhjen(t) tuaj(a) dhe klikoni" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Pastroje krejt" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "U përzgjodh %(sel)s nga %(cnt)s" -msgstr[1] "U përzgjodhën %(sel)s nga %(cnt)s" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Keni ndryshime të paruajtura te fusha individuale të ndryshueshme. Nëse " -"kryeni një veprim, ndryshimet e paruajtura do të humbin." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Keni përzgjedhur një veprim, por nuk keni ruajtur ende ndryshimet që bëtë te " -"fusha individuale. Ju lutem, klikoni OK që të bëhet ruajtja. Do t'ju duhet " -"ta ribëni veprimin." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button.Keni përzgjedhur një veprim, dhe nuk keni bërë ndonjë ndryshim te " -"fusha individuale. Ndoshta po kërkonit për butonin Shko, në vend se të " -"butonit Ruaje." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Janar Shkurt Mars Prill Maj Qershor Korrik Gusht Shtator Tetor Nëntor Dhjetor" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "D H M M E P S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Shfaqe" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Fshihe" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "E dielë E hënë E martë E mërkurë E enjte E premte E shtunë" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Tani" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Orë" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Zgjidhni një kohë" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Mesnatë" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 a.m." - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Mesditë" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Anuloje" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Sot" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalendar" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Dje" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Nesër" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo deleted file mode 100644 index 5633a89f4..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.po deleted file mode 100644 index a577d5fd9..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/django.po +++ /dev/null @@ -1,814 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-06 21:35+0000\n" -"Last-Translator: janos \n" -"Language-Team: Serbian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "УÑпешно обриÑано: %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "ÐеÑуÑпело бриÑање %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Да ли Ñте Ñигурни?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Бриши означене објекте клаÑе %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                              By %s:

                                                                                                                                                                                                              \n" -"
                                                                                                                                                                                                                \n" -msgstr "" -"

                                                                                                                                                                                                                %s:

                                                                                                                                                                                                                \n" -"
                                                                                                                                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Сви" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Да" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ðе" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Ðепознато" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Сви датуми" - -#: filterspecs.py:197 -msgid "Today" -msgstr "ДанаÑ" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "ПоÑледњих 7 дана" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Овај меÑец" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Ова година" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"УнеÑите тачно кориÑничко име и лозинку. Пазите на разлику између малих и " -"великих Ñлова у оба поља." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Пријавите Ñе поново пошто је ваша ÑеÑија иÑтекла." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Ваша имејл адреÑа није ваше кориÑничко име. Пробајте Ñа „%s“." - -#: helpers.py:19 -msgid "Action:" -msgstr "Радња:" - -#: models.py:19 -msgid "action time" -msgstr "време радње" - -#: models.py:22 -msgid "object id" -msgstr "id објекта" - -#: models.py:23 -msgid "object repr" -msgstr "Ð¾Ð¿Ð¸Ñ Ð¾Ð±Ñ˜ÐµÐºÑ‚Ð°" - -#: models.py:24 -msgid "action flag" -msgstr "ознака радње" - -#: models.py:25 -msgid "change message" -msgstr "Ð¾Ð¿Ð¸Ñ Ð¸Ð·Ð¼ÐµÐ½Ðµ" - -#: models.py:28 -msgid "log entry" -msgstr "Ð·Ð°Ð¿Ð¸Ñ Ñƒ логовима" - -#: models.py:29 -msgid "log entries" -msgstr "запиÑи у логовима" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ðишта" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Измењена поља %s" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "и" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Сачуван објекат „%(object)s“ клаÑе %(name)s." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Измењена поља %(list)s објеката „%(object)s“ клаÑе %(name)s ." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "ОбриÑан објекат „%(object)s“ клаÑе %(name)s." - -#: options.py:645 -msgid "No fields changed." -msgstr "Без измена у пољима." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Објекат „%(obj)s“ клаÑе %(name)s Ñачуван је уÑпешно." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Доле можете поново да уноÑите измене." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Доле можете да додате нови објекат клаÑе %s" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Објекат „%(obj)s“ клаÑе %(name)s измењен је уÑпешно." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Објекат „%(obj)s“ клаÑе %(name)s додат је уÑпешно. Доле можете унети додатне " -"измене." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Потребно је изабрати објекте да би Ñе извршила акција над њима. Ðиједан " -"објекат није промењен." - -#: options.py:846 -msgid "No action selected." -msgstr "Ðије изабрана ниједна акција." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Додај објекат клаÑе %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Објекат клаÑе %(name)s Ñа примарним кључем %(key)r не поÑтоји." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Измени објекат клаÑе %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Грешка у бази података" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "УÑпешно промењен %(count)s %(name)s." -msgstr[1] "УÑпешно промењена %(count)s %(name)s." -msgstr[2] "УÑпешно промењених %(count)s %(name)s." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s изабран" -msgstr[1] "Сва %(total_count)s изабрана" -msgstr[2] "Свих %(total_count)s изабраних" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 од %(cnt)s изабрано" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Објекат „%(obj)s“ клаÑе %(name)s уÑпешно је обриÑан." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ИÑторијат измена: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Пријава" - -#: sites.py:375 -msgid "Site administration" -msgstr "ÐдминиÑтрација ÑиÑтема" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "ÐдминиÑтрација %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Датум:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Време:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Претражи" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Додај још један" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Страница није пронађена" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Жао нам је, тражена Ñтраница није пронађена." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Почетна" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Грешка на Ñерверу" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Грешка на Ñерверу (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Грешка на Ñерверу (500)" - -#: 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 "" -"Дошло је до грешке. ÐдминиÑтратор Ñајта је обавештен имејлом и грешка ће " -"бити уÑкоро отклоњена. Хвала на Ñтрпљењу." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Покрени одабрану радњу" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Почни" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Изабери Ñве објекте на овој Ñтраници." - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Изабери Ñве %(module_name)s од %(total_count)s укупно." - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Поништи избор" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Добродошли," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Документација" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Промена лозинке" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Одјава" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django админиÑтрација Ñајта" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django админиÑтрација" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Додај" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ИÑторијат" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Преглед на Ñајту" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "ИÑправите наведену грешку." -msgstr[1] "ИÑправите наведене грешке." -msgstr[2] "ИÑправите наведене грешке." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Додај објекат клаÑе %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Филтер" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Обриши" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Уклањање %(object_name)s „%(escaped_object)s“ повлачи уклањање Ñвих објеката " -"који Ñу повезани Ñа овим објектом, али ваш налог нема дозволе за бриÑање " -"Ñледећих типова објеката:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Да би избриÑали изабран %(object_name)s „%(escaped_object)s“ потребно је " -"бриÑати и Ñледеће заштићене повезане објекте:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Да Ñигурни да желите да обришете %(object_name)s „%(escaped_object)s“? " -"Следећи објекти који Ñу у вези Ñа овим објектом ће такође бити обриÑани:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Да, Ñигуран Ñам" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "БриÑање више објеката" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Да би избриÑали изабране %(objects_name)s потребно је бриÑати и заштићене " -"повезане објекте, међутим ваш налог нема дозволе за бриÑање Ñледећих типова " -"објеката:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Да би избриÑали изабране %(objects_name)s потребно је бриÑати и Ñледеће " -"заштићене повезане објекте:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Да ли Ñте Ñигурни да желите да избришете изабране %(objects_name)s? Сви " -"Ñледећи објекти и објекти Ñа њима повезани ће бити избриÑани:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Модели доÑтупни у апликацији %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Измени" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Ðемате дозволе да уноÑите било какве измене." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "ПоÑледње радње" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Моје радње" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ðема података" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Ðепознат Ñадржај" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Ðешто није уреду Ñа вашом базом података. Проверите да ли поÑтоје " -"одговарајуће табеле и да ли одговарајући кориÑник има приÑтуп бази." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "КориÑник:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Лозинка:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Датум/време" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "КориÑник" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Радња" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Овај објекат нема забележен иÑторијат измена. Вероватно није додат кроз овај " -"Ñајт за админиÑтрацију." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Прикажи Ñве" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Сачувај" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Претрага" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s резултат" -msgstr[1] "%(counter)s резултата" -msgstr[2] "%(counter)s резултата" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "укупно %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Сачувај као нови" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Сачувај и додај Ñледећи" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Сачувај и наÑтави Ñа изменама" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Прво унеÑите кориÑничко име и лозинку. Потом ћете моћи да мењате још " -"кориÑничких подешавања." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "УнеÑите кориÑничко име и лозинку" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "УнеÑите нову лозинку за кориÑника %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Лозинка" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Лозинка (поновите)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Ради провере тачноÑти поново унеÑите лозинку коју Ñте унели горе." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Додај још један објекат клаÑе %(verbose_name)s." - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Обриши" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "БриÑање?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Хвала што Ñте Ð´Ð°Ð½Ð°Ñ Ð¿Ñ€Ð¾Ð²ÐµÐ»Ð¸ време на овом Ñајту." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Поновна пријава" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Измена лозинке" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "УÑпешна измена лозинке" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Ваша лозинка је измењена." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Из безбедноÑних разлога прво унеÑите Ñвоју Ñтару лозинку, а нову затим " -"унеÑите два пута да биÑмо могли да проверимо да ли Ñте је правилно унели." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Стара лозинка" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Ðова лозинка" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Измени моју лозинку" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "РеÑетовање лозинке" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "РеÑетовање лозинке уÑпешно" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Ваша лозинка је поÑтављена. Можете Ñе пријавити." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Потврда реÑетовања лозинке" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "УнеÑите нову лозинку" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"УнеÑите нову лозинку два пута како биÑмо могли да проверимо да ли Ñте је " -"правилно унели." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Ðова лозинка:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Потврда лозинке:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "РеÑетовање лозинке неуÑпешно" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Линк за реÑетовање лозинке није важећи, вероватно зато што је већ " -"иÑкоришћен. Поново затражите реÑетовање лозинке." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "РеÑетовање лозинке уÑпешно." - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"ПоÑлали Ñмо упутÑтва за поÑтављање нове лозинке на имејл адреÑу коју Ñте нам " -"дали. УпутÑтва ћете добити уÑкоро." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Овај имејл Ñте добији јер Ñте тражили промену лозинке за Ваш налог на Ñајту %" -"(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Идите на Ñледећу Ñтраницу и поÑтавите нову лозинку." - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Уколико Ñте заборавили, ваше кориÑничко име:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Хвала што кориÑтите наш Ñајт!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Екипа Ñајта %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Заборавили Ñте лозинку? УнеÑите Ñвоју имејл адреÑу доле и поÑлаћемо вам " -"упутÑтва за поÑтављање нове." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Имејл адреÑа:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "РеÑетуј моју лозинку" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Сви датуми" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ðишта)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Одабери објекат клаÑе %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Одабери објекат клаÑе %s за измену" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo deleted file mode 100644 index b13640aea..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po deleted file mode 100644 index 09817ee42..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sr/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-06 21:29+0000\n" -"Last-Translator: janos \n" -"Language-Team: Serbian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\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" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "ДоÑтупни %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Филтер" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Додај Ñве" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Додај" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Уклони" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Одабрани %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Ðаправите избор и кликните " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Врати Ñве" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s од %(cnt)s изабран" -msgstr[1] "%(sel)s од %(cnt)s изабрана" -msgstr[2] "%(sel)s од %(cnt)s изабраних" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Имате неÑачиване измене. Ðко покренете акцију, измене ће бити изгубљене." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "Изабрали Ñте акцију али ниÑте Ñачували промене поља." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "Изабрали Ñте акцију али ниÑте изменили ни једно поље." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"јануар фебруар март април мај јун јул авгуÑÑ‚ Ñептембар октобар новембар " -"децембар" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "РП У С Ч П С" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Покажи" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Сакриј" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "недеља понедељак уторак Ñреда четвртак петак Ñубота" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Тренутно време" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Сат" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Одабир времена" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Поноћ" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "18ч" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Подне" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Поништи" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "ДанаÑ" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Календар" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Јуче" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Сутра" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo deleted file mode 100644 index 99988fc09..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po deleted file mode 100644 index 53b083184..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/django.po +++ /dev/null @@ -1,814 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-06 21:36+0000\n" -"Last-Translator: janos \n" -"Language-Team: Serbian (Latin) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "UspeÅ¡no obrisano: %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Nesuspelo brisanje %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Da li ste sigurni?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "BriÅ¡i oznaÄene objekte klase %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                  By %s:

                                                                                                                                                                                                                  \n" -"
                                                                                                                                                                                                                    \n" -msgstr "" -"

                                                                                                                                                                                                                    %s:

                                                                                                                                                                                                                    \n" -"
                                                                                                                                                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Svi" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Da" - -#: filterspecs.py:139 -msgid "No" -msgstr "Ne" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Nepoznato" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Svi datumi" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Danas" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Poslednjih 7 dana" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Ovaj mesec" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Ova godina" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Unesite taÄno korisniÄko ime i lozinku. Pazite na razliku izmeÄ‘u malih i " -"velikih slova u oba polja." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Prijavite se ponovo poÅ¡to je vaÅ¡a sesija istekla." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "VaÅ¡a imejl adresa nije vaÅ¡e korisniÄko ime. Probajte sa „%s“." - -#: helpers.py:19 -msgid "Action:" -msgstr "Radnja:" - -#: models.py:19 -msgid "action time" -msgstr "vreme radnje" - -#: models.py:22 -msgid "object id" -msgstr "id objekta" - -#: models.py:23 -msgid "object repr" -msgstr "opis objekta" - -#: models.py:24 -msgid "action flag" -msgstr "oznaka radnje" - -#: models.py:25 -msgid "change message" -msgstr "opis izmene" - -#: models.py:28 -msgid "log entry" -msgstr "zapis u logovima" - -#: models.py:29 -msgid "log entries" -msgstr "zapisi u logovima" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "NiÅ¡ta" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Izmenjena polja %s" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "i" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "SaÄuvan objekat „%(object)s“ klase %(name)s." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Izmenjena polja %(list)s objekata „%(object)s“ klase %(name)s ." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Obrisan objekat „%(object)s“ klase %(name)s." - -#: options.py:645 -msgid "No fields changed." -msgstr "Bez izmena u poljima." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "Objekat „%(obj)s“ klase %(name)s saÄuvan je uspeÅ¡no." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Dole možete ponovo da unosite izmene." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Dole možete da dodate novi objekat klase %s" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "Objekat „%(obj)s“ klase %(name)s izmenjen je uspeÅ¡no." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"Objekat „%(obj)s“ klase %(name)s dodat je uspeÅ¡no. Dole možete uneti dodatne " -"izmene." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Potrebno je izabrati objekte da bi se izvrÅ¡ila akcija nad njima. Nijedan " -"objekat nije promenjen." - -#: options.py:846 -msgid "No action selected." -msgstr "Nije izabrana nijedna akcija." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Dodaj objekat klase %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Objekat klase %(name)s sa primarnim kljuÄem %(key)r ne postoji." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Izmeni objekat klase %s" - -#: options.py:1065 -msgid "Database error" -msgstr "GreÅ¡ka u bazi podataka" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "UspeÅ¡no promenjen %(count)s %(name)s." -msgstr[1] "UspeÅ¡no promenjena %(count)s %(name)s." -msgstr[2] "UspeÅ¡no promenjenih %(count)s %(name)s." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s izabran" -msgstr[1] "Sva %(total_count)s izabrana" -msgstr[2] "Svih %(total_count)s izabranih" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 od %(cnt)s izabrano" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "Objekat „%(obj)s“ klase %(name)s uspeÅ¡no je obrisan." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Istorijat izmena: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Prijava" - -#: sites.py:375 -msgid "Site administration" -msgstr "Administracija sistema" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administracija %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Datum:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Vreme:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Pretraži" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Dodaj joÅ¡ jedan" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Stranica nije pronaÄ‘ena" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Žao nam je, tražena stranica nije pronaÄ‘ena." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "PoÄetna" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "GreÅ¡ka na serveru" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "GreÅ¡ka na serveru (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "GreÅ¡ka na serveru (500)" - -#: 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 "" -"DoÅ¡lo je do greÅ¡ke. Administrator sajta je obaveÅ¡ten imejlom i greÅ¡ka će " -"biti uskoro otklonjena. Hvala na strpljenju." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Pokreni odabranu radnju" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "PoÄni" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Izaberi sve objekte na ovoj stranici." - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Izaberi sve %(module_name)s od %(total_count)s ukupno." - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "PoniÅ¡ti izbor" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "DobrodoÅ¡li," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentacija" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Promena lozinke" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Odjava" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django administracija sajta" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django administracija" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Dodaj" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Istorijat" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Pregled na sajtu" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Ispravite navedenu greÅ¡ku." -msgstr[1] "Ispravite navedene greÅ¡ke." -msgstr[2] "Ispravite navedene greÅ¡ke." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Dodaj objekat klase %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filter" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "ObriÅ¡i" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Uklanjanje %(object_name)s „%(escaped_object)s“ povlaÄi uklanjanje svih " -"objekata koji su povezani sa ovim objektom, ali vaÅ¡ nalog nema dozvole za " -"brisanje sledećih tipova objekata:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Da bi izbrisali izabran %(object_name)s „%(escaped_object)s“ potrebno je " -"brisati i sledeće zaÅ¡tićene povezane objekte:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Da sigurni da želite da obriÅ¡ete %(object_name)s „%(escaped_object)s“? " -"Sledeći objekti koji su u vezi sa ovim objektom će takoÄ‘e biti obrisani:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Da, siguran sam" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Brisanje viÅ¡e objekata" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Da bi izbrisali izabrane %(objects_name)s potrebno je brisati i zaÅ¡tićene " -"povezane objekte, meÄ‘utim vaÅ¡ nalog nema dozvole za brisanje sledećih tipova " -"objekata:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Da bi izbrisali izabrane %(objects_name)s potrebno je brisati i sledeće " -"zaÅ¡tićene povezane objekte:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Da li ste sigurni da želite da izbriÅ¡ete izabrane %(objects_name)s? Svi " -"sledeći objekti i objekti sa njima povezani će biti izbrisani:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modeli dostupni u aplikaciji %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Izmeni" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Nemate dozvole da unosite bilo kakve izmene." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Poslednje radnje" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Moje radnje" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Nema podataka" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Nepoznat sadržaj" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"NeÅ¡to nije uredu sa vaÅ¡om bazom podataka. Proverite da li postoje " -"odgovarajuće tabele i da li odgovarajući korisnik ima pristup bazi." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Korisnik:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Lozinka:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Datum/vreme" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Korisnik" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Radnja" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Ovaj objekat nema zabeležen istorijat izmena. Verovatno nije dodat kroz ovaj " -"sajt za administraciju." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Prikaži sve" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "SaÄuvaj" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Pretraga" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s rezultat" -msgstr[1] "%(counter)s rezultata" -msgstr[2] "%(counter)s rezultata" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "ukupno %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "SaÄuvaj kao novi" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "SaÄuvaj i dodaj sledeći" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "SaÄuvaj i nastavi sa izmenama" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Prvo unesite korisniÄko ime i lozinku. Potom ćete moći da menjate joÅ¡ " -"korisniÄkih podeÅ¡avanja." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Unesite korisniÄko ime i lozinku" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Unesite novu lozinku za korisnika %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Lozinka" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Lozinka (ponovite)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Radi provere taÄnosti ponovo unesite lozinku koju ste uneli gore." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Dodaj joÅ¡ jedan objekat klase %(verbose_name)s." - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "ObriÅ¡i" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Brisanje?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Hvala Å¡to ste danas proveli vreme na ovom sajtu." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Ponovna prijava" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Izmena lozinke" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "UspeÅ¡na izmena lozinke" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "VaÅ¡a lozinka je izmenjena." - -#: templates/registration/password_change_form.html:22 -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 "" -"Iz bezbednosnih razloga prvo unesite svoju staru lozinku, a novu zatim " -"unesite dva puta da bismo mogli da proverimo da li ste je pravilno uneli." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Stara lozinka" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nova lozinka" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Izmeni moju lozinku" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Resetovanje lozinke" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Resetovanje lozinke uspeÅ¡no" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "VaÅ¡a lozinka je postavljena. Možete se prijaviti." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Potvrda resetovanja lozinke" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Unesite novu lozinku" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Unesite novu lozinku dva puta kako bismo mogli da proverimo da li ste je " -"pravilno uneli." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nova lozinka:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Potvrda lozinke:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Resetovanje lozinke neuspeÅ¡no" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Link za resetovanje lozinke nije važeći, verovatno zato Å¡to je već " -"iskorišćen. Ponovo zatražite resetovanje lozinke." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Resetovanje lozinke uspeÅ¡no." - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Poslali smo uputstva za postavljanje nove lozinke na imejl adresu koju ste " -"nam dali. Uputstva ćete dobiti uskoro." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Ovaj imejl ste dobiji jer ste tražili promenu lozinke za VaÅ¡ nalog na sajtu %" -"(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Idite na sledeću stranicu i postavite novu lozinku." - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Ukoliko ste zaboravili, vaÅ¡e korisniÄko ime:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Hvala Å¡to koristite naÅ¡ sajt!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Ekipa sajta %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Zaboravili ste lozinku? Unesite svoju imejl adresu dole i poslaćemo vam " -"uputstva za postavljanje nove." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Imejl adresa:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Resetuj moju lozinku" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Svi datumi" - -#: views/main.py:27 -msgid "(None)" -msgstr "(NiÅ¡ta)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Odaberi objekat klase %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Odaberi objekat klase %s za izmenu" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 1eae4fc40..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po deleted file mode 100644 index d297917a4..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sr_Latn/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-06 21:35+0000\n" -"Last-Translator: janos \n" -"Language-Team: Serbian (Latin) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\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" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Dostupni %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filter" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Dodaj sve" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Dodaj" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Ukloni" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Odabrani %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Napravite izbor i kliknite " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Vrati sve" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s od %(cnt)s izabran" -msgstr[1] "%(sel)s od %(cnt)s izabrana" -msgstr[2] "%(sel)s od %(cnt)s izabranih" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Imate nesaÄivane izmene. Ako pokrenete akciju, izmene će biti izgubljene." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "Izabrali ste akciju ali niste saÄuvali promene polja." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "Izabrali ste akciju ali niste izmenili ni jedno polje." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"januar februar mart april maj jun jul avgust septembar oktobar novembar " -"decembar" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "N P U S ÄŒ P S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Pokaži" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Sakrij" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "nedelja ponedeljak utorak sreda Äetvrtak petak subota" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Trenutno vreme" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Sat" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Odabir vremena" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Ponoć" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "18Ä" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Podne" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "PoniÅ¡ti" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Danas" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalendar" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "JuÄe" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Sutra" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo deleted file mode 100644 index e71939415..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.po deleted file mode 100644 index a2bbec981..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/django.po +++ /dev/null @@ -1,807 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: andreaspelme \n" -"Language-Team: Swedish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Tog bort %(count)d %(items)s" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Kan inte ta bort %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Är du säker?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Tag bort markerade %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                      By %s:

                                                                                                                                                                                                                      \n" -"
                                                                                                                                                                                                                        \n" -msgstr "" -"

                                                                                                                                                                                                                        Av %s:

                                                                                                                                                                                                                        \n" -"
                                                                                                                                                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Alla" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Ja" - -#: filterspecs.py:139 -msgid "No" -msgstr "Nej" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Okänt" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Alla datum" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Idag" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Senaste 7 dagarna" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Denna mÃ¥nad" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Detta Ã¥r" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Var god ange ett korrekt användarnamn och lösenord. Tänk pÃ¥ att skilja " -"mellan gemener och versaler." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Var god logga in igen, eftersom din session har förfallit." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Din e-postadress är inte ditt användarnamn. Försök med '%s' istället." - -#: helpers.py:19 -msgid "Action:" -msgstr "Ã…tgärd:" - -#: models.py:19 -msgid "action time" -msgstr "händelsetid" - -#: models.py:22 -msgid "object id" -msgstr "objektets id" - -#: models.py:23 -msgid "object repr" -msgstr "objektets beskrivning" - -#: models.py:24 -msgid "action flag" -msgstr "händelseflagga" - -#: models.py:25 -msgid "change message" -msgstr "ändra meddelande" - -#: models.py:28 -msgid "log entry" -msgstr "loggpost" - -#: models.py:29 -msgid "log entries" -msgstr "loggposter" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Inget" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Ändrade %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "och" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Lade till %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Ändrade %(list)s pÃ¥ %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Tog bort %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "Inga fält ändrade." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" lades till." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Du kan ändra det igen nedanför." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Du kan lägga till ytterligare %s nedanför." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" ändrades." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" lades till. Du kan redigera objektet igen nedanför." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Poster mÃ¥ste väljas för att genomföra Ã¥tgärder. Inga poster har ändrats." - -#: options.py:846 -msgid "No action selected." -msgstr "Inga Ã¥tgärder valda." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Lägg till %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s-objekt med primärnyckel %(key)r finns inte." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Ändra %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Databasfel" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s ändrades." -msgstr[1] "%(count)s %(name)s ändrades." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s vald" -msgstr[1] "Alla %(total_count)s valda" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 av %(cnt)s valda" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" togs bort." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Ändringshistorik: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Logga in" - -#: sites.py:375 -msgid "Site administration" -msgstr "Webbplatsadministration" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "Administration av %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Datum:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Tid:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Uppslag" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Lägg till ytterligare" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Sidan kunde inte hittas" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Vi beklagar men den begärda sidan hittades inte." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Hem" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Serverfel" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Serverfel (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Serverfel (500)" - -#: templates/admin/500.html:10 -msgid "" -"There's been an error. It's been reported to the site administrators via e-" -"mail and should be fixed shortly. Thanks for your patience." -msgstr "" -"Ett fel har uppstÃ¥tt. Administratören har meddelats via e-post och felet bör " -"vara Ã¥tgärdat inom kort. Tack för visat tÃ¥lamod." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Kör markerade operationer" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Utför" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Klicka här för att välja alla objekt frÃ¥n alla sidor" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Välj alla %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Rensa urval" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Välkommen," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokumentation" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Ändra lösenord" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Logga ut" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django webbplatsadministration" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django-administration" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Lägg till" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Historik" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Visa pÃ¥ webbplats" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Rätta till felet nedan." -msgstr[1] "Rätta till felen nedan." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Lägg till %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filter" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Radera" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Att ta bort %(object_name)s '%(escaped_object)s' skulle innebära att " -"relaterade objekt togs bort, men ditt konto har inte rättigheter att ta bort " -"följande objekttyper:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Borttagning av %(object_name)s '%(escaped_object)s' kräver borttagning av " -"följande skyddade relaterade objekt:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Är du säker pÃ¥ att du vill ta bort %(object_name)s \"%(escaped_object)s\"? " -"Följande relaterade objekt kommer att tas bort:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Ja, jag är säker" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Tog bort %(name)s \"%(object)s\"." - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Borttagning av valda %(objects_name)s skulle resultera i borttagning av " -"relaterade objekt, men ditt konto har inte behörighet att ta bort följande " -"typer av objekt:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Borttagning av valda %(objects_name)s skulle kräva borttagning av följande " -"skyddade objekt:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Är du säker pÃ¥ att du vill ta bort valda %(objects_name)s? Alla följande " -"objekt samt relaterade objekt kommer att tas bort: " - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " Av %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Modeller tillgängliga i applikationen %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Ändra" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Du har inte rättigheter att redigera nÃ¥got." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Senaste Händelser" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Mina händelser" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Inga tillgängliga" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Okänt innehÃ¥ll" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"NÃ¥gonting är fel med din databasinstallation. Se till att de rätta " -"databastabellerna har skapats och att databasen är läsbar av rätt användare." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Användarnamn:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Lösenord:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Datum tid" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Användare" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Händelse" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Detta objekt har ingen ändringshistorik. Det lades antagligen inte till via " -"denna administrationssida." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Visa alla" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Spara" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Sök" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s resultat" -msgstr[1] "%(counter)s resultat" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s totalt" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Spara som ny" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Spara och lägg till ny" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Spara och fortsätt redigera" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Ange först ett användarnamn och ett lösenord. Efter det kommer du att fÃ¥ " -"fler användaralternativ." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Mata in användarnamn och lösenord." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Ange nytt lösenord för användare %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Lösenord" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Lösenord (igen)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Fyll i samma lösenord som ovan för verifiering." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Lägg till ytterligare %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Tag bort" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Radera?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Tack för att du spenderade lite kvalitetstid med webbplatsen idag." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Logga in igen" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Ändra lösenord" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Lösenordet ändrades" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Ditt lösenord har ändrats." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Var god fyll i ditt gamla lösenord för säkerhets skull och skriv sedan in " -"ditt nya lösenord tvÃ¥ gÃ¥nger sÃ¥ vi kan kontrollera att du skrev det rätt." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Gammalt lösenord" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Nytt lösenord" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Ändra mitt lösenord" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Nollställ lösenord" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Nollställning av lösenord klar" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Ditt lösenord har ändrats. Du kan nu logga in." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Bekräftelse av lösenordsnollställning" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Fyll i lösenord" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Var god fyll i ditt nya lösenord tvÃ¥ gÃ¥nger sÃ¥ vi kan kontrollera att du " -"skrev det rätt." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Nytt lösenord:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Bekräfta lösenord:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Lösenordsnollställning misslyckad" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Länken för lösenordsnollställning var felaktig, möjligen därför att den " -"redan använts. Var god skicka en ny nollställningsförfrÃ¥gan." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Lösenordsnollställning lyckades" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Vi har skickat ett e-postmeddelande med instruktioner för att ändra ditt " -"lösenord till den e-postaddress du angivit. Det bör anlända inom kort." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Du fÃ¥r detta e-postmeddelande för att du har begärt Ã¥terställning av ditt " -"lösenord av ditt konto pÃ¥ %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Var god gÃ¥ till följande sida och välj ett nytt lösenord:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Ditt användarnamn (i fall du skulle ha glömt det):" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Tack för att du använder vÃ¥r webbplats!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s-teamet" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Glömt ditt lösenord? Fyll i din e-postadress nedan sÃ¥ skickar vi ett e-" -"postmeddelande med instruktioner för hur du ställer in ett nytt." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-postadress:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Nollställ mitt lösenord" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Alla datum" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Ingen)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Välj %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Välj %s att ändra" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 928b03941..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po deleted file mode 100644 index 6b1fdf189..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/sv/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,154 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: dobcey \n" -"Language-Team: Swedish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Tillgängliga %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filter" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Markera alla" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Lägg till" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Ta bort" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Valda %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Gör dina val och klicka pÃ¥ " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Ta bort alla" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s av %(cnt)s markerade" -msgstr[1] "%(sel)s av %(cnt)s markerade" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Du har ändringar som inte sparats i enskilda redigerbara fält. Om du kör en " -"operation kommer de ändringar som inte sparats att gÃ¥ förlorade." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Du har markerat en operation, men du har inte sparat sparat dina ändringar " -"till enskilda fält ännu. Var vänlig klicka OK för att spara. Du kommer att " -"behöva köra operationen pÃ¥ nytt." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Du har markerat en operation och du har inte gjort nÃ¥gra ändringar i " -"enskilda fält. Du letar antagligen efter Utför-knappen snarare än Spara." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Januari Februari Mars April Maj Juni Juli Augusti September Oktober November " -"December" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M T O T F L" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Visa" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Göm" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Söndag MÃ¥ndag Tisdag Onsdag Torsdag Fredag Lördag" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Nu" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Klocka" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Välj en tidpunkt" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Midnatt" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "06:00" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Middag" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Avbryt" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "I dag" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Kalender" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "I gÃ¥r" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "I morgon" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo deleted file mode 100644 index a2b6f79b2..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.po deleted file mode 100644 index 4bf7788fe..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/django.po +++ /dev/null @@ -1,786 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Tamil \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "உறà¯à®¤à®¿à®¯à®¾à®• சொலà¯à®•à®¿à®±à¯€à®°à¯à®•à®³à®¾?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                          By %s:

                                                                                                                                                                                                                          \n" -"
                                                                                                                                                                                                                            \n" -msgstr "" -"

                                                                                                                                                                                                                            %s ஆலà¯:

                                                                                                                                                                                                                            \n" -"
                                                                                                                                                                                                                              \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "அனைதà¯à®¤à¯à®®à¯" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "ஆமà¯" - -#: filterspecs.py:139 -msgid "No" -msgstr "இலà¯à®²à¯ˆ" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "தெரியாத" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "எநà¯à®¤ தேதியà¯à®®à¯" - -#: filterspecs.py:197 -msgid "Today" -msgstr "இனà¯à®±à¯" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "கடநà¯à®¤ 7 நாடà¯à®•à®³à®¿à®²à¯" - -#: filterspecs.py:203 -msgid "This month" -msgstr "இநà¯à®¤ மாதமà¯" - -#: filterspecs.py:205 -msgid "This year" -msgstr "இநà¯à®¤ வரà¯à®Ÿà®®à¯" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"தயவà¯à®šà¯†à®¯à¯à®¤à¯ சரியான பயனரà¯à®ªà¯à®ªà¯†à®¯à®°à¯ மறà¯à®±à¯à®®à¯ கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆ உளà¯à®³à®¿à®Ÿà®µà¯à®®à¯. இரணà¯à®Ÿà¯à®®à¯ எழà¯à®¤à¯à®¤à¯à®µà®•à¯ˆà®¯à¯ˆà®šà¯ " -"சாரà¯à®¨à¯à®¤à®¤à¯." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "உஙà¯à®•à®³à¯ மின௠அஞà¯à®šà®²à¯ à®®à¯à®•à®µà®°à®¿ உஙà¯à®•à®³à¯ பயனர௠பெயராக இலà¯à®²à¯ˆ. '%s'யை à®®à¯à®¯à®±à¯à®šà®¿ செயà¯à®¯à®µà¯à®®à¯." - -#: helpers.py:19 -msgid "Action:" -msgstr "" - -#: models.py:19 -msgid "action time" -msgstr "செயல௠நேரமà¯" - -#: models.py:22 -msgid "object id" -msgstr "பொரà¯à®³à¯ அடையாளமà¯" - -#: models.py:23 -msgid "object repr" -msgstr "பொரà¯à®³à¯ உரà¯à®µà®•à®¿à®¤à¯à®¤à®®à¯" - -#: models.py:24 -msgid "action flag" -msgstr "செயரà¯à®•à¯à®±à®¿" - -#: models.py:25 -msgid "change message" -msgstr "செயà¯à®¤à®¿à®¯à¯ˆ மாறà¯à®±à¯" - -#: models.py:28 -msgid "log entry" -msgstr "பà¯à®•à¯à®ªà®¤à®¿à®µà¯ உளà¯à®³à¯€à®Ÿà¯" - -#: models.py:29 -msgid "log entries" -msgstr "பà¯à®•à¯à®ªà®¤à®¿à®µà¯ உளà¯à®³à¯€à®Ÿà¯à®•à®³à¯" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s மாறà¯à®±à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "மறà¯à®±à¯à®®à¯" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:645 -msgid "No fields changed." -msgstr "எநà¯à®¤ பà¯à®²à®®à¯à®®à¯ மாறவிலà¯à®²à¯ˆ." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" வெறà¯à®±à®¿à®•à®°à®®à®¾à®•à®šà¯ சேரà¯à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "நீஙà¯à®•à®³à¯ மறà¯à®ªà®Ÿà®¿à®¯à¯à®®à¯ தொகà¯à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à¯à®®à¯. " - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "நீஙà¯à®•à®³à¯ மறà¯à®± %s யை கீழே சேரà¯à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à¯à®®à¯." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" வெறà¯à®±à®¿à®•à®°à®®à®¾à®• மாறà¯à®±à®ªà¯à®ªà®Ÿà¯à®Ÿà®¤à¯." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" வெறà¯à®±à®¿à®•à®°à®®à®¾à®• சேரà¯à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯. நீஙà¯à®•à®³à¯ கீழே தொகà¯à®•à¯à®• à®®à¯à®Ÿà®¿à®¯à¯à®®à¯." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s யை சேரà¯à®•à¯à®•" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s யை மாறà¯à®±à¯" - -#: options.py:1065 -msgid "Database error" -msgstr "தகவலà¯à®šà¯‡à®®à®¿à®ªà¯à®ªà¯ பிழை" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" -msgstr[1] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" -msgstr[1] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" வெறà¯à®±à®¿à®•à®°à®®à®¾à®• அழிகà¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "வரலாறà¯à®±à¯ˆ மாறà¯à®±à¯: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "உளà¯à®³à¯‡ போ" - -#: sites.py:375 -msgid "Site administration" -msgstr "இணைய மேலானà¯à®®à¯ˆ" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "" - -#: widgets.py:75 -msgid "Date:" -msgstr "தேதி:" - -#: widgets.py:75 -msgid "Time:" -msgstr "நேரமà¯:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "" - -#: widgets.py:246 -msgid "Add Another" -msgstr "" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "பகà¯à®•à®¤à¯à®¤à¯ˆà®•à¯ காணவிலà¯à®²à¯ˆ" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "நீஙà¯à®•à®³à¯ விரà¯à®®à¯à®ªà®¿à®¯ பகà¯à®•à®¤à¯à®¤à¯ˆ காண இயலவிலà¯à®²à¯ˆ,அதறà¯à®•à®¾à®• நாஙà¯à®•à®³à¯ வரà¯à®¨à¯à®¤à¯à®•à®¿à®±à¯‹à®®à¯." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "வீடà¯" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "சேவகன௠பிழை" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "சேவையகம௠தவறà¯(500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "சேவையகம௠பிழை(500)" - -#: 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 "" -"தவற௠à®à®±à¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯à®µà®²à¯ˆà®¤à¯à®¤à®³ நிரà¯à®µà®¾à®•à®¿à®•à¯à®•à¯ மினà¯à®©à®žà¯à®šà®²à¯ அனà¯à®ªà¯à®ªà®ªà¯à®ªà®Ÿà¯à®Ÿà¯à®³à¯à®³à®¤à¯. விரைவில௠சரி " -"செயà¯à®¯à®ªà¯à®ªà®Ÿà¯à®®à¯. உஙà¯à®•à®³à®¤à¯ பொறà¯à®®à¯ˆà®•à¯à®•à¯ நனà¯à®±à®¿" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "செலà¯" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "நலà¯à®µà®°à®µà¯," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "ஆவனமாகà¯à®•à®®à¯" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "கடவà¯à®šà¯à®šà¯†à®¾à®²à¯à®²à¯ˆ மாறà¯à®±à¯" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "வெளியேறà¯" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "டிஜாஙà¯à®™à¯‹ தள நிரà¯à®µà®¾à®•à®¿" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "டிஜாஙà¯à®™à¯‹ நிரà¯à®µà®¾à®•à®®à¯ " - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "சேரà¯à®•à¯à®•" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "வரலாறà¯" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "தளதà¯à®¤à®¿à®²à¯ பாரà¯" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "கீழே உளà¯à®³ தவறà¯à®¯à¯ˆà®¤à¯ திரà¯à®¤à¯à®¤à¯à®•" -msgstr[1] "கீழே உளà¯à®³ தவறà¯à®•à®³à¯ˆà®¤à¯ திரà¯à®¤à¯à®¤à¯à®•" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s சேரà¯à®•à¯à®•" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "வடிகடà¯à®Ÿà®¿" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "நீகà¯à®•à¯à®•" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"நீகà¯à®•à¯à®®à¯ '%(escaped_object)s' ஆனத௠%(object_name)s தொடரà¯à®ªà¯à®Ÿà¯ˆà®¯ மறà¯à®±à®µà®±à¯à®±à¯ˆà®¯à¯à®®à¯ நீகà¯à®•à¯à®®à¯. " -"ஆனால௠அதை நீகà¯à®•à¯à®µà®¤à®±à¯à®•à¯à®°à®¿à®¯ உரிமை உஙà¯à®•à®³à¯à®•à¯à®•à¯ இலà¯à®²à¯ˆ" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"நீஙà¯à®•à®³à¯ இநà¯à®¤ \"%(escaped_object)s\" %(object_name)s நீகà¯à®•à¯à®µà®¤à®¿à®²à¯ நிசà¯à®šà®¯à®®à®¾?தொடரà¯à®ªà¯à®Ÿà¯ˆà®¯ " -"மறà¯à®±à®µà¯ˆà®¯à¯à®®à¯ நீகà¯à®•à®ªà¯à®ªà®Ÿà¯à®®à¯. " - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "ஆமà¯, எனகà¯à®•à¯ உறà¯à®¤à®¿" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "%(filter_title)s ஆலà¯" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "செயலியில௠கிடைகà¯à®•à®•à¯ கூடிய %(name)s மாதிரிகளà¯" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "மாறà¯à®±à¯à®•" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "உஙà¯à®•à®³à¯à®•à¯à®•à¯ மாறà¯à®±à¯à®µà®¤à®±à¯à®•à¯à®°à®¿à®¯ உரிமையிலà¯à®²à¯ˆ" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "தறà¯à®ªà¯‹à®¤à¯ˆà®¯ செயலà¯à®•à®³à¯" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "எனத௠செயலà¯à®•à®³à¯" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "எதà¯à®µà¯à®®à¯ கிடைகà¯à®•à®µà®¿à®²à¯à®²à¯ˆ" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ தகவலà¯à®šà¯‡à®®à®¿à®ªà¯à®ªà®•à®¤à¯à®¤à¯ˆ நிறà¯à®µà¯à®µà®¤à®¿à®²à¯ சில தவறà¯à®•à®³à¯ உளà¯à®³à®¤à¯. அதறà¯à®•à¯ இணையான " -"தகவலà¯à®šà¯‡à®®à®¿à®ªà¯à®ªà¯ அடà¯à®Ÿà®µà®£à¯ˆà®¯à¯ˆà®¤à®¯à®¾à®°à®¿à®•à¯à®•à®µà¯à®®à¯. மேலà¯à®®à¯ பயனர௠படிகà¯à®•à¯à®®à¯ படியான தகவலà¯à®šà¯‡à®®à®¿à®ªà¯à®ªà®•à®¤à¯à®¤à¯ˆ " -"உரà¯à®µà®¾à®•à¯à®•à®µà¯à®®à¯." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "பயனர௠பெயரà¯:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "கடவà¯à®šà¯à®šà¯†à®¾à®²à¯:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "தேதி/நேரம௠" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "பயனரà¯" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "செயலà¯" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"இநà¯à®¤ பொரà¯à®³à¯ மாறà¯à®±à¯ வரலாறà¯à®±à®¿à®²à¯ இலà¯à®²à¯ˆà®’ர௠வேளை நிரà¯à®µà®¾à®•à®¤à¯à®¤à®³à®¤à¯à®¤à®¿à®©à¯ மூலம௠சேரà¯à®•à¯à®•à®ªà¯à®ªà®Ÿà®¾à®®à®²à®¿à®°à¯à®•à¯à®•à®²à®¾à®®à¯" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "எலà¯à®²à®¾à®µà®±à¯à®±à¯ˆà®¯à¯à®®à¯ காடà¯à®Ÿà¯" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "சேமிகà¯à®•" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" -msgstr[1] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s மொதà¯à®¤à®®à¯" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "பà¯à®¤à®¿à®¯à®¤à®¾à®• சேமி" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "சேமிதà¯à®¤à¯ இனà¯à®©à¯à®®à¯Šà®©à¯à®±à¯ˆà®šà¯ சேரà¯" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "சேமிதà¯à®¤à¯ மாறà¯à®±à®¤à¯à®¤à¯ˆ தொடரà¯à®•" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"à®®à¯à®¤à®²à®¿à®²à¯,பயனரà¯à®ªà¯à®ªà¯†à®¯à®°à¯ மறà¯à®±à¯à®®à¯ கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆ உளà¯à®³à®¿à®Ÿà®µà¯à®®à¯.அதன௠பிறக௠தான௠நீஙà¯à®•à®³à¯ உஙà¯à®•à®³à¯ பெயரின௠" -"விவரஙà¯à®•à®³à¯ˆ திரà¯à®¤à¯à®¤ à®®à¯à®Ÿà®¿à®¯à¯à®®à¯" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "கடவà¯à®šà¯à®šà¯Šà®²à¯" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "கடவà¯à®šà¯à®šà¯Šà®²à¯(மறà¯à®ªà®Ÿà®¿à®¯à¯à®®à¯)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "மேலே அதே கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆ உளà¯à®³à®¿à®Ÿà®µà¯à®®à¯, சரிபாரà¯à®ªà¯à®ªà®¤à®±à¯à®•à®¾à®• ." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "வலைதà¯à®¤à®³à®¤à¯à®¤à®¿à®²à¯ உஙà¯à®•à®³à®¤à¯ பொனà¯à®©à®¾à®© நேரதà¯à®¤à¯ˆ செலவழிதà¯à®¤à®®à¯ˆà®•à¯à®•à¯ மிகà¯à®¨à¯à®¤ நனà¯à®±à®¿" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "மீணà¯à®Ÿà¯à®®à¯ உளà¯à®³à¯‡ பதிவ௠செயà¯à®¯à®µà¯à®®à¯" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "கடவà¯à®šà¯à®šà¯Šà®²à¯ மாறà¯à®±à¯" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "வெறà¯à®±à®¿à®•à®°à®®à®¾à®• கடவà¯à®šà¯à®šà¯Šà®²à¯ மாறà¯à®±à®ªà®Ÿà¯à®Ÿà®¤à¯" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "உஙà¯à®•à®³à¯à®Ÿà¯ˆà®¯ கடவà¯à®šà¯à®šà¯Šà®²à¯ மாறà¯à®±à®ªà®Ÿà¯à®Ÿà®¤à¯" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"பாதà¯à®•à®¾à®ªà¯à®ªà¯ காரணஙà¯à®•à®³à¯à®•à¯à®•à®¾à®• , à®®à¯à®¤à®²à®¿à®²à¯ உஙà¯à®•à®³à®¤à¯ பழைய கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆ உளà¯à®³à®¿à®Ÿà¯à®•. அதன௠பிறக௠" -"பà¯à®¤à®¿à®¯ கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆ இர௠மà¯à®±à¯ˆ உளà¯à®³à®¿à®Ÿà¯à®•. இத௠உஙà¯à®•à®³à®¤à¯ உளà¯à®³à®¿à®Ÿà¯à®¤à®²à¯ˆ சரிபாரà¯à®•à¯à®• உதவà¯à®®à¯. " - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "கடவà¯à®šà¯ சொலà¯à®²à¯ˆ மாறà¯à®±à®µà¯à®®à¯" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆ மாறà¯à®±à®¿à®¯à®®à¯ˆ" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "பà¯à®¤à®¿à®¯ கடவà¯à®šà¯à®šà¯Šà®²à¯:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "கடவà¯à®šà¯à®šà¯Šà®²à®¿à®©à¯ மாறà¯à®±à®¤à¯à®¤à¯ˆ உறà¯à®¤à®¿à®ªà¯à®ªà®Ÿà¯à®¤à¯à®¤à¯:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "கடவà¯à®šà¯à®šà¯Šà®²à¯ மாறà¯à®±à®¿à®¯à®®à¯ˆà®¤à¯à®¤à®²à¯ வெறà¯à®±à®¿" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "உஙà¯à®•à®³à®¤à¯ பயனாளர௠பெயரà¯, நீஙà¯à®•à®³à¯ மறநà¯à®¤à®¿à®°à¯à®¨à¯à®¤à®¾à®²à¯:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "எஙà¯à®•à®³à®¤à¯ வலைதà¯à®¤à®³à®¤à¯à®¤à¯ˆ பயன௠படà¯à®¤à¯à®¤à®¿à®¯à®¤à®±à¯à®•à¯ மிகà¯à®¨à¯à®¤ நனà¯à®±à®¿" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "இநà¯à®¤ %(site_name)s -இன௠கà¯à®´à¯" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "மினà¯à®…ஞà¯à®šà®²à¯ à®®à¯à®•à®µà®°à®¿:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "எனத௠கடவà¯à®šà¯à®šà¯Šà®²à¯à®²à¯ˆ மாறà¯à®±à®¿à®¯à®®à¯ˆ" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "அனைதà¯à®¤à¯ தேதியà¯à®®à¯" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s யை தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "%s யை மாறà¯à®± தேரà¯à®¨à¯à®¤à¯†à®Ÿà¯" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 594743295..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po deleted file mode 100644 index 3a7023f71..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ta/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,145 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Tamil \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%s இரà¯à®•à¯à®•à®¿à®±à®¤à®¾ " - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "எலà¯à®²à®¾à®µà®±à¯à®±à¯ˆà®¯à¯à®®à¯ தேரà¯à®¨à¯à®¤à¯à®¤à¯†à®Ÿà¯à®•à¯à®•" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "சேரà¯à®•à¯à®•" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "அழிகà¯à®•" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s தேரà¯à®¨à¯à®¤à¯à®¤à¯†à®Ÿà¯à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿ" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "தேவையானவறà¯à®±à¯ˆ தேரà¯à®¨à¯à®¤à¯à®¤à¯†à®Ÿà¯à®¤à¯à®¤à¯ கிளிக௠செயà¯à®•" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "எலà¯à®²à®¾à®µà®±à¯à®±à¯ˆà®¯à¯à®®à¯ அழிகà¯à®• " - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" -msgstr[1] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "ஜனவரி பிபà¯à®°à®µà®°à®¿ மாரà¯à®šà¯ à®à®ªà¯à®°à®²à¯ மே ஜூன௠ஜூலை ஆகஸà¯à®Ÿà¯ செபà¯à®Ÿà®®à¯à®ªà®°à¯ அகà¯à®Ÿà¯‹à®ªà®°à¯ நவமà¯à®ªà®°à¯ டிசமà¯à®ªà®°à¯" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "ஞா தி செ ப௠வி வெ ச" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ஞாயிற௠திஙà¯à®•à®³à¯ செவà¯à®µà®¾à®¯à¯ பà¯à®¤à®©à¯ வியாழன௠வெளà¯à®³à®¿ சனி " - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "இபà¯à®ªà¯†à®¾à®´à¯à®¤à¯ " - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "கடிகாரம௠" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "ஒர௠நேரதà¯à®¤à¯ˆ தேரà¯à®¨à¯à®¤à¯à®¤à¯†à®Ÿà¯à®•à¯à®• " - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "நட௠இரவ௠" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "காலை 6 மணி " - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "மதியம௠" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "வேணà¯à®Ÿà®¾à®®à¯ " - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "இனà¯à®±à¯ " - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "நாளà¯à®•à®¾à®Ÿà¯à®Ÿà®¿ " - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "நேறà¯à®±à¯ " - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "நாளை" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.mo deleted file mode 100644 index 8163e5a2f..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.po deleted file mode 100644 index c817970e1..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/django.po +++ /dev/null @@ -1,773 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Telugu <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "మీరౠకచà±à°šà°¿à°¤à°‚à°—à°¾ ఉనà±à°¨à°¾à°°à°¾?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                              By %s:

                                                                                                                                                                                                                              \n" -"
                                                                                                                                                                                                                                \n" -msgstr "" -"

                                                                                                                                                                                                                                %s తో:

                                                                                                                                                                                                                                \n" -"
                                                                                                                                                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "à°…à°¨à±à°¨à±€" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "à°…à°µà±à°¨à±" - -#: filterspecs.py:139 -msgid "No" -msgstr "కాదà±" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "తెలియనది" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "ఠరోజైన" - -#: filterspecs.py:197 -msgid "Today" -msgstr "à°ˆ రోజà±" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "à°—à°¤ 7 రోజà±à°² à°—à°¾" - -#: filterspecs.py:203 -msgid "This month" -msgstr "à°ˆ నెల" - -#: filterspecs.py:205 -msgid "This year" -msgstr "à°ˆ సంవతà±à°¸à°°à°‚" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "దయచేసి సరైన వాడà±à°•à°°à°¿à°ªà±‡à°°à± మరియౠసంకేతపదాలనౠఇవà±à°µà°‚à°¡à°¿." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "దయచేసి మళà±à°³à±€ లాగౠఇనౠఅవà±à°µà°‚à°¡à°¿ à°Žà°‚à°¦à±à°•à°‚టే మీ భాగమౠమà±à°—ిసింది ." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "మీ ఇటపా మీ వినియొగదారి నామమౠకాదౠ. '%s' ఇచà±à°šà°¿ చూడండి " - -#: helpers.py:19 -msgid "Action:" -msgstr "à°šà°°à±à°¯:" - -#: models.py:19 -msgid "action time" -msgstr "పని సమయమౠ" - -#: models.py:22 -msgid "object id" -msgstr "వసà±à°¤à±à°µà±" - -#: models.py:23 -msgid "object repr" -msgstr "వసà±à°¤à±à°µà±" - -#: models.py:24 -msgid "action flag" -msgstr "పని à°«à±à°²à°¾à°—à±" - -#: models.py:25 -msgid "change message" -msgstr "సందేశమౠని మారà±à°šà°‚ది" - -#: models.py:28 -msgid "log entry" -msgstr "లాగౠఎంటà±à°°à±€" - -#: models.py:29 -msgid "log entries" -msgstr "లాగౠఎంటà±à°°à±€à°²à±" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "వొకటీ లేదà±" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr " %s మారà±à°šà°¬à°¡à°¿à°‚à°¡à°¿" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "మరియà±" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" జతచేయబడినధి" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" తొలగిబడినది" - -#: options.py:645 -msgid "No fields changed." -msgstr "à°•à±à°·à±‡à°¤à±à°°à°®à±à°²à± à°à°®à°¿ మారà±à°šà°¬à°¡à°²à±‡à°¦à±" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\"జయపà±à°°à°¦à°‚à°—à°¾ కలపబడà±à°¡à°¡à°¿" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "మీరౠమళà±à°³à±€ దీనినీ à°•à±à°°à°¿à°‚à°¦ మారà±à°šà°µà°šà±à°šà±" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "మీరౠఇంకొక %s ని à°•à±à°°à°¿à°‚à°¦ జత చేయొచà±à°šà±" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" జయపà±à°°à°¦à°‚à°—à°¾ మారà±à°šà°¬à°¡à°¿à°‚à°¡à°¿" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" జయపà±à°°à°¦à°‚à°—à°¾ కలపబడà±à°¡à°¡à°¿ .మీరౠమళà±à°³à±€ దీనినీ à°•à±à°°à°¿à°‚à°¦ మారà±à°šà°µà°šà±à°šà±" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" - -#: options.py:846 -msgid "No action selected." -msgstr "" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%sని జత చేయండి " - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%sని మారà±à°šà°‚ది" - -#: options.py:1065 -msgid "Database error" -msgstr "దతà±à°¤à°¾à°‚శసà±à°¥à°¾à°¨à°®à± పొరబాటౠ" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" -msgstr[1] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" -msgstr[1] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\"జయపà±à°°à°¦à°‚à°—à°¾ తీసివేయబడà±à°¡à°¡à°¿" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "à°šà°°à°¿à°¤à±à°°à°‚ మారà±à°šà±: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "à°ªà±à°°à°µà±‡à°¶à°¿à°‚à°šà°‚à°¡à°¿" - -#: sites.py:375 -msgid "Site administration" -msgstr "సైటౠనిరà±à°µà°¾à°¹à°¨" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s నిరà±à°µà°¾à°¹à°¨" - -#: widgets.py:75 -msgid "Date:" -msgstr "తారీఖà±:" - -#: widgets.py:75 -msgid "Time:" -msgstr "సమయం:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "" - -#: widgets.py:246 -msgid "Add Another" -msgstr "మరివొక à°•à°²à±à°ªà±" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "à°ªà±à°Ÿ దొరకలేదà±" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "à°•à±à°·à°®à°¿à°‚à°šà°‚à°¡à°¿ మీరౠకోరిన à°ªà±à°Ÿ దొరకలేడà±" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "నివాసమà±" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "సరà±à°µà°°à± పొరబాటà±" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "సరà±à°µà°°à± పొరబాటౠ(500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "సరà±à°µà°°à± పొరబాటౠ(500)" - -#: 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 "పొరబాటౠజరిగింది . దానిని నిరà±à°µà°¾à°¹à°¨à°¾à°§à°¿à°•à°¾à°°à±à°²à± à°•à°¿ à°ˆ మెయిలౠచేయబడà±à°¡à°¡à°¿,మీ ఓపిక à°•à°¿ ధనà±à°¯à°µà°¾à°¦à°®à±à°²à±" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "వెళà±à°²à±" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "à°¸à±à°¸à±à°µà°¾à°—తం" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "పతà±à°°à°¿à°•à±€à°•à°°à°£" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "పాసౠవరà±à°¡à± మారà±à°šà±à°•à±‹à°‚à°¡à°¿" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "లాగౠఔటà±" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "à°¡à±à°œà°¾à°‚గొ యొకà±à°• నిరà±à°µà°¾à°¹à°¨à°¦à°¾à°°à±à°²à±" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "à°¡à±à°œà°¾à°‚గొ నిరà±à°µà°¾à°¹à°¨" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "చేరà±à°šà±" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "à°šà°°à°¿à°¤à±à°°" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "సైటౠలో చూడండి" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "à°•à±à°°à°¿à°‚à°¦ ఉనà±à°¨ తపà±à°ªà± సరిదిదà±à°¦à±à°•à±‹à°‚à°¡à°¿" -msgstr[1] "à°•à±à°°à°¿à°‚à°¦ ఉనà±à°¨ తపà±à°ªà±à°²à± సరిదిదà±à°¦à±à°•à±‹à°‚à°¡à°¿" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s జత చేయà±" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "వడపోత" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "తొలగించà±" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "à°…à°µà±à°¨à± " - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "మొడలౠలౠ%(name)s లో దొరికే à°…à°ªà±à°ªà±à°²à°¿à°•à±‡à°·à°¨à±" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "మారà±à°šà±" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "మీకౠà°à°¦à°¿ మారà±à°šà°Ÿà°¾à°¨à°¿à°•à°¿ అధికారమౠలేదà±" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "ఇటీవలి à°šà°°à±à°¯à°²à±" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "నా à°šà°°à±à°¯à°²à±" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "à°à°®à°¿ దొరకలేదà±" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "వాడà±à°•à°°à°¿à°ªà±‡à°°à±:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "సంకేతపదం:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "తేదీ/సమయం" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "వాడà±à°•à°°à°¿" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "à°šà°°à±à°¯" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "à°…à°¨à±à°¨à±€ చూపి" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "దాచà±" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "వెతà±à°•à±" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s ఫలితం" -msgstr[1] "%(counter)s ఫలితాలà±" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s మొతà±à°¤à°®à±" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "కొతà±à°¤ దాని లా దాచà±" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "దాచి కొతà±à°¤ దానిని కలపండి" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "దాచి మారà±à°šà±à°Ÿà°¾ ఉందండి" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "సంకేతపదం" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "సంకేతపదం (మళà±à°³à±€)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "పైన ఇచà±à°šà°¿à°¨ సంకేతపదానà±à°¨à±‡ మళà±à°³à±€ ఇవà±à°µà°‚à°¡à°¿, సరిచూత కోసం." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "తొలగించà±" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "తొలగించాలా?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "మళà±à°³à±€ à°ªà±à°°à°µà±‡à°¶à°¿à°‚à°šà°‚à°¡à°¿" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "à°…à°¨à±à°®à°¤à°¿ పదం మారà±à°ªà±" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "à°…à°¨à±à°®à°¤à°¿ పదం మారà±à°ªà± జయపà±à°°à°¦à°®à±ˆà°‚à°¡à°¿ " - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "మీ à°…à°¨à±à°®à°¤à°¿ పదం మారà±à°šà°¬à°¡à°¿à°‚à°¡à°¿" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"దయచేసి à°°à°•à±à°·à°¨ కోసమà±, మీ పాత à°…à°¨à±à°®à°¤à°¿ పదం ఇవà±à°µà°‚à°¡à°¿ , కొతà±à°¤ à°…à°¨à±à°®à°¤à°¿ పదం రెండౠసారà±à°²à± ఇవà±à°µà°‚à°¡à°¿ , " -"à°Žà°‚ à°¦à±à°•à°‚టే మీరౠతపà±à°ªà± ఇసà±à°¤à±‡ సరిచేయటానికి " - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "పాత సంకేతపదం" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "కొతà±à°¤ సంకేతపదం" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "నా సంకేతపదానà±à°¨à°¿ మారà±à°šà±" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "à°…à°¨à±à°®à°¤à°¿ పదం తిరిగి అమరà±à°šà±" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "à°…à°¨à±à°®à°¤à°¿ పదం తిరిగి మారà±à°šà± సంపూరà±à°£à°®à±ˆà°¨à°¦à°¿" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "మీ à°…à°¨à±à°®à°¤à°¿ పదం మరà±à°šà±à°¬à°¡à°¿à°¨à°¦à°¿. మీరౠఇపà±à°ªà±à°¦à± లాగౠఇనౠఅవà±à°µà°šà±à°šà±." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "à°…à°¨à±à°®à°¤à°¿ పదం తిరిగి మారà±à°šà± ఖాయం చెయండి" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "కొతà±à°¤ à°…à°¨à±à°®à°¤à°¿ పదం à°ªà±à°°à°µà±‡à°¶à°ªà±†à°Ÿà°‚à°¡à°¿" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"దయచేసి à°°à°•à±à°·à°¨ కోసమà±, మీ పాత à°…à°¨à±à°®à°¤à°¿ పదం ఇవà±à°µà°‚à°¡à°¿ , కొతà±à°¤ à°…à°¨à±à°®à°¤à°¿ పదం రెండౠసారà±à°²à± ఇవà±à°µà°‚à°¡à°¿ , " -"à°Žà°‚ à°¦à±à°•à°‚టే మీరౠతపà±à°ªà± ఇసà±à°¤à±‡ సరిచేయటానికి " - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "కొతà±à°¤ సంకేతపదం:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "సంకేతపదానà±à°¨à°¿ నిరà±à°§à°¾à°°à°¿à°‚à°šà°‚à°¡à°¿:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "సంకేతపదపౠమారà±à°ªà± విఫలమైంది" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "సంకేతపదపౠమారà±à°ªà± విజయవంతం" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "మీ వాడà±à°•à°°à°¿à°ªà±‡à°°à±, à°’à°• వేళ మీరౠమరà±à°šà°¿à°ªà±‹à°¯à°¿à°µà±à°‚టే:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "మా సైటà±à°¨à°¿ ఉపయోగించà±à°•à±à°¨à±à°¨à°‚à°¦à±à°•à± ధనà±à°¯à°µà°¾à°¦à°®à±à°²à±!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s జటà±à°Ÿà±" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "ఈమెయిలౠచిరà±à°¨à°¾à°®à°¾:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "à°…à°¨à±à°®à°¤à°¿à°ªà°¦à°‚ తిరిగి అమరà±à°šà±" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "à°…à°¨à±à°¨à±€ తేదీలà±" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s ని à°Žà°¨à±à°¨à±à°•à±‹à°‚à°¡à°¿" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "%s ని మారà±à°šà°Ÿà°¾à°¨à°¿à°•à°¿ à°Žà°¨à±à°¨à±à°•à±‹à°‚à°¡à°¿" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 3775630b3..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po deleted file mode 100644 index b580bd400..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/te/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,145 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Telugu <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "ఆందà±à°¬à°¾à°¤à±à°²à±‹à°‰à°¨à±à°¨ %s " - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "à°…à°¨à±à°¨à±€ à°Žà°¨à±à°¨à±à°•à±‹à°‚à°¡à°¿" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "ఙత చేయి" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "తీసివేయండి" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "à°Žà°¨à±à°¨à±à°•à±à°¨à±à°¨ %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "మీ ఇషà±à°Ÿà°¾à°²à± à°Žà°¨à±à°¨à±à°•à±‹à°‚à°¡à°¿" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "à°…à°¨à±à°¨à°¿ తీసివేయà±" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" -msgstr[1] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "ఙానà±à°µà°°à°¿ à°«à°¿à°¬à±à°°à°µà°°à°¿ మారà±à°šà°¿ à°Žà°ªà±à°°à°¿à°²à± మే ఙూనౠఙà±à°²à±ˆ ఆగషà±à°Ÿà± సెపà±à°Ÿà±†à°‚బరౠఅకà±à°Ÿà±‹à°¬à°°à± నవంబరౠడిసెంబరà±" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "à°† సో మం భౠగౠశౠశ" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "చూపినà±à°šà±" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "దాచà±" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ఆదివారమౠసోమవారమౠమంగళవారమౠబà±à°§à°µà°¾à°°à°®à± à°—à±à°°à±à°µà°¾à°°à°®à± à°¶à±à°•à±à°°à°µà°¾à°°à°®à± శనివారమà±" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "ఇపà±à°ªà±à°¡à±" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "గడియారమà±" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "à°’à°• సమయమౠఎనà±à°¨à±à°•à±‹à°‚à°¡à°¿" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "ఆరà±à°§à°°à°¾à°¤à±à°°à°¿" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "మధà±à°¯à°¾à°¹à±à°¨à°®à±" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "à°°à°¦à±à°¦à± చేయà±" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "ఈనాడà±" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "కాలెండరà±" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "నినà±à°¨" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "రేపà±" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo deleted file mode 100644 index e2882cfa4..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.po deleted file mode 100644 index 11b160295..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/django.po +++ /dev/null @@ -1,783 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Thai <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s ถูà¸à¸¥à¸šà¹€à¸£à¸µà¸¢à¸šà¸£à¹‰à¸­à¸¢à¹à¸¥à¹‰à¸§" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "ไม่สามารถลบ %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "à¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "ลบ %(verbose_name_plural)s ที่เลือà¸" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                                  By %s:

                                                                                                                                                                                                                                  \n" -"
                                                                                                                                                                                                                                    \n" -msgstr "" -"

                                                                                                                                                                                                                                    โดย %s:

                                                                                                                                                                                                                                    \n" -"
                                                                                                                                                                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "ทั้งหมด" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "ใช่" - -#: filterspecs.py:139 -msgid "No" -msgstr "ไม่ใช่" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "ไม่รู้" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "วันไหนà¸à¹‡à¹„ด้" - -#: filterspecs.py:197 -msgid "Today" -msgstr "วันนี้" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "สัปดาห์ที่à¹à¸¥à¹‰à¸§" - -#: filterspecs.py:203 -msgid "This month" -msgstr "เดือนนี้" - -#: filterspecs.py:205 -msgid "This year" -msgstr "ปีนี้" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "à¸à¸£à¸¸à¸“าใส่ชื่อผู้ใช้à¹à¸¥à¸°à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¹ƒà¸«à¹‰à¸–ูà¸à¸•à¹‰à¸­à¸‡ มีà¸à¸²à¸£à¹à¸¢à¸à¹à¸¢à¸°à¸•à¸±à¸§à¸žà¸´à¸¡à¸žà¹Œà¹ƒà¸«à¸à¹ˆ-เล็à¸" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "à¸à¸£à¸¸à¸“าลงชื่อเข้าใช้อีà¸à¸„รั้ง, เนื่องจาà¸à¸„ุณไม่ได้ใช้งานนานเà¸à¸´à¸™à¹„ป" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "ที่อยู่อีเมลไม่ใช่ชื่อผู้ใช้ของคุณ ลองใช้ '%s' à¹à¸—น" - -#: helpers.py:19 -msgid "Action:" -msgstr "คำสั่ง" - -#: models.py:19 -msgid "action time" -msgstr "เวลาลงมือ" - -#: models.py:22 -msgid "object id" -msgstr "อ็อบเจ็à¸à¸•à¹Œà¹„อดี" - -#: models.py:23 -msgid "object repr" -msgstr "object repr" - -#: models.py:24 -msgid "action flag" -msgstr "action flag" - -#: models.py:25 -msgid "change message" -msgstr "เปลี่ยนข้อความ" - -#: models.py:28 -msgid "log entry" -msgstr "log entry" - -#: models.py:29 -msgid "log entries" -msgstr "log entries" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "ไม่มี" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s เปลี่ยนà¹à¸¥à¹‰à¸§" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "à¹à¸¥à¸°" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "เพิ่ม %(name)s \"%(object)s\" à¹à¸¥à¹‰à¸§" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "เปลี่ยน %(list)s สำหรับ %(name)s \"%(object)s\" à¹à¸¥à¹‰à¸§" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "ลบ %(name)s \"%(object)s\" à¹à¸¥à¹‰à¸§" - -#: options.py:645 -msgid "No fields changed." -msgstr "ไม่มีฟิลด์ใดถูà¸à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "เพิ่ม %(name)s \"%(obj)s\" เรียบร้อยà¹à¸¥à¹‰à¸§" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "สามารถà¹à¸à¹‰à¹„ขเพิ่มเติมได้ที่ด้านล่าง" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "คุณสามารถเพิ่ม %s ได้อีà¸à¸—ี่ด้านล่าง" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "เปลี่ยนà¹à¸›à¸¥à¸‡ %(name)s \"%(obj)s\" เรียบร้อยà¹à¸¥à¹‰à¸§" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "เพิ่ม %(name)s \"%(obj)s\" เรียบร้อยà¹à¸¥à¹‰à¸§ à¹à¸à¹‰à¹„ขได้อีà¸à¸—ี่ด้านล่าง" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"ไม่มีรายà¸à¸²à¸£à¹ƒà¸”ถูà¸à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™\n" -"รายà¸à¸²à¸£à¸ˆà¸°à¸•à¹‰à¸­à¸‡à¸–ูà¸à¹€à¸¥à¸·à¸­à¸à¸à¹ˆà¸­à¸™à¹€à¸žà¸·à¹ˆà¸­à¸—ี่จะทำตามคำสั่งได้" - -#: options.py:846 -msgid "No action selected." -msgstr "ไม่มีคำสั่งที่ถูà¸à¹€à¸¥à¸·à¸­à¸" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "เพิ่ม %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "Primary key %(key)r ของอ็อบเจ็à¸à¸•à¹Œ %(name)s ไม่มีอยู่" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "เปลี่ยน %s" - -#: options.py:1065 -msgid "Database error" -msgstr "เà¸à¸´à¸”ความผิดพลาดที่à¸à¸²à¸™à¸‚้อมูล" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "เลือภ0 จาภ%(cnt)s" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "ลบ %(name)s \"%(obj)s\" เรียบร้อยà¹à¸¥à¹‰à¸§" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "เปลี่ยนà¹à¸›à¸¥à¸‡à¸›à¸£à¸°à¸§à¸±à¸•à¸´: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "เข้าสู่ระบบ" - -#: sites.py:375 -msgid "Site administration" -msgstr "à¸à¸²à¸£à¸ˆà¸±à¸”à¸à¸²à¸£à¹„ซต์" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s à¸à¸²à¸£à¸ˆà¸±à¸”à¸à¸²à¸£" - -#: widgets.py:75 -msgid "Date:" -msgstr "วันที่ :" - -#: widgets.py:75 -msgid "Time:" -msgstr "เวลา :" - -#: widgets.py:140 -msgid "Lookup" -msgstr "ดูที่" - -#: widgets.py:246 -msgid "Add Another" -msgstr "เพิ่มอีà¸" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "ไม่พบหน้านี้" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "เสียใจด้วย ไม่พบหน้าที่ต้องà¸à¸²à¸£" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "หน้าหลัà¸" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "เซิร์ฟเวอร์ขัดข้อง" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "เซิร์ฟเวอร์ขัดข้อง (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "เซิร์ฟเวอร์ขัดข้อง (500)" - -#: 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 "" -"เà¸à¸´à¸”เหตุขัดข้องขี้น ทางเราได้รายงานไปยังผู้ดูà¹à¸¥à¸£à¸°à¸šà¸šà¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¸ˆà¸°à¸”ำเนินà¸à¸²à¸£à¹à¸à¹‰à¹„ขอย่างเร่งด่วน " -"ขอบคุณที่รายงานความผิดพลาด" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "รันคำสั่งที่ถูà¸à¹€à¸¥à¸·à¸­à¸" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "ไป" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "คลิà¸à¸—ี่นี่เพื่อเลือà¸à¸­à¹‡à¸­à¸šà¹€à¸ˆà¹‡à¸à¸•à¹Œà¸ˆà¸²à¸à¸«à¸™à¹‰à¸²à¸—ั้งหมด" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "เลือà¸à¸—ั้งหมด %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "เคลียร์ตัวเลือà¸" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "ยินดีต้อนรับ," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "เอà¸à¸ªà¸²à¸£à¸›à¸£à¸°à¸à¸­à¸š" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "เปลี่ยนรหัสผ่าน" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "ออà¸à¸ˆà¸²à¸à¸£à¸°à¸šà¸š" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "ผู้ดูà¹à¸¥à¸£à¸°à¸šà¸š Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "à¸à¸²à¸£à¸ˆà¸±à¸”à¸à¸²à¸£ Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "เพิ่ม" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ประวัติ" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "ดูที่หน้าเว็บ" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "โปรดà¹à¸à¹‰à¹„ขข้อผิดพลาดด้านล่าง" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "เพิ่ม %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "ตัวà¸à¸£à¸­à¸‡" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "ลบ" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"à¸à¸³à¸¥à¸±à¸‡à¸”ำเนินà¸à¸²à¸£à¸¥à¸š %(object_name)s '%(escaped_object)s'à¹à¸¥à¸°à¸ˆà¸°à¹à¸ªà¸”งผลà¸à¸²à¸£à¸¥à¸š " -"à¹à¸•à¹ˆà¸šà¸±à¸à¸Šà¸µà¸‚องคุณไม่สามารถทำà¸à¸²à¸£à¸¥à¸šà¸‚้อมูลชนิดนี้ได้" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"à¸à¸²à¸£à¸¥à¸š %(object_name)s '%(escaped_object)s' จำเป็นจะต้องลบอ็อบเจ็à¸à¸•à¹Œà¸—ี่เà¸à¸µà¹ˆà¸¢à¸§à¸‚้องต่อไปนี้:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­à¸—ี่จะลบ %(object_name)s \"%(escaped_object)s\"?" -"ข้อมูลที่เà¸à¸µà¹ˆà¸¢à¸§à¸‚้องทั้งหมดจะถูà¸à¸¥à¸šà¹„ปด้วย:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "ใช่, ฉันà¹à¸™à¹ˆà¹ƒà¸ˆ" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "ลบหลายอ็อบเจ็à¸à¸•à¹Œ" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"à¸à¸²à¸£à¸¥à¸š %(objects_name)s ที่เลือภจะทำให้อ็อบเจ็à¸à¸•à¹Œà¸—ี่เà¸à¸µà¹ˆà¸¢à¸§à¸‚้องถูà¸à¸¥à¸šà¹„ปด้วย " -"à¹à¸•à¹ˆà¸šà¸±à¸à¸Šà¸µà¸‚องคุณไม่มีสิทธิ์ที่จะลบอ็อบเจ็à¸à¸•à¹Œà¸Šà¸™à¸´à¸”นี้" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "à¸à¸²à¸£à¸¥à¸š %(objects_name)s ที่ถูà¸à¹€à¸¥à¸·à¸­à¸ จำเป็นจะต้องลบอ็อบเจ็à¸à¸•à¹Œà¸—ี่เà¸à¸µà¹ˆà¸¢à¸§à¸‚้องต่อไปนี้:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"คุณà¹à¸™à¹ˆà¹ƒà¸ˆà¸«à¸£à¸·à¸­à¸§à¹ˆà¸² ต้องà¸à¸²à¸£à¸¥à¸š %(objects_name)s ที่ถูà¸à¹€à¸¥à¸·à¸­à¸? เนื่องจาà¸à¸­à¹‡à¸­à¸šà¹€à¸ˆà¹‡à¸à¸•à¹Œ " -"à¹à¸¥à¸°à¸£à¸²à¸¢à¸à¸²à¸£à¸—ี่เà¸à¸µà¹ˆà¸¢à¸§à¸‚้องทั้งหมดต่อไปนี้จะถูà¸à¸¥à¸šà¸”้วย" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " โดย %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "โมเดลใช้ได้ในà¹à¸­à¸› %(name)s ." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "เปลี่ยนà¹à¸›à¸¥à¸‡" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "คุณไม่สิทธิ์ในà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡à¸‚้อมูลใดๆ ได้" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "คำสั่งที่ผ่านมา" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "คำสั่งของฉัน" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "ไม่ว่าง" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "ไม่ทราบเนื้อหา" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"มีสิ่งผิดปà¸à¸•à¸´à¹€à¸à¸´à¸”ขึ้นà¸à¸±à¸šà¸à¸²à¸£à¸•à¸´à¸”ตั้งà¸à¸²à¸™à¸‚้อมูล à¸à¸£à¸¸à¸“าตรวจสอบอีà¸à¸„รั้งว่าà¸à¸²à¸™à¸‚้อมูลได้ถูà¸à¸•à¸´à¸”ตั้งà¹à¸¥à¹‰à¸§ " -"หรือà¸à¸²à¸™à¸‚้อมูลสามารถอ่านà¹à¸¥à¸°à¹€à¸‚ียนได้โคยผู้ใช้นี้" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "ชื่อผู้ใช้:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "รหัสผ่าน:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "วันที่/เวลา" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "ผู้ใช้" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "คำสั่ง" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "อ็อบเจ็à¸à¸•à¹Œà¸™à¸µà¹‰à¹„ม่ได้à¹à¸à¹‰à¹„ขประวัติ เป็นไปได้ว่ามันอาจจะไม่ได้ถูà¸à¹€à¸žà¸´à¹ˆà¸¡à¹€à¸‚้าไปโดยระบบ" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "à¹à¸ªà¸”งทั้งหมด" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "บันทึà¸" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "ค้นหา" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s ทั้งหมด" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "บันทึà¸à¹ƒà¸«à¸¡à¹ˆ" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "บันทึà¸à¹à¸¥à¸°à¹€à¸žà¸´à¹ˆà¸¡" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "บันทึà¸à¹à¸¥à¸°à¸à¸¥à¸±à¸šà¸¡à¸²à¹à¸à¹‰à¹„ข" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "ขั้นตอนà¹à¸£à¸ ใส่ชื่อผู้ใช้à¹à¸¥à¸°à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™ หลังจาà¸à¸™à¸±à¹‰à¸™à¸„ุณจะสามารถà¹à¸à¹‰à¹„ขข้อมูลผู้ใช้ได้มาà¸à¸‚ึ้น" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "à¸à¸£à¸¸à¸“าใส่ชื่อผู้ใช้à¹à¸¥à¸°à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "ใส่รหัสผ่านใหม่สำหรับผู้ใช้ %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "รหัสผ่าน" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "รหัสผ่าน (อีà¸à¸„รั้ง)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "ใส่รหัสผ่านเหมือนด้านบน เพื่อตรวจสอบความถูà¸à¸•à¹‰à¸­à¸‡" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "เพิ่ม %(verbose_name)s อีà¸" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "ถอดออà¸" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "ลบ?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "ขอบคุณที่สละเวลาอันมีค่าให้à¸à¸±à¸šà¹€à¸§à¹‡à¸šà¹„ซต์ของเราในวันนี้" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "เข้าสู่ระบบอีà¸à¸„รั้ง" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "เปลี่ยนรหัสผ่าน" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "เปลี่ยนรหัสผ่านสำเร็จ" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "รหัสผ่านของคุณถูà¸à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹„ปà¹à¸¥à¹‰à¸§" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"à¸à¸£à¸¸à¸“าใส่รหัสผ่านเดิม ด้วยเหตุผลทางด้านà¸à¸²à¸£à¸£à¸±à¸à¸©à¸²à¸„วามปลอดภัย " -"หลังจาà¸à¸™à¸±à¹‰à¸™à¹ƒà¸«à¹‰à¹ƒà¸ªà¹ˆà¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¹ƒà¸«à¸¡à¹ˆà¸­à¸µà¸à¸ªà¸­à¸‡à¸„รั้ง เพื่อตรวจสอบว่าคุณได้พิมพ์รหัสอย่างถูà¸à¸•à¹‰à¸­à¸‡" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "รหัสผ่านเà¸à¹ˆà¸²" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "รหัสผ่านใหม่" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "เปลี่ยนรหัสผ่านของฉัน" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "ตั้งค่ารหัสผ่านใหม่" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "ตั้งค่ารหัสผ่านใหม่เรียบร้อย" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "รหัสผ่านของคุณได้รับà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่าà¹à¸¥à¹‰à¸§ คุณสามารถเข้าสู่ระบบได้ทันที" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "à¸à¸²à¸£à¸¢à¸·à¸™à¸¢à¸±à¸™à¸•à¸±à¹‰à¸‡à¸„่ารหัสผ่านใหม่" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "ใส่รหัสผ่านใหม่" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "à¸à¸£à¸¸à¸“าใส่รหัสผ่านใหม่สองครั้ง เพื่อตรวจสอบว่าคุณได้พิมพ์รหัสอย่างถูà¸à¸•à¹‰à¸­à¸‡" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "รหัสผ่านใหม่:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "ยืนยันรหัสผ่าน:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่ารหัสผ่านใหม่ ไม่สำเร็จ" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¹ƒà¸«à¸¡à¹ˆà¹„ม่สำเร็จ เป็นเพราะว่าหน้านี้ได้ถูà¸à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹„ปà¹à¸¥à¹‰à¸§ à¸à¸£à¸¸à¸“าทำà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¹ƒà¸«à¸¡à¹ˆà¸­à¸µà¸à¸„รั้ง" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸„่ารหัสผ่านใหม่เรียบร้อย" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "เราได้ส่งอีเมลวิธีà¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™ ไปที่อีเมลที่คุณให้ไว้เรียบร้อยà¹à¸¥à¹‰à¸§ à¹à¸¥à¸°à¸„ุณจะได้รับเร็วๆ นี้" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "à¸à¸£à¸¸à¸“าไปที่หน้านี้à¹à¸¥à¸°à¹€à¸¥à¸·à¸­à¸à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¹ƒà¸«à¸¡à¹ˆ:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "ชื่อผู้ใช้ของคุณ ในà¸à¸£à¸“ีที่คุณถูà¸à¸¥à¸·à¸¡:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "ขอบคุณสำหรับà¸à¸²à¸£à¹ƒà¸Šà¹‰à¸‡à¸²à¸™à¹€à¸§à¹‡à¸šà¹„ซต์ของเรา" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s ทีม" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "ลืมรหัสผ่าน? à¸à¸£à¸¸à¸“าใส่อีเมลด้านล่าง ทางเราจะทำà¸à¸²à¸£à¸ªà¹ˆà¸‡à¸§à¸´à¸˜à¸µà¸à¸²à¸£à¹ƒà¸™à¸à¸²à¸£à¸•à¸±à¹‰à¸‡à¸£à¸«à¸±à¸ªà¸œà¹ˆà¸²à¸™à¹ƒà¸«à¸¡à¹ˆà¹„ปให้" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "อีเมลของคุณ" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "ตั้งรหัสผ่านของฉันใหม่" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "ทุà¸à¸§à¸±à¸™" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "เลือภ%s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "เลือภ%s เพื่อเปลี่ยนà¹à¸›à¸¥à¸‡" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 29a0b9265..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po deleted file mode 100644 index 8b3a3be44..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/th/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Thai <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "%sที่มีอยู่" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "เลือà¸à¸—ั้งหมด" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "เพิ่ม" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "ลบออà¸" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%sที่ถูà¸à¹€à¸¥à¸·à¸­à¸" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "เลือà¸à¹à¸¥à¸°à¸„ลิà¸" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "ล้างทั้งหมด" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"คุณยังไม่ได้บันทึà¸à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡à¹ƒà¸™à¹à¸•à¹ˆà¸¥à¸°à¸Ÿà¸´à¸¥à¸”์ ถ้าคุณเรียà¸à¹ƒà¸Šà¹‰à¸„ำสั่ง " -"ข้อมูลที่ไม่ได้บันทึà¸à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡à¸‚องคุณจะหายไป" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"คุณได้เลือà¸à¸„ำสั่ง à¹à¸•à¹ˆà¸„ุณยังไม่ได้บันทึà¸à¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡à¸‚องคุณไปยังฟิลด์ à¸à¸£à¸¸à¸“าคลิภOK เพื่อบันทึภ" -"คุณจะต้องเรียà¸à¹ƒà¸Šà¹‰à¸„ำสั่งใหม่อีà¸à¸„รั้ง" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"คุณได้เลือà¸à¸„ำสั่งà¹à¸¥à¸°à¸„ุณยังไม่ได้ทำà¸à¸²à¸£à¹€à¸›à¸¥à¸µà¹ˆà¸¢à¸™à¹à¸›à¸¥à¸‡à¹ƒà¸” ๆ ในฟิลด์ คุณอาจมองหาปุ่มไปมาà¸à¸à¸§à¹ˆà¸²à¸›à¸¸à¹ˆà¸¡à¸šà¸±à¸™à¸—ึà¸" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"มà¸à¸£à¸²à¸„ม à¸à¸¸à¸¡à¸ à¸²à¸žà¸±à¸™à¸˜à¹Œ มีนาคม เมษายน พฤษภาคม มิถุนายน à¸à¸£à¸à¸Žà¸²à¸„ม สิงหาคม à¸à¸±à¸™à¸¢à¸²à¸¢à¸™ ตุลาคม " -"พฤศจิà¸à¸²à¸¢à¸™ ธันวาคม" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "อา. จ. อ. พ. พฤ. ศ. ส." - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "à¹à¸ªà¸”ง" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "ซ่อน" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "อาทิตย์ จันทร์ อังคาร พุธ พฤหัสบดี ศุà¸à¸£à¹Œ เสาร์" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "ขณะนี้" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "นาฬิà¸à¸²" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "เลือà¸à¹€à¸§à¸¥à¸²" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "เที่ยงคืน" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "หà¸à¹‚มงเช้า" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "เที่ยงวัน" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "ยà¸à¹€à¸¥à¸´à¸" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "วันนี้" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "ปà¸à¸´à¸—ิน" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "เมื่อวาน" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "พรุ่งนี้" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo deleted file mode 100644 index 4c4be1486..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.po deleted file mode 100644 index d6b64c6b0..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/django.po +++ /dev/null @@ -1,804 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 21:23+0000\n" -"Last-Translator: martinamca \n" -"Language-Team: Turkish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d adet %(items)s baÅŸarıyla silindi." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "%(name)s silinemedi" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Emin misiniz?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Seçili %(verbose_name_plural)s nesnelerini sil" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                                      By %s:

                                                                                                                                                                                                                                      \n" -"
                                                                                                                                                                                                                                        \n" -msgstr "" -"

                                                                                                                                                                                                                                        %s alanına göre:

                                                                                                                                                                                                                                        \n" -"
                                                                                                                                                                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Tümü" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Evet" - -#: filterspecs.py:139 -msgid "No" -msgstr "Hayır" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Bilinmiyor" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Herhangi bir tarih" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Bugün" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "7 gün içinde" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Bu ay" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Bu yıl" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Lütfen geçerli bir kullanıcı adı ve ÅŸifre girin. Tüm alanlar büyük/küçük " -"harf duyarlıdır." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Oturumunuzun süresi geçti. Lütfen tekrar giriÅŸ yapın." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "E-posta adresiniz kullanıcı adınız deÄŸil. '%s' kullanın." - -#: helpers.py:19 -msgid "Action:" -msgstr "Ä°ÅŸlem:" - -#: models.py:19 -msgid "action time" -msgstr "iÅŸlem zamanı" - -#: models.py:22 -msgid "object id" -msgstr "nesne no" - -#: models.py:23 -msgid "object repr" -msgstr "nesne kodu" - -#: models.py:24 -msgid "action flag" -msgstr "iÅŸlem adı" - -#: models.py:25 -msgid "change message" -msgstr "mesajı deÄŸiÅŸtir" - -#: models.py:28 -msgid "log entry" -msgstr "log kaydı" - -#: models.py:29 -msgid "log entries" -msgstr "log kayıtları" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Hiç biri" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s deÄŸiÅŸtirildi." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "ve" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" eklenmiÅŸtir." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(list)s %(name)s \"%(object)s\" ile deÄŸiÅŸtirildi." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" silinmiÅŸtir." - -#: options.py:645 -msgid "No fields changed." -msgstr "Hiçbir alan deÄŸiÅŸtirilmedi." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "\"%(obj)s\" isimli %(name)s eklendi." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Tekrar düzenleyebilirsiniz." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Yeni bir %s ekleyebilirsiniz." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "\"%(obj)s\" isimli %(name)s deÄŸiÅŸtirildi." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"\"%(obj)s\" isimli %(name)s eklendi. AÅŸağıda tekrar düzenleyebilirsiniz." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Ä°ÅŸlemlerin uygulanabilmesi için bir veya daha fazla nesne seçilmelidir. " -"Herhangi bir deÄŸiÅŸiklik gerçekleÅŸtirilmedi." - -#: options.py:846 -msgid "No action selected." -msgstr "Ä°ÅŸlem seçimi yapılmamış. Lütfen bir iÅŸlem seçiniz." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s ekle" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(key)r birincil anahtarına sahip %(name)s nesnesi mevcut deÄŸil." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s deÄŸiÅŸtir" - -#: options.py:1065 -msgid "Database error" -msgstr "Veritabanı hatası" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s adet %(name)s baÅŸarıyla deÄŸiÅŸtirildi." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "Toplam %(total_count)s nesne seçili" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "%(cnt)s nesne arasından seçim yapılmamış" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "\"%(obj)s\" isimli %(name)s silindi." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "%s için deÄŸiÅŸiklik geçmiÅŸi:" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "GiriÅŸ yap" - -#: sites.py:375 -msgid "Site administration" -msgstr "Site yönetimi" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s yönetimi" - -#: widgets.py:75 -msgid "Date:" -msgstr "Tarih:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Saat:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Arama" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Yenisini Ekle" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Sayfa bulunamadı" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Ãœzgünüz, aradığınız sayfa bulunamadı." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Anasayfa" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Sunucu hatası" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Sunucu hatası (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Sunucu Hatası (500)" - -#: 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 "" -"Bir hata oluÅŸtu. Hata, e-posta ile site yöneticisine bildirildi ve kısa süre " -"içinde çözülecktir. Sabrınız için teÅŸekkürler." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Seçili iÅŸlemi uygula" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Git" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Tüm sayfalardaki nesneleri seçmek için buraya tıklayınız" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Tüm %(total_count)s %(module_name)s nesnelerini seç" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Seçimi kaldır" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "HoÅŸgeldiniz," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Dokümantasyon" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Åžifre deÄŸiÅŸtir" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Çık" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django site yöneticisi" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django yönetimi" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Yeni" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "GeçmiÅŸ" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Sitede görüntüle" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Lütfen aÅŸağıdaki hataları düzeltin." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Yeni %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Filtrele" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Sil" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"'%(escaped_object)s' isimli %(object_name)s nesnesini silmek, baÄŸlantılı " -"nesnelerin silinmesini gerektiriyor, ancak aÅŸağıdaki nesneleri silme " -"yetkiniz yok." - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s' silinmesi aÅŸağıda gösterilen iliÅŸkili " -"nesnelerin de silinmesini gerektirir:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"\"%(escaped_object)s\" isimli %(object_name)s nesnesini silmek " -"istediÄŸinizden emin misiniz? AÅŸağıdaki baÄŸlantılı öğeler silinecek:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Evet, eminim" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Birden fazla nesneyi sil" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Seçili %(objects_name)s nesnelerinin silinmesi hesabınızın silme yetkisine " -"sahip olmadığı aÅŸağıda gösterilen nesnelerin de silinmesini gerektirir:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Seçili %(objects_name)s nesnelerinin silinmesi aÅŸağıda gösterilen iliÅŸkili " -"nesnelerin silinmesini de gerektirir:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Seçili %(objects_name)s nesnelerini silmek istediÄŸinizden emin misiniz? " -"AÅŸağıda gösterilen tüm nesneler ve iliÅŸkili kalemler silinecektir:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " %(filter_title)s filtresi" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s uygulamasındaki modeller." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Düzenle" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Düzenleme yapmaya yetkiniz yok." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Ä°ÅŸlem GeçmiÅŸi" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Ä°ÅŸlemlerim" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ä°ÅŸlem geçmiÅŸi bulunamadı" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Bilinmeyen içerik" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Veritabanı kurulumu ile ilgili bir problem var. Ä°lgili veritabanı " -"tablolarının kurulu olduÄŸundan ve veritabanının ilgili kullanıcı tarafından " -"okunabilir olduÄŸundan emin olun." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Kullanıcı adı:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Åžifre:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Tarih/saat" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "Kullanıcı" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Ä°ÅŸlem" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Bu nesnenin iÅŸlem geçmiÅŸi yok. Muhtemelen yönetici sayfası dışında bir " -"yerden eklendi." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Tümünü göster" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Kaydet" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Ara" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s sonuç" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "toplam %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Yeni olarak kaydet" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Kaydet ve yenisini ekle" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Kaydet ve düzenlemeye devam et" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Önce bir kullanıcı adı ve ÅŸifre girin. Daha sonra daha fazla bilgi " -"girebilirsiniz." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Kullanıcı adı ve ÅŸifre girin." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "%(username)s için yeni ÅŸifre girin." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Åžifre" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Åžifre (tekrar)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Onaylamak için, yukarıdaki ÅŸifrenin aynısını girin." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Yeni bir %(verbose_name)s ekle" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Sil" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Silinsin Mi?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Web sitesinde bugün geçirdiÄŸiniz zaman için teÅŸekkür ederiz." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Tekrar giriÅŸ yap" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Åžifre deÄŸiÅŸimi" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Åžifre deÄŸiÅŸimi baÅŸarılı" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Åžifreniz deÄŸiÅŸtirildi." - -#: templates/registration/password_change_form.html:22 -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 "" -"GüvenliÄŸiniz için, lütfen eski ÅŸifrenizi girin, sonra yeni ÅŸifrenizi iki " -"kere girerek doÄŸru yazdığınızdan emin olun." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Eski ÅŸifre" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Yeni ÅŸifre" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Åžifremi deÄŸiÅŸtir" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Åžifreyi sıfırla" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Åžifre sıfırlama tamamlandı" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Åžifreniz atanmıştır. Åžimdi sisteme giriÅŸ yapabilirsiniz." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Åžifre sıfırlama onayı" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Yeni ÅŸifreyi girin" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Lütfen yeni ÅŸifrenizi iki kere girin, böylece doÄŸru yazdığınızdan emin olun." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Yeni ÅŸifre:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Åžifreyi onayla:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Åžifre sıfırlaması baÅŸarısız oldu" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Åžifre sıfırlama linki geçersiz bulunmuÅŸtur, büyük ihtimalle daha önce " -"kullanılmış olduÄŸu içindir. Lütfen yeni bir ÅŸifre sıfırlama talebinde " -"bulunun." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Åžifre baÅŸarıyla sıfırlandı" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Yeni ÅŸifrenizi alabilmeniz için gereken talimatları belirtmiÅŸ olduÄŸunuz e-" -"posta adresinize gönderilmiÅŸtir, kısa süre içinde size ulaÅŸacaktır." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Bu e-postayı %(site_name)s adresindeki kullanıcı hesabınızın ÅŸifresini " -"sıfırlama talebinde bulunduÄŸunuz için alıyorsunuz." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Lütfen bu sayfaya gidip yeni ÅŸifre seçin:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Unutma ihtimaline karşı, kullanıcı adınız:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Sitemizi kullandığınız için teÅŸekkürler!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s Ekibi" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Åžifrenizi mı unuttunuz? E-posta adresinizi aÅŸağıya girin, yenisini almanız " -"için gereken talimatları e-posta adresinize gönderilsin." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-posta adresi:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Åžifremi sıfırla" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Tüm tarihler" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Yok)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s seç" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "DeÄŸiÅŸtirilecek %s nesnesini seçin" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo deleted file mode 100644 index a754ebd61..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po deleted file mode 100644 index e4e6666a9..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/tr/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,152 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: amiroff \n" -"Language-Team: Turkish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Toplam %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Filtre" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Hepsini seç" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Ekle" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Kaldır" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Seçilen %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Seçiminizi yapın ve yandaki düğmenin aynısına tıklayın " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Hepsini temizle" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(sel)s / %(cnt)s seçili" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Alanlara girilmiÅŸ ve henüz kaydedilmemiÅŸ deÄŸiÅŸiklikler mevcut. EÄŸer devam " -"ederseniz, kaydedilmemiÅŸ deÄŸiÅŸiklikleriniz yitirilecektir." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Bir iÅŸlem seçtiniz, fakat bazı alanlardaki deÄŸiÅŸiklikleri henüz " -"kaydetmediniz. Kaydetmek için lütfen Tamam düğmesine tıklayınız. Ä°ÅŸlemi " -"tekrarlamanız gerekecektir." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Bir iÅŸlem seçtiniz, fakat hiçbir alan üzerinde deÄŸiÅŸiklik yapmadınız. Bu " -"durumda Kaydet düğmesi yerine Git düğmesini kullanmanız önerilir." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Ocak Åžubat Mart Nisan Mayıs Haziran Temmuz AÄŸustos Eylül Ekim Kasım Aralık" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "P P S Ç P C C" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Göster" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Gizle" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Pazar Pazartesi Salı ÇarÅŸamba PerÅŸembe Cuma Cumartesi" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Åžimdi" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Saat" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Saat seçin" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Geceyarısı" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "Sabah 6" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Öğle" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Ä°ptal" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Bugün" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Takvim" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Dün" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Yarın" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo deleted file mode 100644 index fc860b2ce..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.po deleted file mode 100644 index da9abe849..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/django.po +++ /dev/null @@ -1,815 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-14 02:58+0000\n" -"Last-Translator: shelldweller \n" -"Language-Team: Ukrainian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "УÑпішно видалено %(count)d %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Ðе можу видалити %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Ви впевнені?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Видалити обрані %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                                          By %s:

                                                                                                                                                                                                                                          \n" -"
                                                                                                                                                                                                                                            \n" -msgstr "" -"

                                                                                                                                                                                                                                            За %s:

                                                                                                                                                                                                                                            \n" -"
                                                                                                                                                                                                                                              \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Ð’ÑÑ–" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Так" - -#: filterspecs.py:139 -msgid "No" -msgstr "ÐÑ–" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "Ðевідомо" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Будь-Ñка дата" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Сьогодні" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "ОÑтанні 7 днів" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Цього міÑÑцÑ" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Цього року" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Будь-лаÑка введіть правильне ім'Ñ Ñ‚Ð° пароль. Зауважте, що обидва Ð¿Ð¾Ð»Ñ " -"розрізнÑÑŽÑ‚ÑŒ великі Ñ– маленькі літери." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "" -"Будь лаÑка, увійдіть знову, ваша ÑеÑÑ–Ñ Ð·Ð°ÐºÑ–Ð½Ñ‡Ð¸Ð»Ð°ÑÑ. Ðе хвилюйтеÑÑŒ: вÑе, що " -"ви додавали збережено." - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"Ваша e-mail адреÑа не Ñ” вашим ім'Ñм кориÑтувача. ЗаміÑÑ‚ÑŒ Ñпробуйте '%s'" - -#: helpers.py:19 -msgid "Action:" -msgstr "ДіÑ:" - -#: models.py:19 -msgid "action time" -msgstr "Ñ‡Ð°Ñ Ð´Ñ–Ñ—" - -#: models.py:22 -msgid "object id" -msgstr "id об'єкту" - -#: models.py:23 -msgid "object repr" -msgstr "предÑÑ‚Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ð¾Ð±'єкту(repr)" - -#: models.py:24 -msgid "action flag" -msgstr "прапор дії" - -#: models.py:25 -msgid "change message" -msgstr "змінити повідомленнÑ" - -#: models.py:28 -msgid "log entry" -msgstr "реєÑÑ‚Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð¿Ð¸Ñів" - -#: models.py:29 -msgid "log entries" -msgstr "реєÑÑ‚Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð¿Ð¸Ñів" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Ðіщо" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "Змінено %s." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "та" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "Додано %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "Змінено %(list)s Ð´Ð»Ñ %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "Видалено %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "ÐŸÐ¾Ð»Ñ Ð½Ðµ змінені." - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" було додано уÑпішно." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Ви можете редагувати це знову внизу." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Ви можете додати інший %s внизу." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" був уÑпішно змінений." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" був уÑпішно доданий. Ви модете редагувати його знову " -"внизу." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Ð”Ð»Ñ Ð²Ð¸ÐºÐ¾Ð½Ð°Ð½Ð½Ñ Ð´Ñ–Ñ— необхідно обрати елемент. Жодний елемент не був змінений." - -#: options.py:846 -msgid "No action selected." -msgstr "Жодних дій не обрано." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Додати %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s об'єкт з первинним ключем %(key)r не Ñ–Ñнує." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Змінити %s" - -#: options.py:1065 -msgid "Database error" -msgstr "Помилка бази даних" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s був уÑпішно змінений." -msgstr[1] "%(count)s %(name)s були уÑпішно змінені." -msgstr[2] "%(count)s %(name)s було уÑпішно змінено." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s обраний" -msgstr[1] "%(total_count)s обрані" -msgstr[2] "УÑÑ– %(total_count)s обрано" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 з %(cnt)s обрано" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" був видалений уÑпішно." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "ІÑÑ‚Ð¾Ñ€Ñ–Ñ Ð·Ð¼Ñ–Ð½: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Увійти" - -#: sites.py:375 -msgid "Site administration" -msgstr "ÐдмініÑÑ‚Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñайта" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "ÐдмініÑÑ‚Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ %s" - -#: widgets.py:75 -msgid "Date:" -msgstr "Дата:" - -#: widgets.py:75 -msgid "Time:" -msgstr "ЧаÑ:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Вийти" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Додати інше" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Сторінка не знайдена" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Ми шкодуємо, але Ñторінка Ñку ви запроÑили, не знайдена." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Домівка" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Помилка Ñервера" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Помилка Ñервера (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Помилка Ñервера (500)" - -#: 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 "" -"Виникла помилка. Про неї було повідомлено адмініÑтраторам Ñайту e-mail'ом Ñ– " -"вона повинна бути незабаром виправлена. ДÑкуємо за ваше терпіннÑ." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Виконати обрану дію" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Уперед" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "ÐатиÑніть тут, щоб вибрати об'єкти на вÑÑ–Ñ… Ñторінках" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Обрати вÑÑ– %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Скинути вибір" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "Додати %(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Вітаємо," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "ДокументаціÑ" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Змінити пароль" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Вийти" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django Ñайт адмініÑтруваннÑ" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django адмініÑтруваннÑ" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Додати" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "ІÑторіÑ" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "ДивитиÑÑ Ð½Ð° Ñайті" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Будь лаÑка, виправте помилку нижче." -msgstr[1] "Будь лаÑка, виправте помилки нижче." -msgstr[2] "Будь лаÑка, виправте помилки нижче." - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Додати %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Відфільтрувати" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Видалити" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ %(object_name)s '%(escaped_object)s' призведе до Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ " -"пов'Ñзаних об'єктів, але ваш реєÑтраційний Ð·Ð°Ð¿Ð¸Ñ Ð½Ðµ має дозволу видалÑти " -"наÑтупні типи об'єктів:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ %(object_name)s '%(escaped_object)s' вимагатиме Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ " -"наÑтупних пов'Ñзаних об'єктів:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Ви впевнені що хочете видалити %(object_name)s \"%(escaped_object)s\"? Ð’ÑÑ– " -"пов'Ñзані запиÑи, що перелічені, будуть видалені:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Так, Ñ Ð²Ð¿ÐµÐ²Ð½ÐµÐ½Ð¸Ð¹" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Видалити кілька об'єктів" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð¾Ð±Ñ€Ð°Ð½Ð¸Ñ… %(objects_name)s вимагатиме Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð¿Ð¾Ð²'Ñзаних об'єктів, " -"але ваш обліковий Ð·Ð°Ð¿Ð¸Ñ Ð½Ðµ має прав Ð´Ð»Ñ Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ñ‚Ð°ÐºÐ¸Ñ… типів об'єктів:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Ð’Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð¾Ð±Ñ€Ð°Ð½Ð¸Ñ… %(objects_name)s вимагатиме Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð½Ñ Ð½Ð°Ñтупних захищених " -"пов'Ñзаних об'єктів:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Ви впевнені, що хочете видалити вибрані %(objects_name)s? Ð’ÑÑ– наÑтупні " -"об'єкти та пов'Ñзані з ними елементи будуть видалені:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "За %(filter_title)s" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Моделі, що Ñ” в наÑвноÑÑ‚Ñ– у прикладній ÑиÑтемі %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Змінити" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "У Ð²Ð°Ñ Ð½ÐµÐ¼Ð°Ñ” дозволу редагувати будь-що." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Ðедавні дії" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Мої дії" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ðемає" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Ðевідомий зміÑÑ‚" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"ЩоÑÑŒ не так з інÑталÑцією бази даних. Перевірте, що таблиці бази даних " -"Ñтворено Ñ– база даних може бути прочитана відповідним кориÑтувачем." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "КориÑтувач:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Пароль:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Дата/чаÑ" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "КориÑтувач" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "ДіÑ" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Цей об'єкт не має Ñ–Ñторії змін. Ðапевно, він був доданий не через цей Ñайт " -"адмініÑтруваннÑ." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Показати вÑÑ–" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "Зберегти" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Пошук" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s результат" -msgstr[1] "%(counter)s результати" -msgstr[2] "%(counter)s результатів" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "%(full_result_count)s вÑього" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "Зберегти Ñк нове" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "Зберегти Ñ– додати інше" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "Зберегти Ñ– продовжити редагуваннÑ" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Спочатку, введіть ім'Ñ ÐºÐ¾Ñ€Ð¸Ñтувача Ñ– пароль. Потім ви зможете редагувати " -"більше опцій кориÑтувача." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Введіть ім'Ñ ÐºÐ¾Ñ€Ð¸Ñтувача Ñ– пароль." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Введіть новий пароль Ð´Ð»Ñ ÐºÐ¾Ñ€Ð¸Ñтувача %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Пароль" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Зміна паролÑ" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Повторіть пароль Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐºÐ¸." - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Додати ще %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Видалити" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Видалити?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "ДÑкуємо за чаÑ, проведений Ñьогодні на Ñайті." - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Увійти знову" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Зміна паролю" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Зміна паролю уÑпішна" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Ваш пароль було змінено." - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Будь лаÑка введіть ваш Ñтарий пароль, Ð·Ð°Ð´Ð»Ñ Ð±ÐµÐ·Ð¿ÐµÐºÐ¸, потім введіть ваш новий " -"пароль двічі, щоб ми могли перевірити, що ви ввели його правильно" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Старий пароль" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Ðовий пароль" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Змінити мій пароль" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "ПеревÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»ÑŽ" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Пароль перевÑтановлено" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Пароль вÑтановлено. Ви можете увійти зараз." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "ÐŸÑ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»ÑŽ" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Ðовий пароль" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Будь лаÑка, введіть ваш Ñтарий пароль, Ð·Ð°Ð´Ð»Ñ Ð±ÐµÐ·Ð¿ÐµÐºÐ¸, потім введіть ваш " -"новий пароль двічі, щоб ми могли перевірити, що ви ввели його правильно." - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Ðовий пароль:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Підтвердіть пароль:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Пароль не перевÑтановлено" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"ПоÑÐ¸Ð»Ð°Ð½Ð½Ñ Ð½Ð° перевÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»ÑŽ було помилковим. Можливо тому, що воно " -"було вже викориÑтано. Будь лаÑка, замовте нове перевÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»ÑŽ." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Пароль перевÑтановлено уÑпішно" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Ми надіÑлали інÑтрукції по вÑтановленню нового паролю поштою на адреÑу, Ñку " -"ви вказали. Ðезабаром ви повинні його отримати." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Ви отримали цей лиÑÑ‚ тому що замовили перевÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð¾Ð»ÑŽ Ð´Ð»Ñ Ð’Ð°ÑˆÐ¾Ð³Ð¾ " -"облікового запиÑу на %(site_name)s." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Будь лаÑка, перейдіть на цю Ñторінку, та оберіть новий пароль:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "У разі, Ñкщо ви забули, ваше ім'Ñ ÐºÐ¾Ñ€Ð¸Ñтувача:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "ДÑкуємо за кориÑÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð°ÑˆÐ¸Ð¼ Ñайтом!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Команда Ñайту %(site_name)s " - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Забули Ñвій пароль? Введіть Ñвою e-mail адреÑу Ñ– ми надішлемо інÑтрукції Ð´Ð»Ñ " -"вÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð½Ð¾Ð²Ð¾Ð³Ð¾ паролю по e-mail." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mail адреÑа:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "ПеревÑтановіть мій пароль" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Ð’ÑÑ– дати" - -#: views/main.py:27 -msgid "(None)" -msgstr "(None)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Вибрати %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Виберіть %s щоб змінити" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 6fdf51670..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po deleted file mode 100644 index b2e636778..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/uk/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,155 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: sergikoff \n" -"Language-Team: Ukrainian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\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" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Ð’ наÑвноÑÑ‚Ñ– %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Фільтр" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Обрати вÑÑ–" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Додати" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Видалити" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Обрано %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "Зробіть Ваш вибір та клікніть " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "ОчиÑтити вÑе" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "Обрано %(sel)s з %(cnt)s" -msgstr[1] "Обрано %(sel)s з %(cnt)s" -msgstr[2] "Обрано %(sel)s з %(cnt)s" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Ви зробили ÑкіÑÑŒ зміни у деÑких полÑÑ…. Якщо Ви виконаєте цю дію, вÑÑ– " -"незбережені зміни буде втрачено." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Ви обрали дію, але не зберегли зміни в окремих полÑÑ…. Будь лаÑка, натиÑніть " -"ОК, щоб зберегти. Вам доведетьÑÑ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€Ð½Ð¾ запуÑтити дію." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Ви обрали дію Ñ– не зробили жодних змін у полÑÑ…. Ви, напевно, шукаєте кнопку " -"\"Виконати\", а не \"Зберегти\"." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Січень Лютий Березень Квітень Травень Червень Липень Серпень ВереÑень " -"Жовтень ЛиÑтопад Грудень" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "Ðд Пн Ð’Ñ‚ Ср Чт Пт Сб" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Показати" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Сховати" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "ÐÐµÐ´Ñ–Ð»Ñ ÐŸÐ¾Ð½ÐµÐ´Ñ–Ð»Ð¾Ðº Вівторок Середа Четвер П'ÑÑ‚Ð½Ð¸Ñ†Ñ Ð¡ÑƒÐ±Ð¾Ñ‚Ð°" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Зараз" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Годинник" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Оберіть чаÑ" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Північ" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Полудень" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Відмінити" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Сьогодні" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Календар" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Вчора" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Завтра" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo deleted file mode 100644 index cd0744baa..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.po deleted file mode 100644 index 202f5da9d..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/django.po +++ /dev/null @@ -1,810 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Urdu \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "%(count)d %(items)s Ú©Ùˆ کامیابی سے مٹا دیا گیا۔" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "%(name)s Ù†Ûیں مٹایا جا سکتا" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "آپ Ú©Ùˆ یقین Ú¾Û’ØŸ" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "منتخب Ø´Ø¯Û %(verbose_name_plural)s مٹائیں" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                                              By %s:

                                                                                                                                                                                                                                              \n" -"
                                                                                                                                                                                                                                                \n" -msgstr "" -"

                                                                                                                                                                                                                                                از %s:

                                                                                                                                                                                                                                                \n" -"
                                                                                                                                                                                                                                                  \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "تمام" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "ھاں" - -#: filterspecs.py:139 -msgid "No" -msgstr "نھیں" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "نامعلوم" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "کوئی تاریخ" - -#: filterspecs.py:197 -msgid "Today" -msgstr "آج" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "Ú¯Ø²Ø´ØªÛ Ø³Ø§Øª دن" - -#: filterspecs.py:203 -msgid "This month" -msgstr "ÛŒÛ Ù…Ú¾ÛŒÙ†Û" - -#: filterspecs.py:205 -msgid "This year" -msgstr "ÛŒÛ Ø³Ø§Ù„" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "" -"Ø¨Ø±Ø§Û Ú©Ø±Ù… درست نام صار٠اور Ù„Ùظ اجازت درج کریں۔ یاد رھے دونوں خانے چھوٹے بڑے " -"حرو٠کی شناخت Ú©Û’ لئے حساس ھیں۔" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Ø¨Ø±Ø§Û Ù…Ú¾Ø±Ø¨Ø§Ù†ÛŒ Ø¯ÙˆØ¨Ø§Û Ø§Ù†Ø¯Ø± جائیں، Ú©ÛŒÙˆÙ†Ú©Û Ø§Ù“Ù¾ Ú©ÛŒ نشست Ú©ÛŒ مدت ختم Ú¾Ùˆ Ú†Ú©ÛŒ Ú¾Û’Û”" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "" -"آپ Ú©Û’ برقی خط کا Ù¾ØªÛ Ø§Ù“Ù¾ کا نام صار٠نھیں Ú¾Û’Û” اس Ú©ÛŒ بجائے '%s' Ú©ÛŒ کوشش کریں۔" - -#: helpers.py:19 -msgid "Action:" -msgstr "کاروائی:" - -#: models.py:19 -msgid "action time" -msgstr "کاروائی کا وقت" - -#: models.py:22 -msgid "object id" -msgstr "Ø´Û’ کا شناختی نمبر" - -#: models.py:23 -msgid "object repr" -msgstr "Ø´Û’ کا نمائندÛ" - -#: models.py:24 -msgid "action flag" -msgstr "کاروائی کا پرچم" - -#: models.py:25 -msgid "change message" -msgstr "پیغام تبدیل کریں" - -#: models.py:28 -msgid "log entry" -msgstr "لاگ کا اندراج" - -#: models.py:29 -msgid "log entries" -msgstr "لاگ Ú©Û’ اندراج" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "کوئی نھیں" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s تبدیل کریں۔" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "اور" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" کا اضاÙÛ Ú©ÛŒØ§ گیا۔" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" %(list)s Ú©ÛŒ تبدیلی Ú©ÛŒ گئی۔" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" مٹایا گیا۔۔" - -#: options.py:645 -msgid "No fields changed." -msgstr "کوئی Ø®Ø§Ù†Û ØªØ¨Ø¯ÛŒÙ„ نھیں کیا گیا۔" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" کا کامیابی سے اضاÙÛ Ú©ÛŒØ§ گیا۔" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "آپ اس Ú©Ùˆ نیچے Ø¯ÙˆØ¨Ø§Ø±Û ØªØ¨Ø¯ÛŒÙ„ کر سکتے ھیں۔" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "آپ نیچے مزید %s درج کر سکتے ھیں۔" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" Ú©ÛŒ تبدیلی کامیابی سے Ú¾Ùˆ گئی۔" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" کا کامیابی سے اضاÙÛ Ú©ÛŒØ§ گیا۔ نیچے آپ Ø¯ÙˆØ¨Ø§Ø±Û Ø§Ø³Û’ مدوّن کر " -"سکتے ھیں۔" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"اشیاء پر کاروائی سرانجام دینے Ú©Û’ لئے ان کا منتخب ھونا ضروری Ú¾Û’Û” کوئی Ø´Û’ " -"تبدیل نھیں Ú©ÛŒ گئی۔" - -#: options.py:846 -msgid "No action selected." -msgstr "کوئی کاروائی منتخب نھیں Ú©ÛŒ گئی۔" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "%s کا اضاÙÛ Ú©Ø±ÛŒÚº" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "%(name)s Ø´Û’ %(key)r پرائمری کلید Ú©Û’ ساتھ موجود نھیں Ú¾Û’Û”" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "%s تبدیل کریں" - -#: options.py:1065 -msgid "Database error" -msgstr "ڈیٹا بیس Ú©ÛŒ خرابی" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "%(count)s %(name)s کامیابی سے تبدیل کیا گیا تھا۔" -msgstr[1] "%(count)s %(name)s کامیابی سے تبدیل کیے گئے تھے۔" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "%(total_count)s منتخب کیا گیا۔" -msgstr[1] "تمام %(total_count)s منتخب کئے گئے۔" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "%(cnt)s میں سے 0 منتخب کیا گیا۔" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" کامیابی سے مٹایا گیا تھا۔" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "%s Ú©ÛŒ تبدیلی کا تاریخ نامÛ" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "اندر جائیں" - -#: sites.py:375 -msgid "Site administration" -msgstr "سائٹ Ú©ÛŒ انتظامیÛ" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s Ú©ÛŒ انتظامیÛ" - -#: widgets.py:75 -msgid "Date:" -msgstr "تاریخ:" - -#: widgets.py:75 -msgid "Time:" -msgstr "وقت:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "ڈھونڈیں" - -#: widgets.py:246 -msgid "Add Another" -msgstr "اور اضاÙÛ Ú©Ø±ÛŒÚº" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "صÙØ­Û Ù†Ú¾ÛŒÚº ملا" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Ú¾Ù… معذرت Ø®ÙˆØ§Û Ú¾ÛŒÚºØŒ Ù…Ø·Ù„ÙˆØ¨Û ØµÙØ­Û Ù†Ú¾ÛŒÚº مل سکا۔" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "گھر" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "سرور Ú©ÛŒ خرابی" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "سرور Ú©ÛŒ خرابی (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "سرور Ú©ÛŒ خرابی (500)" - -#: 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 "" -"کوئی خرابی Ú¾Û’Û” اس Ú©Û’ بارے میں سائٹ Ú©Û’ منتظم Ú©Ùˆ Ø¨Ø°Ø±ÛŒØ¹Û Ø¨Ø±Ù‚ÛŒ خط Ø§Ù“Ú¯Ø§Û Ú©Ø± دیا " -"جائے گا۔ اور عنقریب ÛŒÛ Ø¯Ø±Ø³Øª Ú¾Ùˆ جائے گی۔ آپ Ú©Û’ تعاون کا شکریÛÛ”" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "منتخب Ø´Ø¯Û Ú©Ø§Ø±ÙˆØ§Ø¦ÛŒØ§Úº چلائیں" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "جاؤ" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "تمام صÙحات میں سے اشیاء منتخب کرنے Ú©Û’ لئے ÛŒÛاں Ú©Ù„Ú© کریں۔" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "تمام %(total_count)s %(module_name)s منتخب کریں" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "انتخاب صا٠کریں" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "خوش آمدید،" - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "طریق استعمال" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Ù„Ùظ اجازت تبدیل کریں" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "باÛر جائیں" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "منتظم برائے جینگو سائٹ" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Ø§Ù†ØªØ¸Ø§Ù…ÛŒÛ Ø¨Ø±Ø§Ø¦Û’ جینگو سائٹ" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "اضاÙÛ" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "تاریخ نامÛ" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "سائٹ پر Ù…Ø´Ø§Ú¾Ø¯Û Ú©Ø±ÛŒÚº" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Ø¨Ø±Ø§Û Ú©Ø±Ù… نیچے غلطی درست کریں۔" -msgstr[1] "Ø¨Ø±Ø§Û Ú©Ø±Ù… نیچے غلطیاں درست کریں۔" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "%(name)s کا اضاÙÛ Ú©Ø±ÛŒÚº" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "چھانٹیں" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "مٹائیں" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s' Ú©Ùˆ مٹانے Ú©Û’ نتیجے میں Ù…Ø¹ØªÙ„Ù‚Û Ø§Ø´ÛŒØ§Ø¡ مٹ " -"سکتی ھیں، مگر آپ Ú©Û’ کھاتے Ú©Ùˆ اشیاء Ú©ÛŒ Ù…Ù†Ø¯Ø±Ø¬Û Ø°ÛŒÙ„ اقسام مٹانے کا حق حاصل نھیں " -"Ú¾Û’Û”" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"%(object_name)s '%(escaped_object)s' Ú©Ùˆ مٹانے Ú©Û’ لئے Ù…Ù†Ø¯Ø±Ø¬Û Ø°ÛŒÙ„ محÙوظ Ù…ØªØ¹Ù„Ù‚Û " -"اشیاء Ú©Ùˆ مٹانے Ú©ÛŒ ضرورت Ù¾Ú‘ سکتی Ú¾Û’Û”" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"واقعی آپ %(object_name)s \"%(escaped_object)s\" Ú©Ùˆ مٹانا چاÛتے ھیں۔ Ù…Ù†Ø¯Ø±Ø¬Û " -"ذیل تمام Ù…ØªØ¹Ù„Ù‚Û Ø§Ø¬Ø²Ø§Ø¡ مٹ جائیں Ú¯Û’Û”" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "ھاں، مجھے یقین Ú¾Û’" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "متعدد اشیاء مٹائیں" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"منتخب Ø´Ø¯Û %(objects_name)s Ú©Ùˆ مٹانے Ú©Û’ نتیجے میں Ù…ØªØ¹Ù„Ù‚Û Ø§Ø´ÛŒØ§Ø¡ مٹ سکتی ھیں، " -"لیکن آپ Ú©Û’ کھاتے Ú©Ùˆ اشیاء Ú©ÛŒ Ù…Ù†Ø¯Ø±Ø¬Û Ø°ÛŒÙ„ اقسام Ú©Ùˆ مٹانے کا حق حاصل نھیں Ú¾Û’Û”" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"منتخب Ø´Ø¯Û %(objects_name)s Ú©Ùˆ مٹانے Ú©Û’ لئے Ù…Ù†Ø¯Ø±Ø¬Û Ø°ÛŒÙ„ محÙوظ Ø´Ø¯Û Ø§Ø´ÛŒØ§Ø¡ Ú©Ùˆ " -"مٹانے Ú©ÛŒ ضرورت Ù¾Ú‘ سکتی Ú¾Û’Û”" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"واقعی آپ منتخب Ø´Ø¯Û %(objects_name)s مٹانا چاھتے ھیں؟ Ù…Ù†Ø¯Ø±Ø¬Û Ø°ÛŒÙ„ اور ان سے " -"Ù…ØªØ¹Ù„Ù‚Û ØªÙ…Ø§Ù… اشیاء حذ٠ھو جائیں گی۔" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "از %(filter_title)s" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "%(name)s ایپلیکیشن میں دستیاب ماڈلز" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "تدوین" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "آپ Ú©Ùˆ کوئی چیز مدوّن کرنے کا حق نھیں Ú¾Û’Û”" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Ø­Ø§Ù„ÛŒÛ Ú©Ø§Ø±ÙˆØ§Ø¦ÛŒØ§Úº" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "میری کاروائیاں" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Ú©Ú†Ú¾ دستیاب نھیں" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "نامعلوم مواد" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"آپ Ú©ÛŒ ڈیٹا بیس Ú©ÛŒ تنصیب میں کوئی چیز خراب Ú¾Û’Û” یقین کر لیں Ú©Û Ù…ÙˆØ²ÙˆÙ† ڈیٹا بیس " -"ٹیبل بنائے گئے تھے، اور یقین کر لیں Ú©Û ÚˆÛŒÙ¹ بیس مناسب صار٠کے Ù¾Ú‘Ú¾Û’ جانے Ú©Û’ " -"قابل Ú¾Û’Û”" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "نام صاÙ:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Ù„Ùظ اجازت:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "تاریخ/وقت" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "صارÙ" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "کاروائی" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"اس Ø´Û’ کا تبدیلی کا تاریخ Ù†Ø§Ù…Û Ù†Ú¾ÛŒÚº Ú¾Û’Û” اس کا غالباً Ø¨Ø°Ø±ÛŒØ¹Û Ø§Ø³ منتظم سائٹ Ú©Û’ " -"اضاÙÛ Ù†Ú¾ÛŒÚº کیا گیا۔" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "تمام دکھائیں" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "محÙوظ کریں" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "تلاش کریں" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s نتیجÛ" -msgstr[1] "%(counter)s نتائج" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "Ú©Ù„ %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "بطور نیا محÙوظ کریں" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "محÙوظ کریں اور مزید اضاÙÛ Ú©Ø±ÛŒÚº" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "محÙوظ کریں اور تدوین جاری رکھیں" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Ù¾ÛÙ„Û’ نام صار٠اور Ù„Ùظ اجازت درج کریں۔ پھر آپ مزید صار٠کے حقوق مدوّن کرنے Ú©Û’ " -"قابل Ú¾ÙˆÚº Ú¯Û’Û”" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "نام صار٠اور Ù„Ùظ اجازت درج کریں۔" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "صار٠%(username)s Ú©Û’ لئے نیا Ù„Ùظ اجازت درج کریں۔" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Ù„Ùظ اجازت" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Ù„Ùظ اجازت (دوبارÛ)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "توثیق Ú©Û’ لئے ویسا ÛÛŒ Ù„Ùظ اجازت درج کریں جیسا اوپر کیا۔" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "دوسرا %(verbose_name)s درج کریں" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "خارج کریں" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "مٹاؤں؟" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "ویب سائٹ پر آج Ú©Ú†Ú¾ معیاری وقت خرچ کرنے Ú©Û’ لئے شکریÛÛ”" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Ø¯ÙˆØ¨Ø§Ø±Û Ø§Ù†Ø¯Ø± جائیں" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Ù„Ùظ اجازت Ú©ÛŒ تبدیلی" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Ù„Ùظ اجازت Ú©ÛŒ تبدیلی کامیابی سے ھوگئی" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "آپ کا Ù„Ùظ اجازت تبدیل کر دیا گیا تھا۔" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"Ø¨Ø±Ø§Û Ú©Ø±Ù… سیکیورٹی Ú©ÛŒ خاطر اپنا پرانا Ù„Ùظ اجازت درج کریں اور پھر اپنا نیا Ù„Ùظ " -"اجازت دو Ù…Ø±ØªØ¨Û Ø¯Ø±Ø¬ کریں ØªØ§Ú©Û Ú¾Ù… توثیق کر سکیں Ú©Û Ø§Ù“Ù¾ Ù†Û’ اسے درست درج کیا Ú¾Û’Û”" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "پرانا Ù„Ùظ اجازت" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "نیا Ù„Ùظ اجازت" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "میرا Ù„Ùظ تبدیل کریں" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Ù„Ùظ اجازت Ú©ÛŒ Ø¯ÙˆØ¨Ø§Ø±Û ØªØ±ØªÛŒØ¨" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Ù„Ùظ اجازت Ú©ÛŒ Ø¯ÙˆØ¨Ø§Ø±Û ØªØ±ØªÛŒØ¨ مکمل Ú¾Ùˆ گئی" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "" -"آپ کا Ù„Ùظ اجازت مرتب کر دیا گیا Ú¾Û’Û” آپ Ú©Ùˆ آگے بڑھنے اور اندر جانے Ú©ÛŒ اجازت " -"Ú¾Û’Û”" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Ù„Ùظ اجازت Ø¯ÙˆØ¨Ø§Ø±Û Ù…Ø±ØªØ¨ کرنے Ú©ÛŒ توثیق" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "نیا Ù„Ùظ اجازت درج کریں" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Ø¨Ø±Ø§Û Ù…Ú¾Ø±Ø¨Ø§Ù†ÛŒ اپنا نیا Ù„Ùظ اجازت دو Ù…Ø±ØªØ¨Û Ø¯Ø±Ø¬ کریں ØªØ§Ú©Û ØªØ§Ú©Û Ú¾Ù… تصدیق کر سکیں " -"Ú©Û ØªÙ… Ù†Û’ اسے درست درج کیا Ú¾Û’Û”" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "نیا Ù„Ùظ اجازت:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Ù„Ùظ اجازت Ú©ÛŒ توثیق:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Ù„Ùظ اجازت Ú©ÛŒ Ø¯ÙˆØ¨Ø§Ø±Û ØªØ±ØªÛŒØ¨ ناکام Ú¾Ùˆ گئی۔" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Ù„Ùظ اجازت Ø¯ÙˆØ¨Ø§Ø±Û Ù…Ø±ØªØ¨ کرنے کا Ø±Ø§Ø¨Ø·Û (لنک) غلط تھا، غالباً ÛŒÛ Ù¾ÛÙ„Û’ Ú¾ÛŒ استعمال " -"کیا چکا تھا۔ Ø¨Ø±Ø§Û Ù…Ú¾Ø±Ø¨Ø§Ù†ÛŒ نیا Ù„Ùظ اجازت مرتب کرنے Ú©ÛŒ درخواست کریں۔" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Ù„Ùظ اجازت Ú©ÛŒ Ø¯ÙˆØ¨Ø§Ø±Û ØªØ±ØªÛŒØ¨ کامیاب Ú¾Ùˆ گئی۔" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Ú¾Ù… Ù†Û’ اس پتے پر جو آپ Ù†Û’ پیش کیا Ú¾Û’ Ù„Ùظ اجازت مرتب کرنے Ú©ÛŒ ھدایات Ø¨Ø°Ø±ÛŒØ¹Û " -"برقی خط بھیج دی ھیں۔ آپ Ú©Ùˆ عنقریب موصول Ú¾Ùˆ جائیں گی۔" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Ø¨Ø±Ø§Û Ù…Ú¾Ø±Ø¨Ø§Ù†ÛŒ Ù…Ù†Ø¯Ø±Ø¬Û Ø°ÛŒÙ„ صÙØ­Û’ پر جائیں اور نیا Ù„Ùظ اجازت پسند کریں:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "نام صارÙØŒ بھول جانے Ú©ÛŒ صورت میں:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "ھماری سائٹ استعمال کرنے Ú©Û’ لئے شکریÛ" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s Ú©ÛŒ ٹیم" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"اپنا Ù„Ùظ اجازت بھول گئے ھیں؟ نیچے اپنا برقی خط کا Ù¾ØªÛ Ø¯Ø±Ø¬ کریں Ú¾Ù… نیا Ù„Ùظ " -"اجازت مرتب کرنے Ú©ÛŒ ھدایات Ø¨Ø°Ø±ÛŒØ¹Û Ø¨Ø±Ù‚ÛŒ خط بھیج دیں Ú¯Û’Û”" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "برقی خط کا پتÛ:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "میرا Ù„Ùظ اجازت Ø¯ÙˆØ¨Ø§Ø±Û Ù…Ø±ØªØ¨ کریں" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "تمام تاریخیں" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "%s منتخب کریں" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "تبدیل کرنے Ú©Û’ لئے %s منتخب کریں" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo deleted file mode 100644 index f878937f2..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po deleted file mode 100644 index 363abb16c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/ur/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,152 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: Mansoorulhaq \n" -"Language-Team: Urdu \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "دستیاب %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "سب منتخب کریں" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "اضاÙÛ Ú©Ø±ÛŒÚº" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "خارج کریں" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "منتخب Ø´Ø¯Û %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "اپنا انتخاب چنیں اور Ú©Ù„Ú© کریں" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "تمام صا٠کریں" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(cnt)s میں سے %(sel)s منتخب کیا گیا" -msgstr[1] "%(cnt)s میں سے %(sel)s منتخب کیے گئے" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"آپ Ú©Û’ پاس ذاتی قابل تدوین خانوں میں غیر محÙوظ تبدیلیاں موجود ھیں۔ اگر آپ " -"کوئی کاروائی کریں Ú¯Û’ تو آپ Ú©ÛŒ غیر محÙوظ تبدیلیاں ضائع Ú¾Ùˆ جائیں گی۔" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"آپ Ù†Û’ ایک کاروائی منتخب Ú©ÛŒ Ú¾Û’ لیکن ابھی تک آپ Ù†Û’ ذاتی خانوں میں اپنی " -"تبدیلیاں محÙوظ Ù†Ûیں Ú©ÛŒ Ûیں Ø¨Ø±Ø§Û Ù…Ú¾Ø±Ø¨Ø§Ù†ÛŒ محÙوط کرنے Ú©Û’ لئے OK پر Ú©Ù„Ú© کریں۔ آپ " -"کاوائی Ø¯ÙˆØ¨Ø§Ø±Û Ú†Ù„Ø§Ù†Û’ Ú©ÛŒ ضرورت ھوگی۔" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"آپ Ù†Û’ ایک کاروائی منتخب Ú©ÛŒ Ú¾Û’ØŒ اور آپ Ù†Û’ ذاتی خانوں میں کوئی تبدیلی Ù†Ûیں Ú©ÛŒ " -"غالباً آپ 'جاؤ' بٹن تلاش کر رھے ھیں بجائے 'مخÙوظ کریں' بٹن Ú©Û’Û”" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "جنوری Ùروری مارچ اپریل مئی جون جولائی اگست ستمبر اکتوبر نومبر دسمبر" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "ا س Ù… ب ج Ø¬Ù…Ø¹Û Ú¾" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "دکھائیں" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "چھپائیں" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "اتوار سوموار منگل بدھ جمعرات Ø¬Ù…Ø¹Û Ú¾ÙتÛ" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "اب" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Ú¯Ú¾Ú‘ÛŒ" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "وقت منتخب کریں" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "نص٠رات" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 ص" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "دوپھر" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "منسوخ کریں" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "آج" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "تقویم" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Ú¯Ø²Ø´ØªÛ Ú©Ù„" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Ø§Ù“Ø¦Ù†Ø¯Û Ú©Ù„" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo deleted file mode 100644 index 17510a2b8..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.po deleted file mode 100644 index 4bcd5e26b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/django.po +++ /dev/null @@ -1,802 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-16 04:22+0000\n" -"Last-Translator: autalpha \n" -"Language-Team: Vietnamese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "Äã xóa thành công %(count)d %(items)s ." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "Không thể xóa %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "Bạn có chắc chắn không?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "Xóa các %(verbose_name_plural)s đã chá»n" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                                                  By %s:

                                                                                                                                                                                                                                                  \n" -"
                                                                                                                                                                                                                                                    \n" -msgstr "" -"

                                                                                                                                                                                                                                                    Bởi %s:

                                                                                                                                                                                                                                                    \n" -"
                                                                                                                                                                                                                                                      \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "Tất cả" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "Có" - -#: filterspecs.py:139 -msgid "No" -msgstr "Không" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "ChÆ°a xác định" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "Bất kì ngày nào" - -#: filterspecs.py:197 -msgid "Today" -msgstr "Hôm nay" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "7 ngày trÆ°á»›c" - -#: filterspecs.py:203 -msgid "This month" -msgstr "Tháng này" - -#: filterspecs.py:205 -msgid "This year" -msgstr "Năm nay" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "Hãy nhập đúng tên đăng nhập và mật khẩu. Chú ý chữ hoa, chữ thÆ°á»ng." - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "Hãy đăng nhập lại vì giao dịch của bạn đã hết hiệu lá»±c" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "Äịa chỉ email của bạn không phải là tên đăng nhập. Hãy thá»­ '%s'." - -#: helpers.py:19 -msgid "Action:" -msgstr "Hoạt Ä‘á»™ng:" - -#: models.py:19 -msgid "action time" -msgstr "Thá»i gian tác Ä‘á»™ng" - -#: models.py:22 -msgid "object id" -msgstr "Mã đối tượng" - -#: models.py:23 -msgid "object repr" -msgstr "đối tượng repr" - -#: models.py:24 -msgid "action flag" -msgstr "hiệu hành Ä‘á»™ng" - -#: models.py:25 -msgid "change message" -msgstr "thay đổi tin nhắn" - -#: models.py:28 -msgid "log entry" -msgstr "đăng nhập" - -#: models.py:29 -msgid "log entries" -msgstr "mục đăng nhập" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "Không" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s đã được thay đổi." - -#: options.py:627 options.py:637 -msgid "and" -msgstr "và" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" đã được thêm vào." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(list)s for %(name)s \"%(object)s\" đã được thay đổi." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" đã bị xóa." - -#: options.py:645 -msgid "No fields changed." -msgstr "Không có trÆ°á»ng nào thay đổi" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" được thêm vào thành công." - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "Bạn có thể sá»­a lại dÆ°á»›i đây." - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "Bạn có thể thêm vào %s dÆ°á»›i đây." - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" đã được thay đổi thành công." - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "" -"%(name)s \"%(obj)s\" đã được thêm vào thành công. Bạn có thể sá»­a lại dÆ°á»›i " -"đây." - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "" -"Mục tiêu phải được chá»n má»›i có thể thá»±c hiện hành Ä‘á»™ng trên chúng. Không có " -"mục tiêu nào đã được thay đổi." - -#: options.py:846 -msgid "No action selected." -msgstr "Không có hoạt Ä‘á»™ng nào được lá»±a chá»n." - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "Thêm %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr " đối tượng %(name)s vá»›i khóa chính %(key)r không tồn tại." - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "Thay đổi %s" - -#: options.py:1065 -msgid "Database error" -msgstr "CÆ¡ sở dữ liệu bị lá»—i" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] " %(count)s %(name)s đã được thay đổi thành công." - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "Tất cả %(total_count)s đã được chá»n" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "0 của %(cnt)s được chá»n" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" đã được xóa thành công." - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "Lịch sá»­ thay đổi: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "Äăng nhập" - -#: sites.py:375 -msgid "Site administration" -msgstr "Site quản trị hệ thống." - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s quản trị" - -#: widgets.py:75 -msgid "Date:" -msgstr "Ngày:" - -#: widgets.py:75 -msgid "Time:" -msgstr "Giá»:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "Tìm" - -#: widgets.py:246 -msgid "Add Another" -msgstr "Thêm vào" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "Không tìm thấy trang nào" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "Xin lá»—i bạn! Trang mà bạn yêu cầu không tìm thấy." - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "Trang chủ" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "Lá»—i máy chủ" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "Lá»—i máy chủ (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "Lá»—i máy chủ (500)" - -#: 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 "" -"Xảy ra lá»—i. Lá»—i này sẽ được gá»­i tá»›i quản trị hệ thống qua email và sẽ sá»›m " -"được sá»­a chữa. Xin cảm Æ¡n vá» sá»±u kiên nhẫn của bạn." - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "Bắt đầu hành Ä‘á»™ng lá»±a chá»n" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "Äi đến" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "Click vào đây để lá»±a chá»n các đối tượng trên tất cả các trang" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "Hãy chá»n tất cả %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "Xóa lá»±a chá»n" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "Chào mừng bạn," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "Tài liệu" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "Thay đổi mật khẩu" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "Thoát" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Trang web admin Django" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Trang quản trị cho Django" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "Thêm vào" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "Bản ghi nhá»›" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "Xem trên trang web" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "Hãy sá»­a lá»—i sai dÆ°á»›i đây" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "Thêm vào %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "Bá»™ lá»c" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "Xóa" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"Xóa %(object_name)s '%(escaped_object)s' sẽ làm mất những dữ liệu có liên " -"quan. Tài khoản của bạn không được cấp quyển xóa những dữ liệu Ä‘i kèm theo." - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"Xóa các %(object_name)s ' %(escaped_object)s ' sẽ bắt buá»™c xóa các đối " -"tượng được bảo vệ sau đây:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"Bạn có chắc là muốn xóa %(object_name)s \"%(escaped_object)s\"?Tất cả những " -"dữ liệu Ä‘i kèm dÆ°á»›i đây cÅ©ng sẽ bị mất:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "Có, tôi chắc chắn." - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "Xóa nhiá»u đối tượng" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"Xóa các %(objects_name)s sẽ bắt buá»™c xóa các đối tượng liên quan, nhÆ°ng tài " -"khoản của bạn không có quyá»n xóa các loại đối tượng sau đây:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "" -"Xóa các %(objects_name)s sẽ bắt buá»™c xóa các đối tượng đã được bảo vệ sau " -"đây:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"Bạn chắc chắn muốn xóa những lá»±a chá»n %(objects_name)s? Tất cả những đối " -"tượng sau và những đối tượng liên quan sẽ được xóa:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr "Bởi %(filter_title)s " - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "Models đã có trong ứng dụng %(name)s." - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "Thay đổi" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "Bạn không được cấp quyá»n chỉnh sá»­a bất cứ cái gì." - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "Các hoạt Ä‘á»™ng gần đây" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "Hoạt Ä‘á»™ng của tôi" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "Không có sẵn" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "Không biết ná»™i dung" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"Má»™t vài lá»—i vá»›i cÆ¡ sở dữ liệu cài đặt của bạn. Hãy chắc chắn bảng biểu dữ " -"liệu được tạo phù hợp và dữ liệu có thể được Ä‘á»c bởi những ngÆ°á»i sá»­ dụng phù " -"hợp." - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "Tên đăng nhập:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "Mật khẩu:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "Ngày/giá»" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "NgÆ°á»i dùng" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "Hành Ä‘á»™ng" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "" -"Äối tượng này không có má»™t lịch sá»­ thay đổi. Nó có lẽ đã không được thêm vào " -"qua trang web admin." - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "Hiện tất cả" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "LÆ°u lại" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "Tìm kiếm" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s kết quả" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "tổng số %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "LÆ°u má»›i" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "LÆ°u và thêm má»›i" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "LÆ°u và tiếp tục chỉnh sá»­a" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "" -"Äầu tiên, Ä‘iá»n tên đăng nhập và mật khẩu. Sau đó bạn má»›i có thể chỉnh sá»­a " -"nhiá»u hÆ¡n lá»±a chá»n của ngÆ°á»i dùng." - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "Äiá»n tên đăng nhập và mật khẩu." - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "Hãy nhập mật khẩu má»›i cho ngÆ°á»i sá»­ dụng %(username)s." - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "Mật khẩu" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "Nhập lại mật khẩu" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "Nhập dãy mật mã trên để xác minh lại" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "Thêm má»™t %(verbose_name)s " - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "Gỡ bá»" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "Bạn muốn xóa?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "Cảm Æ¡n bạn đã dành thá»i gian vá»›i website này" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "Äăng nhập lại" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "Thay đổi mật khẩu" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "Mật khẩu được thay đổi thành công" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "Mật khẩu của bạn đã được thay đổi" - -#: templates/registration/password_change_form.html:22 -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 "" -"Hãy nhập lại mật khẩu cÅ© và sau đó nhập mật khẩu má»›i hai lần để chúng tôi có " -"thể kiểm tra lại xem bạn đã gõ chính xác hay chÆ°a." - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "Mật khẩu cÅ©" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "Mật khẩu má»›i" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "Thay đổi mật khẩu" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "Lập lại mật khẩu" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "Hoàn thành việc lập lại mật khẩu" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "Mật khẩu của bạn đã được lập lại. Bạn hãy thá»­ đăng nhập." - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "Xác nhận việc lập lại mật khẩu" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "Nhập mật khẩu má»›i" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "" -"Hãy nhập mật khẩu má»›i hai lần để chúng tôi có thể kiểm tra xem bạn đã gõ " -"chính xác chÆ°a" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "Mật khẩu má»›i" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "Nhập lại mật khẩu:" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "Lập lại mật khẩu không thành công" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "" -"Liên kết đặt lại mật khẩu không hợp lệ, có thể vì nó đã được sá»­ dụng. Xin " -"vui lòng yêu cầu đặt lại mật khẩu má»›i." - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "Lấy lại mật khẩu thành công" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"Chúng tôi vừa gá»­i cho bạn những hÆ°á»›ng dẫn để bạn lập lại mất khẩu tá»›i địa " -"chỉ email bạn đã đăng kí. Bạn sẽ nhận được nó trong chốc lát." - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" -"Bạn nhận được email này bởi vì bạn đã yêu cầu lập lại mật khẩu cho tài khoản " -"của bạn tại %(site_name)s" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "Hãy vào Ä‘Æ°á»ng link dÆ°á»›i đây và chá»n má»™t mật khẩu má»›i" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "Tên đăng nhập của bạn, trÆ°á»ng hợp bạn quên nó:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "Cảm Æ¡n bạn đã sá»­ dụng website của chúng tôi!" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "Äá»™i của %(site_name)s" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"Quên mật khẩu? Nhập địa chỉ email của bạn vào bên dÆ°á»›i, chúng tôi sẽ gá»­i " -"những hÆ°á»›ng dẫn để làm lại mật khẩu má»›i." - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "Äịa chỉ email:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "Làm lại mật khẩu" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "Tất cả các ngày" - -#: views/main.py:27 -msgid "(None)" -msgstr "(Không)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "Chá»n %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "Chá»n %s để thay đổi" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 1f533d75e..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po deleted file mode 100644 index a806c0a5c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/vi/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,153 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-10 16:36+0000\n" -"Last-Translator: greenfire \n" -"Language-Team: Vietnamese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "Có sẵn %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "Lá»c" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "Chá»n tất cả" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "Thêm" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "Xóa" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "Chá»n %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "" - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "Xóa tất cả" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] " %(sel)s của %(cnt)s được chá»n" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"Bạn chÆ°a lÆ°u những trÆ°á»ng đã chỉnh sá»­a. Nếu bạn chá»n hành Ä‘á»™ng này, những " -"chỉnh sá»­a chÆ°a được lÆ°u sẽ bị mất." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"Bạn đã lá»±a chá»n má»™t hành Ä‘á»™ng, nhÆ°ng bạn không lÆ°u thay đổi của bạn đến các " -"lÄ©nh vá»±c cá nhân được nêu ra. Xin vui lòng click OK để lÆ°u lại. Bạn sẽ cần " -"phải chạy lại các hành Ä‘á»™ng." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"Bạn đã lá»±a chá»n má»™t hành Ä‘á»™ng, và bạn đã không thá»±c hiện bất kỳ thay đổi nào " -"trên các trÆ°á»ng. Có lẽ bạn Ä‘ang tìm kiếm nút bấm Go thay vì nút bấm Save." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "" -"Tháng má»™t Tháng hai Tháng ba Tháng tÆ° Tháng năm Tháng sáu Tháng bảy Tháng " -"tám Tháng chín Tháng mÆ°á»i Tháng mÆ°á»i má»™t Tháng mÆ°á»i hai" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "S M T W T F S" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "Hiện ra" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "Dấu Ä‘i" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "Chủ nhật Thứ hai Thứ ba Thứ tÆ° Thứ năm Thứ sáu Thứ bảy" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "Bây giá»" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "Äồng hồ" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "Chá»n giá»" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "Ná»­a đêm" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "6 giá» sáng" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "Buổi trÆ°a" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "Hủy bá»" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "Hôm nay" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "Lịch" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "Hôm qua" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "Ngày mai" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/django.mo deleted file mode 100644 index f8094d88e..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/django.po deleted file mode 100644 index 85f482c6e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/django.po +++ /dev/null @@ -1,784 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-08 14:09+0000\n" -"Last-Translator: slene \n" -"Language-Team: Chinese (China) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "æˆåŠŸåˆ é™¤äº† %(count)d 个 %(items)s" - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "无法删除 %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "你确定å—?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "删除所选的 %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                                                      By %s:

                                                                                                                                                                                                                                                      \n" -"
                                                                                                                                                                                                                                                        \n" -msgstr "" -"

                                                                                                                                                                                                                                                        以 %s:

                                                                                                                                                                                                                                                        \n" -"
                                                                                                                                                                                                                                                          \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "全部" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "是" - -#: filterspecs.py:139 -msgid "No" -msgstr "å¦" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "未知" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "ä»»æ„日期" - -#: filterspecs.py:197 -msgid "Today" -msgstr "今天" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "过去7天" - -#: filterspecs.py:203 -msgid "This month" -msgstr "本月" - -#: filterspecs.py:205 -msgid "This year" -msgstr "今年" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "请输入正确的用户å和密ç ã€‚请注æ„两者都是大å°å†™æ•æ„Ÿçš„。" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "请é‡æ–°ç™»å½•ï¼Œå› ä¸ºä½ çš„会è¯å·²ç»è¿‡æœŸã€‚" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "ä½ çš„ e-mail 地å€ä¸æ˜¯ä½ çš„用户åã€‚æ¢ '%s' 试试。" - -#: helpers.py:19 -msgid "Action:" -msgstr "动作" - -#: models.py:19 -msgid "action time" -msgstr "动作时间" - -#: models.py:22 -msgid "object id" -msgstr "对象id" - -#: models.py:23 -msgid "object repr" -msgstr "对象表示" - -#: models.py:24 -msgid "action flag" -msgstr "动作标志" - -#: models.py:25 -msgid "change message" -msgstr "修改消æ¯" - -#: models.py:28 -msgid "log entry" -msgstr "日志记录" - -#: models.py:29 -msgid "log entries" -msgstr "日志记录" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "æ— " - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "已修改 %s 。" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "å’Œ" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "已添加 %(name)s \"%(object)s\"." - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "å·²å˜æ›´ %(list)s for %(name)s \"%(object)s\"." - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "已删除 %(name)s \"%(object)s\"." - -#: options.py:645 -msgid "No fields changed." -msgstr "没有字段被修改。" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" 添加æˆåŠŸã€‚" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "ä½ å¯ä»¥åœ¨ä¸‹é¢å†æ¬¡ç¼–辑它。" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "ä½ å¯ä»¥åœ¨ä¸‹é¢å¢žåŠ å¦ä¸€ä¸ª %s 。" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" 修改æˆåŠŸã€‚" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" 添加æˆåŠŸã€‚ä½ å¯ä»¥åœ¨ä¸‹é¢å†æ¬¡ç¼–辑它。" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "æ¡ç›®å¿…须选中以对其进行æ“作。没有任何æ¡ç›®è¢«æ›´æ”¹ã€‚" - -#: options.py:846 -msgid "No action selected." -msgstr "未选择动作" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "增加 %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "具有主键 %(key)r 的对象 %(name)s ä¸å­˜åœ¨ã€‚" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "修改 %s" - -#: options.py:1065 -msgid "Database error" -msgstr "æ•°æ®åº“错误" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "总共 %(count)s 个 %(name)s å˜æ›´æˆåŠŸã€‚" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "选中了 %(total_count)s 个" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "%(cnt)s 个中 0 个被选" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" 删除æˆåŠŸã€‚" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "å˜æ›´åŽ†å²ï¼š %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "登录" - -#: sites.py:375 -msgid "Site administration" -msgstr "站点管ç†" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s 管ç†" - -#: widgets.py:75 -msgid "Date:" -msgstr "日期:" - -#: widgets.py:75 -msgid "Time:" -msgstr "时间:" - -#: widgets.py:140 -msgid "Lookup" -msgstr "查询" - -#: widgets.py:246 -msgid "Add Another" -msgstr "添加å¦ä¸€ä¸ª" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "页é¢æ²¡æœ‰æ‰¾åˆ°" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "很报歉,请求页é¢æ— æ³•æ‰¾åˆ°ã€‚" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "首页" - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "æœåŠ¡å™¨é”™è¯¯" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "æœåŠ¡å™¨é”™è¯¯(500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "æœåŠ¡å™¨é”™è¯¯ (500)" - -#: 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 "" -"å‘生了一个错误。系统已将错误通过电å­é‚®ä»¶æŠ¥å‘Šç»™äº†ç«™ç‚¹ç®¡ç†å‘˜ï¼Œç›¸ä¿¡é—®é¢˜åº”该会很" -"快得到解决。感谢您的è€å¿ƒã€‚" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "è¿è¡Œé€‰ä¸­çš„动作" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "执行" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "点击此处选择所有页é¢ä¸­åŒ…å«çš„对象。" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "选中所有的 %(total_count)s 个 %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "清除选中" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "欢迎," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "文档" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "修改密ç " - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "注销" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django 站点管ç†å‘˜" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django 管ç†" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "增加" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "历å²" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "在站点上查看" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "请修正下é¢çš„错误。" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "增加 %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "过滤器" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "删除" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"删除 %(object_name)s '%(escaped_object)s' 会导致删除相关的对象,但你的å¸å·æ— " -"æƒåˆ é™¤ä¸‹åˆ—类型的对象:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"è¦åˆ é™¤ %(object_name)s '%(escaped_object)s', å°†è¦æ±‚删除以下å—ä¿æŠ¤çš„相关对象:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"你确认想è¦åˆ é™¤ %(object_name)s \"%(escaped_object)s\"? 下列所有相关的项目都" -"将被删除:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "是的,我确定" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "删除多个对象" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"è¦åˆ é™¤æ‰€é€‰çš„ %(objects_name)s 结果会删除相关对象, 但你的账户没有æƒé™åˆ é™¤è¿™ç±»" -"对象:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "è¦åˆ é™¤æ‰€é€‰çš„ %(objects_name)s, å°†è¦æ±‚删除以下å—ä¿æŠ¤çš„相关对象:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"请确认è¦åˆ é™¤é€‰ä¸­çš„ %(objects_name)s å—?以下所有对象和余它们相关的æ¡ç›®å°†éƒ½ä¼š" -"被删除:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " 以 %(filter_title)s" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "模型在 %(name)s 应用中å¯ç”¨ã€‚" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "修改" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "ä½ æ— æƒä¿®æ”¹ä»»ä½•ä¸œè¥¿ã€‚" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "最近动作" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "我的动作" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "æ— å¯ç”¨çš„" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "未知内容" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"ä½ çš„æ•°æ®åº“安装有误。确ä¿å·²ç»åˆ›å»ºäº†ç›¸åº”çš„æ•°æ®åº“表,并确ä¿æ•°æ®åº“å¯è¢«ç›¸å…³çš„用户" -"读å–。" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "用户å:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "密ç ï¼š" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "日期/时间" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "用户" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "动作" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "该对象没有å˜æ›´åŽ†å²è®°å½•ã€‚å¯èƒ½ä»Žæœªé€šè¿‡è¿™ä¸ªç®¡ç†ç«™ç‚¹æ·»åŠ ã€‚" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "显示全部" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "ä¿å­˜" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "æœç´¢" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s æ¡ç»“果。" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "总共 %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "ä¿å­˜ä¸ºæ–°çš„" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "ä¿å­˜å¹¶å¢žåŠ å¦ä¸€ä¸ª" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "ä¿å­˜å¹¶ç»§ç»­ç¼–辑" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "首先,输入一个用户å和密ç ã€‚然åŽï¼Œä½ å°±å¯ä»¥ç¼–辑更多的用户选项。" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "输入用户åå’Œ" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "为用户 %(username)s 输入一个新的密ç ã€‚" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "密ç " - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "密ç (é‡å¤)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "为了校验,输入与上é¢ç›¸åŒçš„密ç ã€‚" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "添加å¦ä¸€ä¸ª %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "删除" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "删除?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "感谢您今天在本站花费了一些å®è´µæ—¶é—´ã€‚" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "é‡æ–°ç™»å½•" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "密ç ä¿®æ”¹" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "密ç ä¿®æ”¹æˆåŠŸ" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "你的密ç å·²ä¿®æ”¹ã€‚" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"请输入你的旧密ç ï¼Œä¸ºäº†å®‰å…¨èµ·è§ï¼ŒæŽ¥ç€è¦è¾“入两é新密ç ï¼Œä»¥ä¾¿æˆ‘们校验你输入的是" -"å¦æ­£ç¡®ã€‚" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "旧密ç " - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "新密ç " - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "修改我的密ç " - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "密ç é‡è®¾" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "完æˆå¯†ç é‡è®¾" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "ä½ çš„å£ä»¤å·±ç»è®¾ç½®ã€‚现在你å¯ä»¥ç»§ç»­è¿›è¡Œç™»å½•ã€‚" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "密ç é‡è®¾ç¡®è®¤" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "输入新密ç " - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "请输入两é新密ç ï¼Œä»¥ä¾¿æˆ‘们校验你输入的是å¦æ­£ç¡®ã€‚" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "新密ç ï¼š" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "确认密ç ï¼š" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "密ç é‡è®¾å¤±è´¥" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "密ç é‡ç½®é“¾æŽ¥æ— æ•ˆï¼Œå¯èƒ½æ˜¯å› ä¸ºå®ƒå·²ä½¿ç”¨ã€‚å¯ä»¥è¯·æ±‚一次新的密ç é‡ç½®ã€‚" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "密ç é‡è®¾æˆåŠŸ" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"我们已ç»æŒ‰ä½ æ‰€æ交的电å­é‚®ç®±åœ°å€å‘é€äº†å¯†ç è®¾ç½®è¯´æ˜Žã€‚你应该很快就能收到这å°é‚®" -"件。" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "因为你è¦æ±‚é‡ç½® %(site_name)s 上的账户密ç , 所以收到了这å°é‚®ä»¶." - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "请访问该页é¢å¹¶é€‰æ‹©ä¸€ä¸ªæ–°å¯†ç ï¼š" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "你的用户å,如果已忘记的è¯ï¼š" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "感谢使用我们的站点ï¼" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s 团队" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"忘记了你的密ç ï¼Ÿè¯·åœ¨ä¸‹é¢è¾“入你的 e-mail 地å€ï¼Œæˆ‘们将把新密ç è®¾ç½®è¯´æ˜Žé€šè¿‡é‚®ä»¶" -"å‘é€ç»™ä½ ã€‚" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "E-mail 地å€ï¼š" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "é‡è®¾æˆ‘的密ç " - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "所有日期" - -#: views/main.py:27 -msgid "(None)" -msgstr "(None)" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "选择 %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "选择 %s æ¥ä¿®æ”¹" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/djangojs.mo deleted file mode 100644 index 607b08866..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/djangojs.po deleted file mode 100644 index 8ca7888db..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_CN/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-08 14:23+0000\n" -"Last-Translator: slene \n" -"Language-Team: Chinese (China) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "å¯ç”¨ %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "过滤" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "全选" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "增加" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "删除" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "选中的 %s" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "选择并点击 " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "清除全部" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "选中了 %(cnt)s 个中的 %(sel)s 个" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "" -"你尚未ä¿å­˜ä¸€ä¸ªå¯ç¼–辑æ ä½çš„å˜æ›´. 如果你进行别的动作, 未ä¿å­˜çš„å˜æ›´å°†ä¼šä¸¢å¤±." - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"你已选则执行一个动作, 但有一个å¯ç¼–辑æ ä½çš„å˜æ›´å°šæœªä¿å­˜. 请点选确定进行ä¿å­˜. " -"å†é‡æ–°æ‰§è¡Œè¯¥åŠ¨ä½œ." - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"你已选则执行一个动作, 但å¯ç¼–辑æ ä½æ²’有任何改å˜. 你应该å°è¯• '去' 按钮, 而ä¸æ˜¯ " -"'ä¿å­˜' 按钮." - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "一月 二月 三月 四月 五月 六月 七月 八月 ä¹æœˆ å月 å一月 å二月" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "æ—¥ 一 二 三 å›› 五 å…­" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "显示" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "éšè—" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "星期日 星期一 星期二 星期三 星期四 星期五 星期六" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "现在" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "时钟" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "选择一个时间" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "åˆå¤œ" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "上åˆ6点" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "æ­£åˆ" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "å–消" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "今天" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "日历" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "昨天" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "明天" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/django.mo deleted file mode 100644 index a7aabf9fa..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/django.po deleted file mode 100644 index dc337e1c1..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/django.po +++ /dev/null @@ -1,782 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:03+0100\n" -"PO-Revision-Date: 2011-03-04 18:44+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Chinese (Taiwan) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: actions.py:49 -#, python-format -msgid "Successfully deleted %(count)d %(items)s." -msgstr "æˆåŠŸçš„刪除了 %(count)d 個 %(items)s." - -#: actions.py:61 options.py:1219 -#, python-format -msgid "Cannot delete %(name)s" -msgstr "無法刪除 %(name)s" - -#: actions.py:63 options.py:1221 -msgid "Are you sure?" -msgstr "你確定嗎?" - -#: actions.py:85 -#, python-format -msgid "Delete selected %(verbose_name_plural)s" -msgstr "刪除所é¸çš„ %(verbose_name_plural)s" - -#: filterspecs.py:54 -#, python-format -msgid "" -"

                                                                                                                                                                                                                                                          By %s:

                                                                                                                                                                                                                                                          \n" -"
                                                                                                                                                                                                                                                            \n" -msgstr "" -"

                                                                                                                                                                                                                                                            以 %s:

                                                                                                                                                                                                                                                            \n" -"
                                                                                                                                                                                                                                                              \n" - -#: filterspecs.py:104 filterspecs.py:139 filterspecs.py:168 filterspecs.py:258 -msgid "All" -msgstr "全部" - -#: filterspecs.py:139 -msgid "Yes" -msgstr "是" - -#: filterspecs.py:139 -msgid "No" -msgstr "å¦" - -#: filterspecs.py:150 -msgid "Unknown" -msgstr "未知" - -#: filterspecs.py:196 -msgid "Any date" -msgstr "任何日期" - -#: filterspecs.py:197 -msgid "Today" -msgstr "今天" - -#: filterspecs.py:200 -msgid "Past 7 days" -msgstr "éŽåŽ» 7 天" - -#: filterspecs.py:203 -msgid "This month" -msgstr "本月" - -#: filterspecs.py:205 -msgid "This year" -msgstr "今年" - -#: forms.py:9 -msgid "" -"Please enter a correct username and password. Note that both fields are case-" -"sensitive." -msgstr "請輸入有效的使用者å稱與密碼。請注æ„兩個欄ä½éƒ½æœ‰åˆ†å¤§å°å¯«" - -#: forms.py:18 -msgid "Please log in again, because your session has expired." -msgstr "è«‹é‡æ–°ç™»å…¥, 因為你的 session å·²éŽæœŸã€‚" - -#: forms.py:37 -#, python-format -msgid "Your e-mail address is not your username. Try '%s' instead." -msgstr "ä½ çš„é›»å­éƒµä»¶åœ°å€ä¸æ˜¯ä½ çš„使用者å稱。試著改用 '%s'。" - -#: helpers.py:19 -msgid "Action:" -msgstr "動作:" - -#: models.py:19 -msgid "action time" -msgstr "動作時間" - -#: models.py:22 -msgid "object id" -msgstr "物件 id" - -#: models.py:23 -msgid "object repr" -msgstr "物件 repr" - -#: models.py:24 -msgid "action flag" -msgstr "動作旗標" - -#: models.py:25 -msgid "change message" -msgstr "變更訊æ¯" - -#: models.py:28 -msgid "log entry" -msgstr "紀錄項目" - -#: models.py:29 -msgid "log entries" -msgstr "紀錄項目" - -#: options.py:147 options.py:162 -msgid "None" -msgstr "None" - -#: options.py:627 -#, python-format -msgid "Changed %s." -msgstr "%s 已變更。" - -#: options.py:627 options.py:637 -msgid "and" -msgstr "å’Œ" - -#: options.py:632 -#, python-format -msgid "Added %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" 以新增。" - -#: options.py:636 -#, python-format -msgid "Changed %(list)s for %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" çš„ %(list)s 已變更。" - -#: options.py:641 -#, python-format -msgid "Deleted %(name)s \"%(object)s\"." -msgstr "%(name)s \"%(object)s\" 已刪除。" - -#: options.py:645 -msgid "No fields changed." -msgstr "沒有欄ä½è¢«è®Šæ›´ã€‚" - -#: options.py:717 -#, python-format -msgid "The %(name)s \"%(obj)s\" was added successfully." -msgstr "%(name)s \"%(obj)s\" å·²æˆåŠŸæ–°å¢žã€‚" - -#: options.py:721 options.py:761 -msgid "You may edit it again below." -msgstr "ä½ å¯ä»¥åœ¨ä¸‹é¢å†æ¬¡ç·¨è¼¯ã€‚" - -#: options.py:731 options.py:771 -#, python-format -msgid "You may add another %s below." -msgstr "ä½ å¯ä»¥åœ¨ä¸‹é¢æ–°å¢žå¦ä¸€å€‹ %s。" - -#: options.py:759 -#, python-format -msgid "The %(name)s \"%(obj)s\" was changed successfully." -msgstr "%(name)s \"%(obj)s\" å·²æˆåŠŸè®Šæ›´ã€‚" - -#: options.py:767 -#, python-format -msgid "" -"The %(name)s \"%(obj)s\" was added successfully. You may edit it again below." -msgstr "%(name)s \"%(obj)s\" 新增æˆåŠŸã€‚ä½ å¯ä»¥åœ¨ä¸‹é¢å†æ¬¡ç·¨è¼¯å®ƒã€‚" - -#: options.py:827 options.py:1085 -msgid "" -"Items must be selected in order to perform actions on them. No items have " -"been changed." -msgstr "å¿…é ˆè¦æœ‰é …目被é¸åˆ°æ‰èƒ½å°å®ƒå€‘進行動作。沒有項目變更。" - -#: options.py:846 -msgid "No action selected." -msgstr "沒有動作被é¸ã€‚" - -#: options.py:927 -#, python-format -msgid "Add %s" -msgstr "新增 %s" - -#: options.py:953 options.py:1194 -#, python-format -msgid "%(name)s object with primary key %(key)r does not exist." -msgstr "ä¸»éµ %(key)r çš„ %(name)s 物件ä¸å­˜åœ¨ã€‚" - -#: options.py:1018 -#, python-format -msgid "Change %s" -msgstr "變更 %s" - -#: options.py:1065 -msgid "Database error" -msgstr "資料庫錯誤" - -#: options.py:1127 -#, python-format -msgid "%(count)s %(name)s was changed successfully." -msgid_plural "%(count)s %(name)s were changed successfully." -msgstr[0] "å…± %(count)s %(name)s 已變更æˆåŠŸã€‚" - -#: options.py:1154 -#, python-format -msgid "%(total_count)s selected" -msgid_plural "All %(total_count)s selected" -msgstr[0] "全部 %(total_count)s 個被é¸" - -#: options.py:1159 -#, python-format -msgid "0 of %(cnt)s selected" -msgstr "%(cnt)s 中 0 個被é¸" - -#: options.py:1210 -#, python-format -msgid "The %(name)s \"%(obj)s\" was deleted successfully." -msgstr "%(name)s \"%(obj)s\" å·²æˆåŠŸåˆªé™¤ã€‚" - -#: options.py:1255 -#, python-format -msgid "Change history: %s" -msgstr "變更歷å²: %s" - -#: sites.py:319 templates/admin/login.html:42 -#: templates/registration/password_reset_complete.html:14 -#: views/decorators.py:26 -msgid "Log in" -msgstr "登入" - -#: sites.py:375 -msgid "Site administration" -msgstr "網站管ç†" - -#: sites.py:419 -#, python-format -msgid "%s administration" -msgstr "%s 管ç†" - -#: widgets.py:75 -msgid "Date:" -msgstr "日期" - -#: widgets.py:75 -msgid "Time:" -msgstr "時間" - -#: widgets.py:140 -msgid "Lookup" -msgstr "查詢" - -#: widgets.py:246 -msgid "Add Another" -msgstr "新增其它" - -#: templates/admin/404.html:4 templates/admin/404.html.py:8 -msgid "Page not found" -msgstr "é é¢æ²’有找到" - -#: templates/admin/404.html:10 -msgid "We're sorry, but the requested page could not be found." -msgstr "很抱歉,請求é é¢ç„¡æ³•æ‰¾åˆ°ã€‚" - -#: templates/admin/500.html:4 templates/admin/app_index.html:8 -#: templates/admin/base.html:55 templates/admin/change_form.html:19 -#: templates/admin/change_list.html:42 -#: templates/admin/delete_confirmation.html:6 -#: templates/admin/delete_selected_confirmation.html:6 -#: templates/admin/invalid_setup.html:4 templates/admin/object_history.html:6 -#: templates/admin/auth/user/change_password.html:12 -#: templates/registration/logged_out.html:4 -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:4 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -msgid "Home" -msgstr "首é " - -#: templates/admin/500.html:4 -msgid "Server error" -msgstr "伺æœå™¨éŒ¯èª¤" - -#: templates/admin/500.html:6 -msgid "Server error (500)" -msgstr "伺æœå™¨éŒ¯èª¤ (500)" - -#: templates/admin/500.html:9 -msgid "Server Error (500)" -msgstr "伺æœå™¨éŒ¯èª¤ (500)" - -#: 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 "" -"存在一個錯誤。它已經é€éŽé›»å­éƒµä»¶å›žå ±çµ¦ç¶²ç«™ç®¡ç†å“¡äº†ï¼Œä¸¦ä¸”應該很快被改正。è¬è¬" -"你的關心。" - -#: templates/admin/actions.html:4 -msgid "Run the selected action" -msgstr "執行é¸æ“‡çš„動作" - -#: templates/admin/actions.html:4 -msgid "Go" -msgstr "去" - -#: templates/admin/actions.html:11 -msgid "Click here to select the objects across all pages" -msgstr "點é¸é€™è£¡å¯é¸å–全部é é¢çš„物件" - -#: templates/admin/actions.html:11 -#, python-format -msgid "Select all %(total_count)s %(module_name)s" -msgstr "é¸æ“‡å…¨éƒ¨ %(total_count)s %(module_name)s" - -#: templates/admin/actions.html:13 -msgid "Clear selection" -msgstr "清除é¸æ“‡" - -#: templates/admin/app_index.html:10 templates/admin/index.html:19 -#, python-format -msgid "%(name)s" -msgstr "%(name)s" - -#: templates/admin/base.html:28 -msgid "Welcome," -msgstr "歡迎," - -#: templates/admin/base.html:33 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Documentation" -msgstr "文件" - -#: templates/admin/base.html:41 -#: templates/admin/auth/user/change_password.html:16 -#: templates/admin/auth/user/change_password.html:49 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Change password" -msgstr "變更密碼" - -#: templates/admin/base.html:48 -#: templates/registration/password_change_done.html:4 -#: templates/registration/password_change_form.html:5 -msgid "Log out" -msgstr "登出" - -#: templates/admin/base_site.html:4 -msgid "Django site admin" -msgstr "Django 網站管ç†" - -#: templates/admin/base_site.html:7 -msgid "Django administration" -msgstr "Django 管ç†" - -#: templates/admin/change_form.html:22 templates/admin/index.html:29 -msgid "Add" -msgstr "新增" - -#: templates/admin/change_form.html:31 templates/admin/object_history.html:10 -msgid "History" -msgstr "æ­·å²" - -#: templates/admin/change_form.html:32 -#: templates/admin/edit_inline/stacked.html:9 -#: templates/admin/edit_inline/tabular.html:28 -msgid "View on site" -msgstr "在網站上檢視" - -#: templates/admin/change_form.html:43 templates/admin/change_list.html:73 -#: templates/admin/login.html:17 -#: templates/admin/auth/user/change_password.html:25 -#: templates/registration/password_change_form.html:16 -msgid "Please correct the error below." -msgid_plural "Please correct the errors below." -msgstr[0] "請更正下é¢çš„錯誤。" - -#: templates/admin/change_list.html:64 -#, python-format -msgid "Add %(name)s" -msgstr "新增 %(name)s" - -#: templates/admin/change_list.html:84 -msgid "Filter" -msgstr "éŽæ¿¾å™¨" - -#: templates/admin/delete_confirmation.html:10 -#: templates/admin/submit_line.html:4 -msgid "Delete" -msgstr "刪除" - -#: templates/admin/delete_confirmation.html:17 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would result in deleting " -"related objects, but your account doesn't have permission to delete the " -"following types of objects:" -msgstr "" -"刪除 %(object_name)s '%(escaped_object)s' 會把相關的物件也刪除,ä¸éŽä½ çš„帳號" -"並沒有刪除以下型態物件的權é™:" - -#: templates/admin/delete_confirmation.html:25 -#, python-format -msgid "" -"Deleting the %(object_name)s '%(escaped_object)s' would require deleting the " -"following protected related objects:" -msgstr "" -"è¦åˆªé™¤ %(object_name)s '%(escaped_object)s', å°‡è¦æ±‚刪除下é¢å—ä¿è­·çš„相關物件:" - -#: templates/admin/delete_confirmation.html:33 -#, python-format -msgid "" -"Are you sure you want to delete the %(object_name)s \"%(escaped_object)s\"? " -"All of the following related items will be deleted:" -msgstr "" -"你確定想è¦åˆªé™¤ %(object_name)s \"%(escaped_object)s\"?以下所有的相關項目都會" -"被刪除:" - -#: templates/admin/delete_confirmation.html:38 -#: templates/admin/delete_selected_confirmation.html:43 -msgid "Yes, I'm sure" -msgstr "是的,我確定" - -#: templates/admin/delete_selected_confirmation.html:9 -msgid "Delete multiple objects" -msgstr "刪除多個物件" - -#: templates/admin/delete_selected_confirmation.html:16 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would result in deleting related " -"objects, but your account doesn't have permission to delete the following " -"types of objects:" -msgstr "" -"è¦åˆªé™¤æ‰€é¸çš„ %(objects_name)s, çµæžœæœƒåˆªé™¤ç›¸é—œç‰©ä»¶, 但你的帳號無權刪除下é¢ç‰©ä»¶" -"åž‹æ…‹:" - -#: templates/admin/delete_selected_confirmation.html:24 -#, python-format -msgid "" -"Deleting the selected %(objects_name)s would require deleting the following " -"protected related objects:" -msgstr "è¦åˆªé™¤æ‰€é¸çš„ %(objects_name)s, å°‡è¦æ±‚刪除下é¢å—ä¿è­·çš„相關物件:" - -#: templates/admin/delete_selected_confirmation.html:32 -#, python-format -msgid "" -"Are you sure you want to delete the selected %(objects_name)s? All of the " -"following objects and their related items will be deleted:" -msgstr "" -"你是å¦ç¢ºå®šè¦åˆªé™¤å·²é¸çš„ %(objects_name)s? 下é¢å…¨éƒ¨ç‰©ä»¶åŠå…¶ç›¸é—œé …目都將被刪除:" - -#: templates/admin/filter.html:2 -#, python-format -msgid " By %(filter_title)s " -msgstr " 以 %(filter_title)s" - -#: templates/admin/index.html:18 -#, python-format -msgid "Models available in the %(name)s application." -msgstr "模型在 %(name)s 應用中å¯ç”¨ã€‚" - -#: templates/admin/index.html:35 -msgid "Change" -msgstr "變更" - -#: templates/admin/index.html:45 -msgid "You don't have permission to edit anything." -msgstr "你沒有編輯任何æ±è¥¿çš„權é™ã€‚" - -#: templates/admin/index.html:53 -msgid "Recent Actions" -msgstr "最近的動作" - -#: templates/admin/index.html:54 -msgid "My Actions" -msgstr "我的動作" - -#: templates/admin/index.html:58 -msgid "None available" -msgstr "ç„¡å¯ç”¨çš„" - -#: templates/admin/index.html:72 -msgid "Unknown content" -msgstr "未知內容" - -#: templates/admin/invalid_setup.html:7 -msgid "" -"Something's wrong with your database installation. Make sure the appropriate " -"database tables have been created, and make sure the database is readable by " -"the appropriate user." -msgstr "" -"你的資料庫安è£æœ‰éŒ¯èª¤ã€‚確定資料庫表格已經建立,並確定資料庫å¯è¢«åˆé©çš„使用者讀" -"å–。" - -#: templates/admin/login.html:33 -msgid "Username:" -msgstr "使用者å稱:" - -#: templates/admin/login.html:37 -msgid "Password:" -msgstr "密碼:" - -#: templates/admin/object_history.html:22 -msgid "Date/time" -msgstr "日期/時間" - -#: templates/admin/object_history.html:23 -msgid "User" -msgstr "使用者" - -#: templates/admin/object_history.html:24 -msgid "Action" -msgstr "動作" - -#: templates/admin/object_history.html:38 -msgid "" -"This object doesn't have a change history. It probably wasn't added via this " -"admin site." -msgstr "這個物件沒有變更的歷å²ã€‚它å¯èƒ½ä¸æ˜¯é€éŽé€™å€‹ç®¡ç†ç¶²ç«™æ–°å¢žçš„。" - -#: templates/admin/pagination.html:10 -msgid "Show all" -msgstr "顯示全部" - -#: templates/admin/pagination.html:11 templates/admin/submit_line.html:3 -msgid "Save" -msgstr "儲存" - -#: templates/admin/search_form.html:8 -msgid "Search" -msgstr "æœå°‹" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(counter)s result" -msgid_plural "%(counter)s results" -msgstr[0] "%(counter)s çµæžœ" - -#: templates/admin/search_form.html:10 -#, python-format -msgid "%(full_result_count)s total" -msgstr "總共 %(full_result_count)s" - -#: templates/admin/submit_line.html:5 -msgid "Save as new" -msgstr "儲存為新的" - -#: templates/admin/submit_line.html:6 -msgid "Save and add another" -msgstr "儲存並新增å¦ä¸€å€‹" - -#: templates/admin/submit_line.html:7 -msgid "Save and continue editing" -msgstr "儲存並繼續編輯" - -#: templates/admin/auth/user/add_form.html:6 -msgid "" -"First, enter a username and password. Then, you'll be able to edit more user " -"options." -msgstr "首先,輸入一個使用者å稱和密碼。然後你å¯ä»¥ç·¨è¼¯æ›´å¤šä½¿ç”¨è€…é¸é …。" - -#: templates/admin/auth/user/add_form.html:8 -msgid "Enter a username and password." -msgstr "輸入一個使用者å稱和密碼。" - -#: templates/admin/auth/user/change_password.html:29 -#, python-format -msgid "Enter a new password for the user %(username)s." -msgstr "為使用者%(username)s輸入一個新的密碼。" - -#: templates/admin/auth/user/change_password.html:36 -msgid "Password" -msgstr "密碼" - -#: templates/admin/auth/user/change_password.html:42 -#: templates/registration/password_change_form.html:38 -msgid "Password (again)" -msgstr "密碼(é‡è¤‡)" - -#: templates/admin/auth/user/change_password.html:43 -msgid "Enter the same password as above, for verification." -msgstr "為檢查用,請輸入與上é¢ç›¸åŒçš„密碼。" - -#: templates/admin/edit_inline/stacked.html:67 -#: templates/admin/edit_inline/tabular.html:113 -#, python-format -msgid "Add another %(verbose_name)s" -msgstr "新增其它 %(verbose_name)s" - -#: templates/admin/edit_inline/stacked.html:70 -#: templates/admin/edit_inline/tabular.html:116 -msgid "Remove" -msgstr "移除" - -#: templates/admin/edit_inline/tabular.html:15 -msgid "Delete?" -msgstr "刪除?" - -#: templates/registration/logged_out.html:8 -msgid "Thanks for spending some quality time with the Web site today." -msgstr "æ„Ÿè¬ä½ ä»Šå¤©èŠ±äº†é‡è¦çš„時間åœç•™åœ¨æœ¬ç¶²ç«™ã€‚" - -#: templates/registration/logged_out.html:10 -msgid "Log in again" -msgstr "é‡æ–°ç™»å…¥" - -#: templates/registration/password_change_done.html:5 -#: templates/registration/password_change_form.html:6 -#: templates/registration/password_change_form.html:8 -#: templates/registration/password_change_form.html:20 -msgid "Password change" -msgstr "密碼變更" - -#: templates/registration/password_change_done.html:7 -#: templates/registration/password_change_done.html:11 -msgid "Password change successful" -msgstr "密碼æˆåŠŸåœ°è®Šæ›´" - -#: templates/registration/password_change_done.html:13 -msgid "Your password was changed." -msgstr "你的密碼已變更。" - -#: templates/registration/password_change_form.html:22 -msgid "" -"Please enter your old password, for security's sake, and then enter your new " -"password twice so we can verify you typed it in correctly." -msgstr "" -"為了安全上的考慮,請輸入你的舊密碼,å†è¼¸å…¥æ–°å¯†ç¢¼å…©æ¬¡ï¼Œè®“我們核驗你已正確地輸" -"入。" - -#: templates/registration/password_change_form.html:28 -msgid "Old password" -msgstr "舊的密碼" - -#: templates/registration/password_change_form.html:33 -msgid "New password" -msgstr "新的密碼" - -#: templates/registration/password_change_form.html:44 -#: templates/registration/password_reset_confirm.html:21 -msgid "Change my password" -msgstr "變更我的密碼" - -#: templates/registration/password_reset_complete.html:4 -#: templates/registration/password_reset_confirm.html:6 -#: templates/registration/password_reset_done.html:4 -#: templates/registration/password_reset_form.html:4 -#: templates/registration/password_reset_form.html:6 -#: templates/registration/password_reset_form.html:10 -msgid "Password reset" -msgstr "密碼é‡è¨­" - -#: templates/registration/password_reset_complete.html:6 -#: templates/registration/password_reset_complete.html:10 -msgid "Password reset complete" -msgstr "密碼é‡è¨­æˆåŠŸ" - -#: templates/registration/password_reset_complete.html:12 -msgid "Your password has been set. You may go ahead and log in now." -msgstr "你的密碼已設置,ç¾åœ¨å¯ä»¥ç¹¼çºŒç™»å…¥ã€‚" - -#: templates/registration/password_reset_confirm.html:4 -msgid "Password reset confirmation" -msgstr "密碼é‡è¨­ç¢ºèª" - -#: templates/registration/password_reset_confirm.html:12 -msgid "Enter new password" -msgstr "輸入新的密碼" - -#: templates/registration/password_reset_confirm.html:14 -msgid "" -"Please enter your new password twice so we can verify you typed it in " -"correctly." -msgstr "請輸入你的新密碼兩次, 這樣我們æ‰èƒ½æª¢æŸ¥ä½ çš„輸入是å¦æ­£ç¢ºã€‚" - -#: templates/registration/password_reset_confirm.html:18 -msgid "New password:" -msgstr "新密碼:" - -#: templates/registration/password_reset_confirm.html:20 -msgid "Confirm password:" -msgstr "確èªå¯†ç¢¼ï¼š" - -#: templates/registration/password_reset_confirm.html:26 -msgid "Password reset unsuccessful" -msgstr "密碼é‡è¨­å¤±æ•—" - -#: templates/registration/password_reset_confirm.html:28 -msgid "" -"The password reset link was invalid, possibly because it has already been " -"used. Please request a new password reset." -msgstr "密碼é‡è¨­é€£çµç„¡æ•ˆï¼Œå¯èƒ½å› ç‚ºä»–已使用。請é‡æ–°è«‹æ±‚密碼é‡è¨­ã€‚" - -#: templates/registration/password_reset_done.html:6 -#: templates/registration/password_reset_done.html:10 -msgid "Password reset successful" -msgstr "密碼æˆåŠŸåœ°é‡è¨­" - -#: templates/registration/password_reset_done.html:12 -msgid "" -"We've e-mailed you instructions for setting your password to the e-mail " -"address you submitted. You should be receiving it shortly." -msgstr "" -"我們已經寄出設定你的密碼æ“作指示到你æ供的電å­éƒµä»¶ä½å€ã€‚請你儘快收å–信件。" - -#: templates/registration/password_reset_email.html:2 -#, python-format -msgid "" -"You're receiving this e-mail because you requested a password reset for your " -"user account at %(site_name)s." -msgstr "" - -#: templates/registration/password_reset_email.html:4 -msgid "Please go to the following page and choose a new password:" -msgstr "請到該é é¢é¸æ“‡ä¸€å€‹æ–°çš„密碼:" - -#: templates/registration/password_reset_email.html:8 -msgid "Your username, in case you've forgotten:" -msgstr "你的使用者å稱,è¬ä¸€ä½ å·²ç¶“忘記的話:" - -#: templates/registration/password_reset_email.html:10 -msgid "Thanks for using our site!" -msgstr "æ„Ÿè¬ä½¿ç”¨æœ¬ç¶²ç«™ï¼" - -#: templates/registration/password_reset_email.html:12 -#, python-format -msgid "The %(site_name)s team" -msgstr "%(site_name)s 團隊" - -#: templates/registration/password_reset_form.html:12 -msgid "" -"Forgotten your password? Enter your e-mail address below, and we'll e-mail " -"instructions for setting a new one." -msgstr "" -"忘記你的密碼? 請在下é¢è¼¸å…¥ä½ çš„é›»å­éƒµä»¶ä½å€, 然後我們會寄出設定新密碼的æ“作指" -"示。" - -#: templates/registration/password_reset_form.html:16 -msgid "E-mail address:" -msgstr "é›»å­éƒµä»¶åœ°å€:" - -#: templates/registration/password_reset_form.html:16 -msgid "Reset my password" -msgstr "é‡è¨­æˆ‘的密碼" - -#: templatetags/admin_list.py:290 -msgid "All dates" -msgstr "所有日期" - -#: views/main.py:27 -msgid "(None)" -msgstr "" - -#: views/main.py:66 -#, python-format -msgid "Select %s" -msgstr "é¸æ“‡ %s" - -#: views/main.py:66 -#, python-format -msgid "Select %s to change" -msgstr "é¸æ“‡ %s 來變更" diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/djangojs.mo b/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/djangojs.mo deleted file mode 100644 index eb4e896d4..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/djangojs.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/djangojs.po b/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/djangojs.po deleted file mode 100644 index b09825c9d..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/locale/zh_TW/LC_MESSAGES/djangojs.po +++ /dev/null @@ -1,147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:14+0000\n" -"Last-Translator: tcc \n" -"Language-Team: Chinese (Taiwan) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: media/js/SelectFilter2.js:45 -#, perl-format -msgid "Available %s" -msgstr "å¯ç”¨ %s" - -#: media/js/SelectFilter2.js:52 -msgid "Filter" -msgstr "" - -#: media/js/SelectFilter2.js:59 -msgid "Choose all" -msgstr "全部é¸æ“‡" - -#: media/js/SelectFilter2.js:64 -msgid "Add" -msgstr "新增" - -#: media/js/SelectFilter2.js:66 -msgid "Remove" -msgstr "移除" - -#: media/js/SelectFilter2.js:71 -#, perl-format -msgid "Chosen %s" -msgstr "%s 被é¸" - -#: media/js/SelectFilter2.js:72 -msgid "Select your choice(s) and click " -msgstr "é¸æ“‡ä¸¦é»žé¸ " - -#: media/js/SelectFilter2.js:77 -msgid "Clear all" -msgstr "全部清除" - -#: media/js/actions.js:18 media/js/actions.min.js:1 -msgid "%(sel)s of %(cnt)s selected" -msgid_plural "%(sel)s of %(cnt)s selected" -msgstr[0] "%(cnt)s 中 %(sel)s 個被é¸" - -#: media/js/actions.js:109 media/js/actions.min.js:5 -msgid "" -"You have unsaved changes on individual editable fields. If you run an " -"action, your unsaved changes will be lost." -msgstr "你尚未儲存一個å¯ç·¨è¼¯æ¬„ä½çš„變更。如果你執行動作, 未儲存的變更將會éºå¤±ã€‚" - -#: media/js/actions.js:121 media/js/actions.min.js:6 -msgid "" -"You have selected an action, but you haven't saved your changes to " -"individual fields yet. Please click OK to save. You'll need to re-run the " -"action." -msgstr "" -"ä½ å·²é¸äº†ä¸€å€‹å‹•ä½œ, 但有一個å¯ç·¨è¼¯æ¬„ä½çš„è®Šæ›´å°šæœªå„²å­˜ã€‚è«‹é»žé¸ OK 進行儲存。你需" -"è¦é‡æ–°åŸ·è¡Œè©²å‹•ä½œã€‚" - -#: media/js/actions.js:123 media/js/actions.min.js:6 -msgid "" -"You have selected an action, and you haven't made any changes on individual " -"fields. You're probably looking for the Go button rather than the Save " -"button." -msgstr "" -"ä½ å·²é¸äº†ä¸€å€‹å‹•ä½œ, 但沒有任何改變。你å¯èƒ½å‹•åˆ° '去' 按鈕, 而ä¸æ˜¯ '儲存' 按鈕。" - -#: media/js/calendar.js:24 media/js/dateparse.js:32 -msgid "" -"January February March April May June July August September October November " -"December" -msgstr "一月 二月 三月 四月 五月 六月 七月 八月 ä¹æœˆ å月 å一月 å二月" - -#: media/js/calendar.js:25 -msgid "S M T W T F S" -msgstr "æ—¥ 一 二 三 å›› 五 å…­" - -#: media/js/collapse.js:9 media/js/collapse.js.py:21 -#: media/js/collapse.min.js:1 -msgid "Show" -msgstr "顯示" - -#: media/js/collapse.js:16 media/js/collapse.min.js:1 -msgid "Hide" -msgstr "éš±è—" - -#: media/js/dateparse.js:33 -msgid "Sunday Monday Tuesday Wednesday Thursday Friday Saturday" -msgstr "週日 週一 週二 週三 週四 週五 週六" - -#: media/js/admin/DateTimeShortcuts.js:49 -#: media/js/admin/DateTimeShortcuts.js:84 -msgid "Now" -msgstr "ç¾åœ¨" - -#: media/js/admin/DateTimeShortcuts.js:53 -msgid "Clock" -msgstr "時é˜" - -#: media/js/admin/DateTimeShortcuts.js:80 -msgid "Choose a time" -msgstr "é¸æ“‡ä¸€å€‹æ™‚é–“" - -#: media/js/admin/DateTimeShortcuts.js:85 -msgid "Midnight" -msgstr "åˆå¤œ" - -#: media/js/admin/DateTimeShortcuts.js:86 -msgid "6 a.m." -msgstr "ä¸Šåˆ 6 點" - -#: media/js/admin/DateTimeShortcuts.js:87 -msgid "Noon" -msgstr "中åˆ" - -#: media/js/admin/DateTimeShortcuts.js:91 -#: media/js/admin/DateTimeShortcuts.js:188 -msgid "Cancel" -msgstr "å–消" - -#: media/js/admin/DateTimeShortcuts.js:133 -#: media/js/admin/DateTimeShortcuts.js:182 -msgid "Today" -msgstr "今天" - -#: media/js/admin/DateTimeShortcuts.js:137 -msgid "Calendar" -msgstr "日曆" - -#: media/js/admin/DateTimeShortcuts.js:180 -msgid "Yesterday" -msgstr "昨天" - -#: media/js/admin/DateTimeShortcuts.js:184 -msgid "Tomorrow" -msgstr "明天" diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/css/base.css b/lib/python2.7/site-packages/django/contrib/admin/media/css/base.css deleted file mode 100644 index c5e385d50..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/css/base.css +++ /dev/null @@ -1,772 +0,0 @@ -/* - DJANGO Admin styles -*/ - -body { - margin: 0; - padding: 0; - font-size: 12px; - font-family: "Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif; - color: #333; - background: #fff; -} - -/* LINKS */ - -a:link, a:visited { - color: #5b80b2; - text-decoration: none; -} - -a:hover { - color: #036; -} - -a img { - border: none; -} - -a.section:link, a.section:visited { - color: white; - text-decoration: none; -} - -/* GLOBAL DEFAULTS */ - -p, ol, ul, dl { - margin: .2em 0 .8em 0; -} - -p { - padding: 0; - line-height: 140%; -} - -h1,h2,h3,h4,h5 { - font-weight: bold; -} - -h1 { - font-size: 18px; - color: #666; - padding: 0 6px 0 0; - margin: 0 0 .2em 0; -} - -h2 { - font-size: 16px; - margin: 1em 0 .5em 0; -} - -h2.subhead { - font-weight: normal; - margin-top: 0; -} - -h3 { - font-size: 14px; - margin: .8em 0 .3em 0; - color: #666; - font-weight: bold; -} - -h4 { - font-size: 12px; - margin: 1em 0 .8em 0; - padding-bottom: 3px; -} - -h5 { - font-size: 10px; - margin: 1.5em 0 .5em 0; - color: #666; - text-transform: uppercase; - letter-spacing: 1px; -} - -ul li { - list-style-type: square; - padding: 1px 0; -} - -ul.plainlist { - margin-left: 0 !important; -} - -ul.plainlist li { - list-style-type: none; -} - -li ul { - margin-bottom: 0; -} - -li, dt, dd { - font-size: 11px; - line-height: 14px; -} - -dt { - font-weight: bold; - margin-top: 4px; -} - -dd { - margin-left: 0; -} - -form { - margin: 0; - padding: 0; -} - -fieldset { - margin: 0; - padding: 0; -} - -blockquote { - font-size: 11px; - color: #777; - margin-left: 2px; - padding-left: 10px; - border-left: 5px solid #ddd; -} - -code, pre { - font-family: "Bitstream Vera Sans Mono", Monaco, "Courier New", Courier, monospace; - background: inherit; - color: #666; - font-size: 11px; -} - -pre.literal-block { - margin: 10px; - background: #eee; - padding: 6px 8px; -} - -code strong { - color: #930; -} - -hr { - clear: both; - color: #eee; - background-color: #eee; - height: 1px; - border: none; - margin: 0; - padding: 0; - font-size: 1px; - line-height: 1px; -} - -/* TEXT STYLES & MODIFIERS */ - -.small { - font-size: 11px; -} - -.tiny { - font-size: 10px; -} - -p.tiny { - margin-top: -2px; -} - -.mini { - font-size: 9px; -} - -p.mini { - margin-top: -3px; -} - -.help, p.help { - font-size: 10px !important; - color: #999; -} - -p img, h1 img, h2 img, h3 img, h4 img, td img { - vertical-align: middle; -} - -.quiet, a.quiet:link, a.quiet:visited { - color: #999 !important; - font-weight: normal !important; -} - -.quiet strong { - font-weight: bold !important; -} - -.float-right { - float: right; -} - -.float-left { - float: left; -} - -.clear { - clear: both; -} - -.align-left { - text-align: left; -} - -.align-right { - text-align: right; -} - -.example { - margin: 10px 0; - padding: 5px 10px; - background: #efefef; -} - -.nowrap { - white-space: nowrap; -} - -/* TABLES */ - -table { - border-collapse: collapse; - border-color: #ccc; -} - -td, th { - font-size: 11px; - line-height: 13px; - border-bottom: 1px solid #eee; - vertical-align: top; - padding: 5px; - font-family: "Lucida Grande", Verdana, Arial, sans-serif; -} - -th { - text-align: left; - font-size: 12px; - font-weight: bold; -} - -thead th, -tfoot td { - color: #666; - padding: 2px 5px; - font-size: 11px; - background: #e1e1e1 url(../img/admin/nav-bg.gif) top left repeat-x; - border-left: 1px solid #ddd; - border-bottom: 1px solid #ddd; -} - -tfoot td { - border-bottom: none; - border-top: 1px solid #ddd; -} - -thead th:first-child, -tfoot td:first-child { - border-left: none !important; -} - -thead th.optional { - font-weight: normal !important; -} - -fieldset table { - border-right: 1px solid #eee; -} - -tr.row-label td { - font-size: 9px; - padding-top: 2px; - padding-bottom: 0; - border-bottom: none; - color: #666; - margin-top: -1px; -} - -tr.alt { - background: #f6f6f6; -} - -.row1 { - background: #EDF3FE; -} - -.row2 { - background: white; -} - -/* SORTABLE TABLES */ - -thead th a:link, thead th a:visited { - color: #666; - display: block; -} - -table thead th.sorted { - background-position: bottom left !important; -} - -table thead th.sorted a { - padding-right: 13px; -} - -table thead th.ascending a { - background: url(../img/admin/arrow-up.gif) right .4em no-repeat; -} - -table thead th.descending a { - background: url(../img/admin/arrow-down.gif) right .4em no-repeat; -} - -/* ORDERABLE TABLES */ - -table.orderable tbody tr td:hover { - cursor: move; -} - -table.orderable tbody tr td:first-child { - padding-left: 14px; - background-image: url(../img/admin/nav-bg-grabber.gif); - background-repeat: repeat-y; -} - -table.orderable-initalized .order-cell, body>tr>td.order-cell { - display: none; -} - -/* FORM DEFAULTS */ - -input, textarea, select, .form-row p { - margin: 2px 0; - padding: 2px 3px; - vertical-align: middle; - font-family: "Lucida Grande", Verdana, Arial, sans-serif; - font-weight: normal; - font-size: 11px; -} - -textarea { - vertical-align: top !important; -} - -input[type=text], input[type=password], textarea, select, .vTextField { - border: 1px solid #ccc; -} - -/* FORM BUTTONS */ - -.button, input[type=submit], input[type=button], .submit-row input { - background: white url(../img/admin/nav-bg.gif) bottom repeat-x; - padding: 3px 5px; - color: black; - border: 1px solid #bbb; - border-color: #ddd #aaa #aaa #ddd; -} - -.button:active, input[type=submit]:active, input[type=button]:active { - background-image: url(../img/admin/nav-bg-reverse.gif); - background-position: top; -} - -.button[disabled], input[type=submit][disabled], input[type=button][disabled] { - background-image: url(../img/admin/nav-bg.gif); - background-position: bottom; - opacity: 0.4; -} - -.button.default, input[type=submit].default, .submit-row input.default { - border: 2px solid #5b80b2; - background: #7CA0C7 url(../img/admin/default-bg.gif) bottom repeat-x; - font-weight: bold; - color: white; - float: right; -} - -.button.default:active, input[type=submit].default:active { - background-image: url(../img/admin/default-bg-reverse.gif); - background-position: top; -} - -.button[disabled].default, input[type=submit][disabled].default, input[type=button][disabled].default { - background-image: url(../img/admin/default-bg.gif); - background-position: bottom; - opacity: 0.4; -} - - -/* MODULES */ - -.module { - border: 1px solid #ccc; - margin-bottom: 5px; - background: white; -} - -.module p, .module ul, .module h3, .module h4, .module dl, .module pre { - padding-left: 10px; - padding-right: 10px; -} - -.module blockquote { - margin-left: 12px; -} - -.module ul, .module ol { - margin-left: 1.5em; -} - -.module h3 { - margin-top: .6em; -} - -.module h2, .module caption, .inline-group h2 { - margin: 0; - padding: 2px 5px 3px 5px; - font-size: 11px; - text-align: left; - font-weight: bold; - background: #7CA0C7 url(../img/admin/default-bg.gif) top left repeat-x; - color: white; -} - -.module table { - border-collapse: collapse; -} - -/* MESSAGES & ERRORS */ - -ul.messagelist { - padding: 0 0 5px 0; - margin: 0; -} - -ul.messagelist li { - font-size: 12px; - display: block; - padding: 4px 5px 4px 25px; - margin: 0 0 3px 0; - border-bottom: 1px solid #ddd; - color: #666; - background: #ffc url(../img/admin/icon_success.gif) 5px .3em no-repeat; -} - -ul.messagelist li.warning{ - background-image: url(../img/admin/icon_alert.gif); -} - -ul.messagelist li.error{ - background-image: url(../img/admin/icon_error.gif); -} - -.errornote { - font-size: 12px !important; - display: block; - padding: 4px 5px 4px 25px; - margin: 0 0 3px 0; - border: 1px solid red; - color: red; - background: #ffc url(../img/admin/icon_error.gif) 5px .3em no-repeat; -} - -ul.errorlist { - margin: 0 !important; - padding: 0 !important; -} - -.errorlist li { - font-size: 12px !important; - display: block; - padding: 4px 5px 4px 25px; - margin: 0 0 3px 0; - border: 1px solid red; - color: white; - background: red url(../img/admin/icon_alert.gif) 5px .3em no-repeat; -} - -.errorlist li a { - color: white; - text-decoration: underline; -} - -td ul.errorlist { - margin: 0 !important; - padding: 0 !important; -} - -td ul.errorlist li { - margin: 0 !important; -} - -.errors { - background: #ffc; -} - -.errors input, .errors select, .errors textarea { - border: 1px solid red; -} - -div.system-message { - background: #ffc; - margin: 10px; - padding: 6px 8px; - font-size: .8em; -} - -div.system-message p.system-message-title { - padding: 4px 5px 4px 25px; - margin: 0; - color: red; - background: #ffc url(../img/admin/icon_error.gif) 5px .3em no-repeat; -} - -.description { - font-size: 12px; - padding: 5px 0 0 12px; -} - -/* BREADCRUMBS */ - -div.breadcrumbs { - background: white url(../img/admin/nav-bg-reverse.gif) 0 -10px repeat-x; - padding: 2px 8px 3px 8px; - font-size: 11px; - color: #999; - border-top: 1px solid white; - border-bottom: 1px solid #ccc; - text-align: left; -} - -/* ACTION ICONS */ - -.addlink { - padding-left: 12px; - background: url(../img/admin/icon_addlink.gif) 0 .2em no-repeat; -} - -.changelink { - padding-left: 12px; - background: url(../img/admin/icon_changelink.gif) 0 .2em no-repeat; -} - -.deletelink { - padding-left: 12px; - background: url(../img/admin/icon_deletelink.gif) 0 .25em no-repeat; -} - -a.deletelink:link, a.deletelink:visited { - color: #CC3434; -} - -a.deletelink:hover { - color: #993333; -} - -/* OBJECT TOOLS */ - -.object-tools { - font-size: 10px; - font-weight: bold; - font-family: Arial,Helvetica,sans-serif; - padding-left: 0; - float: right; - position: relative; - margin-top: -2.4em; - margin-bottom: -2em; -} - -.form-row .object-tools { - margin-top: 5px; - margin-bottom: 5px; - float: none; - height: 2em; - padding-left: 3.5em; -} - -.object-tools li { - display: block; - float: left; - background: url(../img/admin/tool-left.gif) 0 0 no-repeat; - padding: 0 0 0 8px; - margin-left: 2px; - height: 16px; -} - -.object-tools li:hover { - background: url(../img/admin/tool-left_over.gif) 0 0 no-repeat; -} - -.object-tools a:link, .object-tools a:visited { - display: block; - float: left; - color: white; - padding: .1em 14px .1em 8px; - height: 14px; - background: #999 url(../img/admin/tool-right.gif) 100% 0 no-repeat; -} - -.object-tools a:hover, .object-tools li:hover a { - background: #5b80b2 url(../img/admin/tool-right_over.gif) 100% 0 no-repeat; -} - -.object-tools a.viewsitelink, .object-tools a.golink { - background: #999 url(../img/admin/tooltag-arrowright.gif) top right no-repeat; - padding-right: 28px; -} - -.object-tools a.viewsitelink:hover, .object-tools a.golink:hover { - background: #5b80b2 url(../img/admin/tooltag-arrowright_over.gif) top right no-repeat; -} - -.object-tools a.addlink { - background: #999 url(../img/admin/tooltag-add.gif) top right no-repeat; - padding-right: 28px; -} - -.object-tools a.addlink:hover { - background: #5b80b2 url(../img/admin/tooltag-add_over.gif) top right no-repeat; -} - -/* OBJECT HISTORY */ - -table#change-history { - width: 100%; -} - -table#change-history tbody th { - width: 16em; -} - -/* PAGE STRUCTURE */ - -#container { - position: relative; - width: 100%; - min-width: 760px; - padding: 0; -} - -#content { - margin: 10px 15px; -} - -#header { - width: 100%; -} - -#content-main { - float: left; - width: 100%; -} - -#content-related { - float: right; - width: 18em; - position: relative; - margin-right: -19em; -} - -#footer { - clear: both; - padding: 10px; -} - -/* COLUMN TYPES */ - -.colMS { - margin-right: 20em !important; -} - -.colSM { - margin-left: 20em !important; -} - -.colSM #content-related { - float: left; - margin-right: 0; - margin-left: -19em; -} - -.colSM #content-main { - float: right; -} - -.popup .colM { - width: 95%; -} - -.subcol { - float: left; - width: 46%; - margin-right: 15px; -} - -.dashboard #content { - width: 500px; -} - -/* HEADER */ - -#header { - background: #417690; - color: #ffc; - overflow: hidden; -} - -#header a:link, #header a:visited { - color: white; -} - -#header a:hover { - text-decoration: underline; -} - -#branding h1 { - padding: 0 10px; - font-size: 18px; - margin: 8px 0; - font-weight: normal; - color: #f4f379; -} - -#branding h2 { - padding: 0 10px; - font-size: 14px; - margin: -8px 0 8px 0; - font-weight: normal; - color: #ffc; -} - -#user-tools { - position: absolute; - top: 0; - right: 0; - padding: 1.2em 10px; - font-size: 11px; - text-align: right; -} - -/* SIDEBAR */ - -#content-related h3 { - font-size: 12px; - color: #666; - margin-bottom: 3px; -} - -#content-related h4 { - font-size: 11px; -} - -#content-related .module h2 { - background: #eee url(../img/admin/nav-bg.gif) bottom left repeat-x; - color: #666; -} - diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/css/changelists.css b/lib/python2.7/site-packages/django/contrib/admin/media/css/changelists.css deleted file mode 100644 index 315b8c7a3..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/css/changelists.css +++ /dev/null @@ -1,289 +0,0 @@ -/* CHANGELISTS */ - -#changelist { - position: relative; - width: 100%; -} - -#changelist table { - width: 100%; -} - -.change-list .hiddenfields { display:none; } - -.change-list .filtered table { - border-right: 1px solid #ddd; -} - -.change-list .filtered { - min-height: 400px; -} - -.change-list .filtered { - background: white url(../img/admin/changelist-bg.gif) top right repeat-y !important; -} - -.change-list .filtered .results, .change-list .filtered .paginator, .filtered #toolbar, .filtered div.xfull { - margin-right: 160px !important; - width: auto !important; -} - -.change-list .filtered table tbody th { - padding-right: 1em; -} - -#changelist .toplinks { - border-bottom: 1px solid #ccc !important; -} - -#changelist .paginator { - color: #666; - border-top: 1px solid #eee; - border-bottom: 1px solid #eee; - background: white url(../img/admin/nav-bg.gif) 0 180% repeat-x; - overflow: hidden; -} - -.change-list .filtered .paginator { - border-right: 1px solid #ddd; -} - -/* CHANGELIST TABLES */ - -#changelist table thead th { - white-space: nowrap; - vertical-align: middle; -} - -#changelist table thead th.action-checkbox-column { - width: 1.5em; - text-align: center; -} - -#changelist table tbody td, #changelist table tbody th { - border-left: 1px solid #ddd; -} - -#changelist table tbody td:first-child, #changelist table tbody th:first-child { - border-left: 0; - border-right: 1px solid #ddd; -} - -#changelist table tbody td.action-checkbox { - text-align:center; -} - -#changelist table tfoot { - color: #666; -} - -/* TOOLBAR */ - -#changelist #toolbar { - padding: 3px; - border-bottom: 1px solid #ddd; - background: #e1e1e1 url(../img/admin/nav-bg.gif) top left repeat-x; - color: #666; -} - -#changelist #toolbar form input { - font-size: 11px; - padding: 1px 2px; -} - -#changelist #toolbar form #searchbar { - padding: 2px; -} - -#changelist #changelist-search img { - vertical-align: middle; -} - -/* FILTER COLUMN */ - -#changelist-filter { - position: absolute; - top: 0; - right: 0; - z-index: 1000; - width: 160px; - border-left: 1px solid #ddd; - background: #efefef; - margin: 0; -} - -#changelist-filter h2 { - font-size: 11px; - padding: 2px 5px; - border-bottom: 1px solid #ddd; -} - -#changelist-filter h3 { - font-size: 12px; - margin-bottom: 0; -} - -#changelist-filter ul { - padding-left: 0; - margin-left: 10px; -} - -#changelist-filter li { - list-style-type: none; - margin-left: 0; - padding-left: 0; -} - -#changelist-filter a { - color: #999; -} - -#changelist-filter a:hover { - color: #036; -} - -#changelist-filter li.selected { - border-left: 5px solid #ccc; - padding-left: 5px; - margin-left: -10px; -} - -#changelist-filter li.selected a { - color: #5b80b2 !important; -} - -/* DATE DRILLDOWN */ - -.change-list ul.toplinks { - display: block; - background: white url(../img/admin/nav-bg-reverse.gif) 0 -10px repeat-x; - border-top: 1px solid white; - float: left; - padding: 0 !important; - margin: 0 !important; - width: 100%; -} - -.change-list ul.toplinks li { - float: left; - width: 9em; - padding: 3px 6px; - font-weight: bold; - list-style-type: none; -} - -.change-list ul.toplinks .date-back a { - color: #999; -} - -.change-list ul.toplinks .date-back a:hover { - color: #036; -} - -/* PAGINATOR */ - -.paginator { - font-size: 11px; - padding-top: 10px; - padding-bottom: 10px; - line-height: 22px; - margin: 0; - border-top: 1px solid #ddd; -} - -.paginator a:link, .paginator a:visited { - padding: 2px 6px; - border: solid 1px #ccc; - background: white; - text-decoration: none; -} - -.paginator a.showall { - padding: 0 !important; - border: none !important; -} - -.paginator a.showall:hover { - color: #036 !important; - background: transparent !important; -} - -.paginator .end { - border-width: 2px !important; - margin-right: 6px; -} - -.paginator .this-page { - padding: 2px 6px; - font-weight: bold; - font-size: 13px; - vertical-align: top; -} - -.paginator a:hover { - color: white; - background: #5b80b2; - border-color: #036; -} - -/* ACTIONS */ - -.filtered .actions { - margin-right: 160px !important; - border-right: 1px solid #ddd; -} - -#changelist table input { - margin: 0; -} - -#changelist table tbody tr.selected { - background-color: #FFFFCC; -} - -#changelist .actions { - color: #999; - padding: 3px; - border-top: 1px solid #fff; - border-bottom: 1px solid #ddd; - background: white url(../img/admin/nav-bg-reverse.gif) 0 -10px repeat-x; -} - -#changelist .actions.selected { - background: #fffccf; - border-top: 1px solid #fffee8; - border-bottom: 1px solid #edecd6; -} - -#changelist .actions span.all, -#changelist .actions span.action-counter, -#changelist .actions span.clear, -#changelist .actions span.question { - font-size: 11px; - margin: 0 0.5em; - display: none; -} - -#changelist .actions:last-child { - border-bottom: none; -} - -#changelist .actions select { - border: 1px solid #aaa; - margin-left: 0.5em; - padding: 1px 2px; -} - -#changelist .actions label { - font-size: 11px; - margin-left: 0.5em; -} - -#changelist #action-toggle { - display: none; -} - -#changelist .actions .button { - font-size: 11px; - padding: 1px 2px; -} diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/css/dashboard.css b/lib/python2.7/site-packages/django/contrib/admin/media/css/dashboard.css deleted file mode 100644 index ceefe1525..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/css/dashboard.css +++ /dev/null @@ -1,30 +0,0 @@ -/* DASHBOARD */ - -.dashboard .module table th { - width: 100%; -} - -.dashboard .module table td { - white-space: nowrap; -} - -.dashboard .module table td a { - display: block; - padding-right: .6em; -} - -/* RECENT ACTIONS MODULE */ - -.module ul.actionlist { - margin-left: 0; -} - -ul.actionlist li { - list-style-type: none; -} - -ul.actionlist li.changelink { - overflow: hidden; - text-overflow: ellipsis; - -o-text-overflow: ellipsis; -} \ No newline at end of file diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/css/forms.css b/lib/python2.7/site-packages/django/contrib/admin/media/css/forms.css deleted file mode 100644 index 35d0ed796..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/css/forms.css +++ /dev/null @@ -1,354 +0,0 @@ -@import url('widgets.css'); - -/* FORM ROWS */ - -.form-row { - overflow: hidden; - padding: 8px 12px; - font-size: 11px; - border-bottom: 1px solid #eee; -} - -.form-row img, .form-row input { - vertical-align: middle; -} - -form .form-row p { - padding-left: 0; - font-size: 11px; -} - -/* FORM LABELS */ - -form h4 { - margin: 0 !important; - padding: 0 !important; - border: none !important; -} - -label { - font-weight: normal !important; - color: #666; - font-size: 12px; -} - -.required label, label.required { - font-weight: bold !important; - color: #333 !important; -} - -/* RADIO BUTTONS */ - -form ul.radiolist li { - list-style-type: none; -} - -form ul.radiolist label { - float: none; - display: inline; -} - -form ul.inline { - margin-left: 0; - padding: 0; -} - -form ul.inline li { - float: left; - padding-right: 7px; -} - -/* ALIGNED FIELDSETS */ - -.aligned label { - display: block; - padding: 3px 10px 0 0; - float: left; - width: 8em; -} - -.aligned ul label { - display: inline; - float: none; - width: auto; -} - -.colMS .aligned .vLargeTextField, .colMS .aligned .vXMLLargeTextField { - width: 350px; -} - -form .aligned p, form .aligned ul { - margin-left: 7em; - padding-left: 30px; -} - -form .aligned table p { - margin-left: 0; - padding-left: 0; -} - -form .aligned p.help { - padding-left: 38px; -} - -.aligned .vCheckboxLabel { - float: none !important; - display: inline; - padding-left: 4px; -} - -.colM .aligned .vLargeTextField, .colM .aligned .vXMLLargeTextField { - width: 610px; -} - -.checkbox-row p.help { - margin-left: 0; - padding-left: 0 !important; -} - -fieldset .field-box { - float: left; - margin-right: 20px; -} - -/* WIDE FIELDSETS */ - -.wide label { - width: 15em !important; -} - -form .wide p { - margin-left: 15em; -} - -form .wide p.help { - padding-left: 38px; -} - -.colM fieldset.wide .vLargeTextField, .colM fieldset.wide .vXMLLargeTextField { - width: 450px; -} - -/* COLLAPSED FIELDSETS */ - -fieldset.collapsed * { - display: none; -} - -fieldset.collapsed h2, fieldset.collapsed { - display: block !important; -} - -fieldset.collapsed h2 { - background-image: url(../img/admin/nav-bg.gif); - background-position: bottom left; - color: #999; -} - -fieldset.collapsed .collapse-toggle { - background: transparent; - display: inline !important; -} - -/* MONOSPACE TEXTAREAS */ - -fieldset.monospace textarea { - font-family: "Bitstream Vera Sans Mono",Monaco,"Courier New",Courier,monospace; -} - -/* SUBMIT ROW */ - -.submit-row { - padding: 5px 7px; - text-align: right; - background: white url(../img/admin/nav-bg.gif) 0 100% repeat-x; - border: 1px solid #ccc; - margin: 5px 0; - overflow: hidden; -} - -.submit-row input { - margin: 0 0 0 5px; -} - -.submit-row p { - margin: 0.3em; -} - -.submit-row p.deletelink-box { - float: left; -} - -.submit-row .deletelink { - background: url(../img/admin/icon_deletelink.gif) 0 50% no-repeat; - padding-left: 14px; -} - -/* CUSTOM FORM FIELDS */ - -.vSelectMultipleField { - vertical-align: top !important; -} - -.vCheckboxField { - border: none; -} - -.vDateField, .vTimeField { - margin-right: 2px; -} - -.vURLField { - width: 30em; -} - -.vLargeTextField, .vXMLLargeTextField { - width: 48em; -} - -.flatpages-flatpage #id_content { - height: 40.2em; -} - -.module table .vPositiveSmallIntegerField { - width: 2.2em; -} - -.vTextField { - width: 20em; -} - -.vIntegerField { - width: 5em; -} - -.vForeignKeyRawIdAdminField { - width: 5em; -} - -/* INLINES */ - -.inline-group { - padding: 0; - border: 1px solid #ccc; - margin: 10px 0; -} - -.inline-group .aligned label { - width: 8em; -} - -.inline-related { - position: relative; -} - -.inline-related h3 { - margin: 0; - color: #666; - padding: 3px 5px; - font-size: 11px; - background: #e1e1e1 url(../img/admin/nav-bg.gif) top left repeat-x; - border-bottom: 1px solid #ddd; -} - -.inline-related h3 span.delete { - float: right; -} - -.inline-related h3 span.delete label { - margin-left: 2px; - font-size: 11px; -} - -.inline-related fieldset { - margin: 0; - background: #fff; - border: none; -} - -.inline-related fieldset.module h3 { - margin: 0; - padding: 2px 5px 3px 5px; - font-size: 11px; - text-align: left; - font-weight: bold; - background: #bcd; - color: #fff; -} - -.inline-group .tabular fieldset.module { - border: none; - border-bottom: 1px solid #ddd; -} - -.inline-related.tabular fieldset.module table { - width: 100%; -} - -.last-related fieldset { - border: none; -} - -.inline-group .tabular tr.has_original td { - padding-top: 2em; -} - -.inline-group .tabular tr td.original { - padding: 2px 0 0 0; - width: 0; - _position: relative; -} - -.inline-group .tabular th.original { - width: 0px; - padding: 0; -} - -.inline-group .tabular td.original p { - position: absolute; - left: 0; - height: 1.1em; - padding: 2px 7px; - overflow: hidden; - font-size: 9px; - font-weight: bold; - color: #666; - _width: 700px; -} - -.inline-group ul.tools { - padding: 0; - margin: 0; - list-style: none; -} - -.inline-group ul.tools li { - display: inline; - padding: 0 5px; -} - -.inline-group div.add-row, -.inline-group .tabular tr.add-row td { - color: #666; - padding: 3px 5px; - border-bottom: 1px solid #ddd; - background: #e1e1e1 url(../img/admin/nav-bg.gif) top left repeat-x; -} - -.inline-group .tabular tr.add-row td { - padding: 4px 5px 3px; - border-bottom: none; -} - -.inline-group ul.tools a.add, -.inline-group div.add-row a, -.inline-group .tabular tr.add-row td a { - background: url(../img/admin/icon_addlink.gif) 0 50% no-repeat; - padding-left: 14px; - font-size: 11px; - outline: 0; /* Remove dotted border around link */ -} - -.empty-form { - display: none; -} diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/css/ie.css b/lib/python2.7/site-packages/django/contrib/admin/media/css/ie.css deleted file mode 100644 index 5fd1ce364..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/css/ie.css +++ /dev/null @@ -1,57 +0,0 @@ -/* IE 6 & 7 */ - -/* Proper fixed width for dashboard in IE6 */ - -.dashboard #content { - *width: 768px; -} - -.dashboard #content-main { - *width: 535px; -} - -/* IE 6 ONLY */ - -/* Keep header from flowing off the page */ - -#container { - _position: static; -} - -/* Put the right sidebars back on the page */ - -.colMS #content-related { - _margin-right: 0; - _margin-left: 10px; - _position: static; -} - -/* Put the left sidebars back on the page */ - -.colSM #content-related { - _margin-right: 10px; - _margin-left: -115px; - _position: static; -} - -.form-row { - _height: 1%; -} - -/* Fix right margin for changelist filters in IE6 */ - -#changelist-filter ul { - _margin-right: -10px; -} - -/* IE ignores min-height, but treats height as if it were min-height */ - -.change-list .filtered { - _height: 400px; -} - -/* IE doesn't know alpha transparency in PNGs */ - -.inline-deletelink { - background: transparent url(../img/admin/inline-delete-8bit.png) no-repeat; -} \ No newline at end of file diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/css/login.css b/lib/python2.7/site-packages/django/contrib/admin/media/css/login.css deleted file mode 100644 index 8d90d1290..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/css/login.css +++ /dev/null @@ -1,54 +0,0 @@ -/* LOGIN FORM */ - -body.login { - background: #eee; -} - -.login #container { - background: white; - border: 1px solid #ccc; - width: 28em; - min-width: 300px; - margin-left: auto; - margin-right: auto; - margin-top: 100px; -} - -.login #content-main { - width: 100%; -} - -.login form { - margin-top: 1em; -} - -.login .form-row { - padding: 4px 0; - float: left; - width: 100%; -} - -.login .form-row label { - float: left; - width: 9em; - padding-right: 0.5em; - line-height: 2em; - text-align: right; - font-size: 1em; - color: #333; -} - -.login .form-row #id_username, .login .form-row #id_password { - width: 14em; -} - -.login span.help { - font-size: 10px; - display: block; -} - -.login .submit-row { - clear: both; - padding: 1em 0 0 9.4em; -} - diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/css/rtl.css b/lib/python2.7/site-packages/django/contrib/admin/media/css/rtl.css deleted file mode 100644 index c02241d13..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/css/rtl.css +++ /dev/null @@ -1,244 +0,0 @@ -body { - direction: rtl; -} - -/* LOGIN */ - -.login .form-row { - float: right; -} - -.login .form-row label { - float: right; - padding-left: 0.5em; - padding-right: 0; - text-align: left; -} - -.login .submit-row { - clear: both; - padding: 1em 9.4em 0 0; -} - -/* GLOBAL */ - -th { - text-align: right; -} - -.module h2, .module caption { - text-align: right; -} - -.addlink, .changelink { - padding-left: 0px; - padding-right: 12px; - background-position: 100% 0.2em; -} - -.deletelink { - padding-left: 0px; - padding-right: 12px; - background-position: 100% 0.25em; -} - -.object-tools { - float: left; -} - -thead th:first-child, -tfoot td:first-child { - border-left: 1px solid #ddd !important; -} - -/* LAYOUT */ - -#user-tools { - right: auto; - left: 0; - text-align: left; -} - -div.breadcrumbs { - text-align: right; -} - -#content-main { - float: right; -} - -#content-related { - float: left; - margin-left: -19em; - margin-right: auto; -} - -.colMS { - margin-left: 20em !important; - margin-right: 10px !important; -} - -/* SORTABLE TABLES */ - - -table thead th.sorted a { - padding-left: 13px; - padding-right: 0px; -} - -table thead th.ascending a, -table thead th.descending a { - background-position: left; -} - -/* dashboard styles */ - -.dashboard .module table td a { - padding-left: .6em; - padding-right: 12px; -} - -/* changelists styles */ - -.change-list ul.toplinks li { - float: right; -} - -.change-list .filtered { - background: white url(../img/admin/changelist-bg_rtl.gif) top left repeat-y !important; -} - -.change-list .filtered table { - border-left: 1px solid #ddd; - border-right: 0px none; -} - -#changelist-filter { - right: auto; - left: 0; - border-left: 0px none; - border-right: 1px solid #ddd; -} - -.change-list .filtered .results, .change-list .filtered .paginator, .filtered #toolbar, .filtered div.xfull { - margin-right: 0px !important; - margin-left: 160px !important; -} - -#changelist-filter li.selected { - border-left: 0px none; - padding-left: 0px; - margin-left: 0; - border-right: 5px solid #ccc; - padding-right: 5px; - margin-right: -10px; -} - -.filtered .actions { - border-left:1px solid #DDDDDD; - margin-left:160px !important; - border-right: 0 none; - margin-right:0 !important; -} - -#changelist table tbody td:first-child, #changelist table tbody th:first-child { - border-right: 0; - border-left: 1px solid #ddd; -} - -/* FORMS */ - -.aligned label { - padding: 0 0 3px 1em; - float: right; -} - -.submit-row { - text-align: left -} - -.submit-row p.deletelink-box { - float: right; -} - -.submit-row .deletelink { - background: url(../img/admin/icon_deletelink.gif) 0 50% no-repeat; - padding-right: 14px; -} - -.vDateField, .vTimeField { - margin-left: 2px; -} - -form ul.inline li { - float: right; - padding-right: 0; - padding-left: 7px; -} - -input[type=submit].default, .submit-row input.default { - float: left; -} - -fieldset .field-box { - float: right; - margin-left: 20px; -} - -.errorlist li { - background-position: 100% .3em; - padding: 4px 25px 4px 5px; -} - -.errornote { - background-position: 100% .3em; - padding: 4px 25px 4px 5px; -} - -/* WIDGETS */ - -.calendarnav-previous { - top: 0; - left: auto; - right: 0; -} - -.calendarnav-next { - top: 0; - right: auto; - left: 0; -} - -.calendar caption, .calendarbox h2 { - text-align: center; -} - -.selector { - float: right; -} - -.selector .selector-filter { - text-align: right; -} - -.inline-deletelink { - float: left; -} - -/* MISC */ - -.inline-related h2, .inline-group h2 { - text-align: right -} - -.inline-related h3 span.delete { - padding-right: 20px; - padding-left: inherit; - left: 10px; - right: inherit; -} - -.inline-related h3 span.delete label { - margin-left: inherit; - margin-right: 2px; -} diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/img/gis/move_vertex_off.png b/lib/python2.7/site-packages/django/contrib/admin/media/img/gis/move_vertex_off.png deleted file mode 100644 index 296b2e29c..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/media/img/gis/move_vertex_off.png and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/img/gis/move_vertex_on.png b/lib/python2.7/site-packages/django/contrib/admin/media/img/gis/move_vertex_on.png deleted file mode 100644 index 21f4758d9..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admin/media/img/gis/move_vertex_on.png and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/js/LICENSE-JQUERY.txt b/lib/python2.7/site-packages/django/contrib/admin/media/js/LICENSE-JQUERY.txt deleted file mode 100644 index a4c5bd76a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/js/LICENSE-JQUERY.txt +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (c) 2010 John Resig, http://jquery.com/ - -Permission is hereby granted, free of charge, to any person obtaining -a copy of this software and associated documentation files (the -"Software"), to deal in the Software without restriction, including -without limitation the rights to use, copy, modify, merge, publish, -distribute, sublicense, and/or sell copies of the Software, and to -permit persons to whom the Software is furnished to do so, subject to -the following conditions: - -The above copyright notice and this permission notice shall be -included in all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, -EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF -MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND -NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE -LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION -OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION -WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/js/SelectBox.js b/lib/python2.7/site-packages/django/contrib/admin/media/js/SelectBox.js deleted file mode 100644 index f28c86151..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/js/SelectBox.js +++ /dev/null @@ -1,111 +0,0 @@ -var SelectBox = { - cache: new Object(), - init: function(id) { - var box = document.getElementById(id); - var node; - SelectBox.cache[id] = new Array(); - var cache = SelectBox.cache[id]; - for (var i = 0; (node = box.options[i]); i++) { - cache.push({value: node.value, text: node.text, displayed: 1}); - } - }, - redisplay: function(id) { - // Repopulate HTML select box from cache - var box = document.getElementById(id); - box.options.length = 0; // clear all options - for (var i = 0, j = SelectBox.cache[id].length; i < j; i++) { - var node = SelectBox.cache[id][i]; - if (node.displayed) { - box.options[box.options.length] = new Option(node.text, node.value, false, false); - } - } - }, - filter: function(id, text) { - // Redisplay the HTML select box, displaying only the choices containing ALL - // the words in text. (It's an AND search.) - var tokens = text.toLowerCase().split(/\s+/); - var node, token; - for (var i = 0; (node = SelectBox.cache[id][i]); i++) { - node.displayed = 1; - for (var j = 0; (token = tokens[j]); j++) { - if (node.text.toLowerCase().indexOf(token) == -1) { - node.displayed = 0; - } - } - } - SelectBox.redisplay(id); - }, - delete_from_cache: function(id, value) { - var node, delete_index = null; - for (var i = 0; (node = SelectBox.cache[id][i]); i++) { - if (node.value == value) { - delete_index = i; - break; - } - } - var j = SelectBox.cache[id].length - 1; - for (var i = delete_index; i < j; i++) { - SelectBox.cache[id][i] = SelectBox.cache[id][i+1]; - } - SelectBox.cache[id].length--; - }, - add_to_cache: function(id, option) { - SelectBox.cache[id].push({value: option.value, text: option.text, displayed: 1}); - }, - cache_contains: function(id, value) { - // Check if an item is contained in the cache - var node; - for (var i = 0; (node = SelectBox.cache[id][i]); i++) { - if (node.value == value) { - return true; - } - } - return false; - }, - move: function(from, to) { - var from_box = document.getElementById(from); - var to_box = document.getElementById(to); - var option; - for (var i = 0; (option = from_box.options[i]); i++) { - if (option.selected && SelectBox.cache_contains(from, option.value)) { - SelectBox.add_to_cache(to, {value: option.value, text: option.text, displayed: 1}); - SelectBox.delete_from_cache(from, option.value); - } - } - SelectBox.redisplay(from); - SelectBox.redisplay(to); - }, - move_all: function(from, to) { - var from_box = document.getElementById(from); - var to_box = document.getElementById(to); - var option; - for (var i = 0; (option = from_box.options[i]); i++) { - if (SelectBox.cache_contains(from, option.value)) { - SelectBox.add_to_cache(to, {value: option.value, text: option.text, displayed: 1}); - SelectBox.delete_from_cache(from, option.value); - } - } - SelectBox.redisplay(from); - SelectBox.redisplay(to); - }, - sort: function(id) { - SelectBox.cache[id].sort( function(a, b) { - a = a.text.toLowerCase(); - b = b.text.toLowerCase(); - try { - if (a > b) return 1; - if (a < b) return -1; - } - catch (e) { - // silently fail on IE 'unknown' exception - } - return 0; - } ); - }, - select_all: function(id) { - var box = document.getElementById(id); - for (var i = 0; i < box.options.length; i++) { - box.options[i].selected = 'selected'; - } - } -} diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/js/actions.js b/lib/python2.7/site-packages/django/contrib/admin/media/js/actions.js deleted file mode 100644 index 94aa6db93..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/js/actions.js +++ /dev/null @@ -1,139 +0,0 @@ -(function($) { - $.fn.actions = function(opts) { - var options = $.extend({}, $.fn.actions.defaults, opts); - var actionCheckboxes = $(this); - var list_editable_changed = false; - checker = function(checked) { - if (checked) { - showQuestion(); - } else { - reset(); - } - $(actionCheckboxes).attr("checked", checked) - .parent().parent().toggleClass(options.selectedClass, checked); - } - updateCounter = function() { - var sel = $(actionCheckboxes).filter(":checked").length; - $(options.counterContainer).html(interpolate( - ngettext('%(sel)s of %(cnt)s selected', '%(sel)s of %(cnt)s selected', sel), { - sel: sel, - cnt: _actions_icnt - }, true)); - $(options.allToggle).attr("checked", function() { - if (sel == actionCheckboxes.length) { - value = true; - showQuestion(); - } else { - value = false; - clearAcross(); - } - return value; - }); - } - showQuestion = function() { - $(options.acrossClears).hide(); - $(options.acrossQuestions).show(); - $(options.allContainer).hide(); - } - showClear = function() { - $(options.acrossClears).show(); - $(options.acrossQuestions).hide(); - $(options.actionContainer).toggleClass(options.selectedClass); - $(options.allContainer).show(); - $(options.counterContainer).hide(); - } - reset = function() { - $(options.acrossClears).hide(); - $(options.acrossQuestions).hide(); - $(options.allContainer).hide(); - $(options.counterContainer).show(); - } - clearAcross = function() { - reset(); - $(options.acrossInput).val(0); - $(options.actionContainer).removeClass(options.selectedClass); - } - // Show counter by default - $(options.counterContainer).show(); - // Check state of checkboxes and reinit state if needed - $(this).filter(":checked").each(function(i) { - $(this).parent().parent().toggleClass(options.selectedClass); - updateCounter(); - if ($(options.acrossInput).val() == 1) { - showClear(); - } - }); - $(options.allToggle).show().click(function() { - checker($(this).attr("checked")); - updateCounter(); - }); - $("div.actions span.question a").click(function(event) { - event.preventDefault(); - $(options.acrossInput).val(1); - showClear(); - }); - $("div.actions span.clear a").click(function(event) { - event.preventDefault(); - $(options.allToggle).attr("checked", false); - clearAcross(); - checker(0); - updateCounter(); - }); - lastChecked = null; - $(actionCheckboxes).click(function(event) { - if (!event) { var event = window.event; } - var target = event.target ? event.target : event.srcElement; - if (lastChecked && $.data(lastChecked) != $.data(target) && event.shiftKey == true) { - var inrange = false; - $(lastChecked).attr("checked", target.checked) - .parent().parent().toggleClass(options.selectedClass, target.checked); - $(actionCheckboxes).each(function() { - if ($.data(this) == $.data(lastChecked) || $.data(this) == $.data(target)) { - inrange = (inrange) ? false : true; - } - if (inrange) { - $(this).attr("checked", target.checked) - .parent().parent().toggleClass(options.selectedClass, target.checked); - } - }); - } - $(target).parent().parent().toggleClass(options.selectedClass, target.checked); - lastChecked = target; - updateCounter(); - }); - $('form#changelist-form table#result_list tr').find('td:gt(0) :input').change(function() { - list_editable_changed = true; - }); - $('form#changelist-form button[name="index"]').click(function(event) { - if (list_editable_changed) { - return confirm(gettext("You have unsaved changes on individual editable fields. If you run an action, your unsaved changes will be lost.")); - } - }); - $('form#changelist-form input[name="_save"]').click(function(event) { - var action_changed = false; - $('div.actions select option:selected').each(function() { - if ($(this).val()) { - action_changed = true; - } - }); - if (action_changed) { - if (list_editable_changed) { - return confirm(gettext("You have selected an action, but you haven't saved your changes to individual fields yet. Please click OK to save. You'll need to re-run the action.")); - } else { - return confirm(gettext("You have selected an action, and you haven't made any changes on individual fields. You're probably looking for the Go button rather than the Save button.")); - } - } - }); - } - /* Setup plugin defaults */ - $.fn.actions.defaults = { - actionContainer: "div.actions", - counterContainer: "span.action-counter", - allContainer: "div.actions span.all", - acrossInput: "div.actions input.select-across", - acrossQuestions: "div.actions span.question", - acrossClears: "div.actions span.clear", - allToggle: "#action-toggle", - selectedClass: "selected" - } -})(django.jQuery); diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/js/admin/DateTimeShortcuts.js b/lib/python2.7/site-packages/django/contrib/admin/media/js/admin/DateTimeShortcuts.js deleted file mode 100644 index a4293b305..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/js/admin/DateTimeShortcuts.js +++ /dev/null @@ -1,274 +0,0 @@ -// Inserts shortcut buttons after all of the following: -// -// - -var DateTimeShortcuts = { - calendars: [], - calendarInputs: [], - clockInputs: [], - calendarDivName1: 'calendarbox', // name of calendar
                                                                                                                                                                                                                                                              that gets toggled - calendarDivName2: 'calendarin', // name of
                                                                                                                                                                                                                                                              that contains calendar - calendarLinkName: 'calendarlink',// name of the link that is used to toggle - clockDivName: 'clockbox', // name of clock
                                                                                                                                                                                                                                                              that gets toggled - clockLinkName: 'clocklink', // name of the link that is used to toggle - shortCutsClass: 'datetimeshortcuts', // class of the clock and cal shortcuts - admin_media_prefix: '', - init: function() { - // Get admin_media_prefix by grabbing it off the window object. It's - // set in the admin/base.html template, so if it's not there, someone's - // overridden the template. In that case, we'll set a clearly-invalid - // value in the hopes that someone will examine HTTP requests and see it. - if (window.__admin_media_prefix__ != undefined) { - DateTimeShortcuts.admin_media_prefix = window.__admin_media_prefix__; - } else { - DateTimeShortcuts.admin_media_prefix = '/missing-admin-media-prefix/'; - } - - var inputs = document.getElementsByTagName('input'); - for (i=0; i - //

                                                                                                                                                                                                                                                              Choose a time

                                                                                                                                                                                                                                                              - // - //

                                                                                                                                                                                                                                                              Cancel

                                                                                                                                                                                                                                                              - //
                                                                                                                                                                                                                                                              - - var clock_box = document.createElement('div'); - clock_box.style.display = 'none'; - clock_box.style.position = 'absolute'; - clock_box.className = 'clockbox module'; - clock_box.setAttribute('id', DateTimeShortcuts.clockDivName + num); - document.body.appendChild(clock_box); - addEvent(clock_box, 'click', DateTimeShortcuts.cancelEventPropagation); - - quickElement('h2', clock_box, gettext('Choose a time')); - time_list = quickElement('ul', clock_box, ''); - time_list.className = 'timelist'; - time_format = get_format('TIME_INPUT_FORMATS')[0]; - quickElement("a", quickElement("li", time_list, ""), gettext("Now"), "href", "javascript:DateTimeShortcuts.handleClockQuicklink(" + num + ", new Date().strftime('" + time_format + "'));"); - quickElement("a", quickElement("li", time_list, ""), gettext("Midnight"), "href", "javascript:DateTimeShortcuts.handleClockQuicklink(" + num + ", new Date(1970,1,1,0,0,0,0).strftime('" + time_format + "'));"); - quickElement("a", quickElement("li", time_list, ""), gettext("6 a.m."), "href", "javascript:DateTimeShortcuts.handleClockQuicklink(" + num + ", new Date(1970,1,1,6,0,0,0).strftime('" + time_format + "'));"); - quickElement("a", quickElement("li", time_list, ""), gettext("Noon"), "href", "javascript:DateTimeShortcuts.handleClockQuicklink(" + num + ", new Date(1970,1,1,12,0,0,0).strftime('" + time_format + "'));"); - - cancel_p = quickElement('p', clock_box, ''); - cancel_p.className = 'calendar-cancel'; - quickElement('a', cancel_p, gettext('Cancel'), 'href', 'javascript:DateTimeShortcuts.dismissClock(' + num + ');'); - }, - openClock: function(num) { - var clock_box = document.getElementById(DateTimeShortcuts.clockDivName+num) - var clock_link = document.getElementById(DateTimeShortcuts.clockLinkName+num) - - // Recalculate the clockbox position - // is it left-to-right or right-to-left layout ? - if (getStyle(document.body,'direction')!='rtl') { - clock_box.style.left = findPosX(clock_link) + 17 + 'px'; - } - else { - // since style's width is in em, it'd be tough to calculate - // px value of it. let's use an estimated px for now - // TODO: IE returns wrong value for findPosX when in rtl mode - // (it returns as it was left aligned), needs to be fixed. - clock_box.style.left = findPosX(clock_link) - 110 + 'px'; - } - clock_box.style.top = Math.max(0, findPosY(clock_link) - 30) + 'px'; - - // Show the clock box - clock_box.style.display = 'block'; - addEvent(window.document, 'click', function() { DateTimeShortcuts.dismissClock(num); return true; }); - }, - dismissClock: function(num) { - document.getElementById(DateTimeShortcuts.clockDivName + num).style.display = 'none'; - window.document.onclick = null; - }, - handleClockQuicklink: function(num, val) { - DateTimeShortcuts.clockInputs[num].value = val; - DateTimeShortcuts.clockInputs[num].focus(); - DateTimeShortcuts.dismissClock(num); - }, - // Add calendar widget to a given field. - addCalendar: function(inp) { - var num = DateTimeShortcuts.calendars.length; - - DateTimeShortcuts.calendarInputs[num] = inp; - - // Shortcut links (calendar icon and "Today" link) - var shortcuts_span = document.createElement('span'); - shortcuts_span.className = DateTimeShortcuts.shortCutsClass; - inp.parentNode.insertBefore(shortcuts_span, inp.nextSibling); - var today_link = document.createElement('a'); - today_link.setAttribute('href', 'javascript:DateTimeShortcuts.handleCalendarQuickLink(' + num + ', 0);'); - today_link.appendChild(document.createTextNode(gettext('Today'))); - var cal_link = document.createElement('a'); - cal_link.setAttribute('href', 'javascript:DateTimeShortcuts.openCalendar(' + num + ');'); - cal_link.id = DateTimeShortcuts.calendarLinkName + num; - quickElement('img', cal_link, '', 'src', DateTimeShortcuts.admin_media_prefix + 'img/admin/icon_calendar.gif', 'alt', gettext('Calendar')); - shortcuts_span.appendChild(document.createTextNode('\240')); - shortcuts_span.appendChild(today_link); - shortcuts_span.appendChild(document.createTextNode('\240|\240')); - shortcuts_span.appendChild(cal_link); - - // Create calendarbox div. - // - // Markup looks like: - // - //
                                                                                                                                                                                                                                                              - //

                                                                                                                                                                                                                                                              - // - // February 2003 - //

                                                                                                                                                                                                                                                              - //
                                                                                                                                                                                                                                                              - // - //
                                                                                                                                                                                                                                                              - //
                                                                                                                                                                                                                                                              - // Yesterday | Today | Tomorrow - //
                                                                                                                                                                                                                                                              - //

                                                                                                                                                                                                                                                              Cancel

                                                                                                                                                                                                                                                              - //
                                                                                                                                                                                                                                                              - var cal_box = document.createElement('div'); - cal_box.style.display = 'none'; - cal_box.style.position = 'absolute'; - cal_box.className = 'calendarbox module'; - cal_box.setAttribute('id', DateTimeShortcuts.calendarDivName1 + num); - document.body.appendChild(cal_box); - addEvent(cal_box, 'click', DateTimeShortcuts.cancelEventPropagation); - - // next-prev links - var cal_nav = quickElement('div', cal_box, ''); - var cal_nav_prev = quickElement('a', cal_nav, '<', 'href', 'javascript:DateTimeShortcuts.drawPrev('+num+');'); - cal_nav_prev.className = 'calendarnav-previous'; - var cal_nav_next = quickElement('a', cal_nav, '>', 'href', 'javascript:DateTimeShortcuts.drawNext('+num+');'); - cal_nav_next.className = 'calendarnav-next'; - - // main box - var cal_main = quickElement('div', cal_box, '', 'id', DateTimeShortcuts.calendarDivName2 + num); - cal_main.className = 'calendar'; - DateTimeShortcuts.calendars[num] = new Calendar(DateTimeShortcuts.calendarDivName2 + num, DateTimeShortcuts.handleCalendarCallback(num)); - DateTimeShortcuts.calendars[num].drawCurrent(); - - // calendar shortcuts - var shortcuts = quickElement('div', cal_box, ''); - shortcuts.className = 'calendar-shortcuts'; - quickElement('a', shortcuts, gettext('Yesterday'), 'href', 'javascript:DateTimeShortcuts.handleCalendarQuickLink(' + num + ', -1);'); - shortcuts.appendChild(document.createTextNode('\240|\240')); - quickElement('a', shortcuts, gettext('Today'), 'href', 'javascript:DateTimeShortcuts.handleCalendarQuickLink(' + num + ', 0);'); - shortcuts.appendChild(document.createTextNode('\240|\240')); - quickElement('a', shortcuts, gettext('Tomorrow'), 'href', 'javascript:DateTimeShortcuts.handleCalendarQuickLink(' + num + ', +1);'); - - // cancel bar - var cancel_p = quickElement('p', cal_box, ''); - cancel_p.className = 'calendar-cancel'; - quickElement('a', cancel_p, gettext('Cancel'), 'href', 'javascript:DateTimeShortcuts.dismissCalendar(' + num + ');'); - }, - openCalendar: function(num) { - var cal_box = document.getElementById(DateTimeShortcuts.calendarDivName1+num) - var cal_link = document.getElementById(DateTimeShortcuts.calendarLinkName+num) - var inp = DateTimeShortcuts.calendarInputs[num]; - - // Determine if the current value in the input has a valid date. - // If so, draw the calendar with that date's year and month. - if (inp.value) { - var date_parts = inp.value.split('-'); - var year = date_parts[0]; - var month = parseFloat(date_parts[1]); - if (year.match(/\d\d\d\d/) && month >= 1 && month <= 12) { - DateTimeShortcuts.calendars[num].drawDate(month, year); - } - } - - // Recalculate the clockbox position - // is it left-to-right or right-to-left layout ? - if (getStyle(document.body,'direction')!='rtl') { - cal_box.style.left = findPosX(cal_link) + 17 + 'px'; - } - else { - // since style's width is in em, it'd be tough to calculate - // px value of it. let's use an estimated px for now - // TODO: IE returns wrong value for findPosX when in rtl mode - // (it returns as it was left aligned), needs to be fixed. - cal_box.style.left = findPosX(cal_link) - 180 + 'px'; - } - cal_box.style.top = Math.max(0, findPosY(cal_link) - 75) + 'px'; - - cal_box.style.display = 'block'; - addEvent(window.document, 'click', function() { DateTimeShortcuts.dismissCalendar(num); return true; }); - }, - dismissCalendar: function(num) { - document.getElementById(DateTimeShortcuts.calendarDivName1+num).style.display = 'none'; - window.document.onclick = null; - }, - drawPrev: function(num) { - DateTimeShortcuts.calendars[num].drawPreviousMonth(); - }, - drawNext: function(num) { - DateTimeShortcuts.calendars[num].drawNextMonth(); - }, - handleCalendarCallback: function(num) { - format = get_format('DATE_INPUT_FORMATS')[0]; - // the format needs to be escaped a little - format = format.replace('\\', '\\\\'); - format = format.replace('\r', '\\r'); - format = format.replace('\n', '\\n'); - format = format.replace('\t', '\\t'); - format = format.replace("'", "\\'"); - return ["function(y, m, d) { DateTimeShortcuts.calendarInputs[", - num, - "].value = new Date(y, m-1, d).strftime('", - format, - "');DateTimeShortcuts.calendarInputs[", - num, - "].focus();document.getElementById(DateTimeShortcuts.calendarDivName1+", - num, - ").style.display='none';}"].join(''); - }, - handleCalendarQuickLink: function(num, offset) { - var d = new Date(); - d.setDate(d.getDate() + offset) - DateTimeShortcuts.calendarInputs[num].value = d.strftime(get_format('DATE_INPUT_FORMATS')[0]); - DateTimeShortcuts.calendarInputs[num].focus(); - DateTimeShortcuts.dismissCalendar(num); - }, - cancelEventPropagation: function(e) { - if (!e) e = window.event; - e.cancelBubble = true; - if (e.stopPropagation) e.stopPropagation(); - } -} - -addEvent(window, 'load', DateTimeShortcuts.init); diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/js/admin/RelatedObjectLookups.js b/lib/python2.7/site-packages/django/contrib/admin/media/js/admin/RelatedObjectLookups.js deleted file mode 100644 index 1bc78f89b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/js/admin/RelatedObjectLookups.js +++ /dev/null @@ -1,96 +0,0 @@ -// Handles related-objects functionality: lookup link for raw_id_fields -// and Add Another links. - -function html_unescape(text) { - // Unescape a string that was escaped using django.utils.html.escape. - text = text.replace(/</g, '<'); - text = text.replace(/>/g, '>'); - text = text.replace(/"/g, '"'); - text = text.replace(/'/g, "'"); - text = text.replace(/&/g, '&'); - return text; -} - -// IE doesn't accept periods or dashes in the window name, but the element IDs -// we use to generate popup window names may contain them, therefore we map them -// to allowed characters in a reversible way so that we can locate the correct -// element when the popup window is dismissed. -function id_to_windowname(text) { - text = text.replace(/\./g, '__dot__'); - text = text.replace(/\-/g, '__dash__'); - return text; -} - -function windowname_to_id(text) { - text = text.replace(/__dot__/g, '.'); - text = text.replace(/__dash__/g, '-'); - return text; -} - -function showRelatedObjectLookupPopup(triggeringLink) { - var name = triggeringLink.id.replace(/^lookup_/, ''); - name = id_to_windowname(name); - var href; - if (triggeringLink.href.search(/\?/) >= 0) { - href = triggeringLink.href + '&pop=1'; - } else { - href = triggeringLink.href + '?pop=1'; - } - var win = window.open(href, name, 'height=500,width=800,resizable=yes,scrollbars=yes'); - win.focus(); - return false; -} - -function dismissRelatedLookupPopup(win, chosenId) { - var name = windowname_to_id(win.name); - var elem = document.getElementById(name); - if (elem.className.indexOf('vManyToManyRawIdAdminField') != -1 && elem.value) { - elem.value += ',' + chosenId; - } else { - document.getElementById(name).value = chosenId; - } - win.close(); -} - -function showAddAnotherPopup(triggeringLink) { - var name = triggeringLink.id.replace(/^add_/, ''); - name = id_to_windowname(name); - href = triggeringLink.href - if (href.indexOf('?') == -1) { - href += '?_popup=1'; - } else { - href += '&_popup=1'; - } - var win = window.open(href, name, 'height=500,width=800,resizable=yes,scrollbars=yes'); - win.focus(); - return false; -} - -function dismissAddAnotherPopup(win, newId, newRepr) { - // newId and newRepr are expected to have previously been escaped by - // django.utils.html.escape. - newId = html_unescape(newId); - newRepr = html_unescape(newRepr); - var name = windowname_to_id(win.name); - var elem = document.getElementById(name); - if (elem) { - if (elem.nodeName == 'SELECT') { - var o = new Option(newRepr, newId); - elem.options[elem.options.length] = o; - o.selected = true; - } else if (elem.nodeName == 'INPUT') { - if (elem.className.indexOf('vManyToManyRawIdAdminField') != -1 && elem.value) { - elem.value += ',' + newId; - } else { - elem.value = newId; - } - } - } else { - var toId = name + "_to"; - elem = document.getElementById(toId); - var o = new Option(newRepr, newId); - SelectBox.add_to_cache(toId, o); - SelectBox.redisplay(toId); - } - win.close(); -} diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/js/calendar.js b/lib/python2.7/site-packages/django/contrib/admin/media/js/calendar.js deleted file mode 100644 index c95a95db1..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/js/calendar.js +++ /dev/null @@ -1,156 +0,0 @@ -/* -calendar.js - Calendar functions by Adrian Holovaty -*/ - -function removeChildren(a) { // "a" is reference to an object - while (a.hasChildNodes()) a.removeChild(a.lastChild); -} - -// quickElement(tagType, parentReference, textInChildNode, [, attribute, attributeValue ...]); -function quickElement() { - var obj = document.createElement(arguments[0]); - if (arguments[2] != '' && arguments[2] != null) { - var textNode = document.createTextNode(arguments[2]); - obj.appendChild(textNode); - } - var len = arguments.length; - for (var i = 3; i < len; i += 2) { - obj.setAttribute(arguments[i], arguments[i+1]); - } - arguments[1].appendChild(obj); - return obj; -} - -// CalendarNamespace -- Provides a collection of HTML calendar-related helper functions -var CalendarNamespace = { - monthsOfYear: gettext('January February March April May June July August September October November December').split(' '), - daysOfWeek: gettext('S M T W T F S').split(' '), - firstDayOfWeek: parseInt(get_format('FIRST_DAY_OF_WEEK')), - isLeapYear: function(year) { - return (((year % 4)==0) && ((year % 100)!=0) || ((year % 400)==0)); - }, - getDaysInMonth: function(month,year) { - var days; - if (month==1 || month==3 || month==5 || month==7 || month==8 || month==10 || month==12) { - days = 31; - } - else if (month==4 || month==6 || month==9 || month==11) { - days = 30; - } - else if (month==2 && CalendarNamespace.isLeapYear(year)) { - days = 29; - } - else { - days = 28; - } - return days; - }, - draw: function(month, year, div_id, callback) { // month = 1-12, year = 1-9999 - var today = new Date(); - var todayDay = today.getDate(); - var todayMonth = today.getMonth()+1; - var todayYear = today.getFullYear(); - var todayClass = ''; - - month = parseInt(month); - year = parseInt(year); - var calDiv = document.getElementById(div_id); - removeChildren(calDiv); - var calTable = document.createElement('table'); - quickElement('caption', calTable, CalendarNamespace.monthsOfYear[month-1] + ' ' + year); - var tableBody = quickElement('tbody', calTable); - - // Draw days-of-week header - var tableRow = quickElement('tr', tableBody); - for (var i = 0; i < 7; i++) { - quickElement('th', tableRow, CalendarNamespace.daysOfWeek[(i + CalendarNamespace.firstDayOfWeek) % 7]); - } - - var startingPos = new Date(year, month-1, 1 - CalendarNamespace.firstDayOfWeek).getDay(); - var days = CalendarNamespace.getDaysInMonth(month, year); - - // Draw blanks before first of month - tableRow = quickElement('tr', tableBody); - for (var i = 0; i < startingPos; i++) { - var _cell = quickElement('td', tableRow, ' '); - _cell.style.backgroundColor = '#f3f3f3'; - } - - // Draw days of month - var currentDay = 1; - for (var i = startingPos; currentDay <= days; i++) { - if (i%7 == 0 && currentDay != 1) { - tableRow = quickElement('tr', tableBody); - } - if ((currentDay==todayDay) && (month==todayMonth) && (year==todayYear)) { - todayClass='today'; - } else { - todayClass=''; - } - var cell = quickElement('td', tableRow, '', 'class', todayClass); - - quickElement('a', cell, currentDay, 'href', 'javascript:void(' + callback + '('+year+','+month+','+currentDay+'));'); - currentDay++; - } - - // Draw blanks after end of month (optional, but makes for valid code) - while (tableRow.childNodes.length < 7) { - var _cell = quickElement('td', tableRow, ' '); - _cell.style.backgroundColor = '#f3f3f3'; - } - - calDiv.appendChild(calTable); - } -} - -// Calendar -- A calendar instance -function Calendar(div_id, callback) { - // div_id (string) is the ID of the element in which the calendar will - // be displayed - // callback (string) is the name of a JavaScript function that will be - // called with the parameters (year, month, day) when a day in the - // calendar is clicked - this.div_id = div_id; - this.callback = callback; - this.today = new Date(); - this.currentMonth = this.today.getMonth() + 1; - this.currentYear = this.today.getFullYear(); -} -Calendar.prototype = { - drawCurrent: function() { - CalendarNamespace.draw(this.currentMonth, this.currentYear, this.div_id, this.callback); - }, - drawDate: function(month, year) { - this.currentMonth = month; - this.currentYear = year; - this.drawCurrent(); - }, - drawPreviousMonth: function() { - if (this.currentMonth == 1) { - this.currentMonth = 12; - this.currentYear--; - } - else { - this.currentMonth--; - } - this.drawCurrent(); - }, - drawNextMonth: function() { - if (this.currentMonth == 12) { - this.currentMonth = 1; - this.currentYear++; - } - else { - this.currentMonth++; - } - this.drawCurrent(); - }, - drawPreviousYear: function() { - this.currentYear--; - this.drawCurrent(); - }, - drawNextYear: function() { - this.currentYear++; - this.drawCurrent(); - } -} diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/js/collapse.js b/lib/python2.7/site-packages/django/contrib/admin/media/js/collapse.js deleted file mode 100644 index 0a1e2d889..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/js/collapse.js +++ /dev/null @@ -1,27 +0,0 @@ -(function($) { - $(document).ready(function() { - // Add anchor tag for Show/Hide link - $("fieldset.collapse").each(function(i, elem) { - // Don't hide if fields in this fieldset have errors - if ( $(elem).find("div.errors").length == 0 ) { - $(elem).addClass("collapsed"); - $(elem).find("h2").first().append(' (' + gettext("Show") + - ')'); - } - }); - // Add toggle to anchor tag - $("fieldset.collapse a.collapse-toggle").toggle( - function() { // Show - $(this).text(gettext("Hide")); - $(this).closest("fieldset").removeClass("collapsed"); - return false; - }, - function() { // Hide - $(this).text(gettext("Show")); - $(this).closest("fieldset").addClass("collapsed"); - return false; - } - ); - }); -})(django.jQuery); diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/js/compress.py b/lib/python2.7/site-packages/django/contrib/admin/media/js/compress.py deleted file mode 100644 index 8d2caa28e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/js/compress.py +++ /dev/null @@ -1,47 +0,0 @@ -#!/usr/bin/env python -import os -import optparse -import subprocess -import sys - -here = os.path.dirname(__file__) - -def main(): - usage = "usage: %prog [file1..fileN]" - description = """With no file paths given this script will automatically -compress all jQuery-based files of the admin app. Requires the Google Closure -Compiler library and Java version 6 or later.""" - parser = optparse.OptionParser(usage, description=description) - parser.add_option("-c", dest="compiler", default="~/bin/compiler.jar", - help="path to Closure Compiler jar file") - parser.add_option("-v", "--verbose", - action="store_true", dest="verbose") - parser.add_option("-q", "--quiet", - action="store_false", dest="verbose") - (options, args) = parser.parse_args() - - compiler = os.path.expanduser(options.compiler) - if not os.path.exists(compiler): - sys.exit("Google Closure compiler jar file %s not found. Please use the -c option to specify the path." % compiler) - - if not args: - if options.verbose: - sys.stdout.write("No filenames given; defaulting to admin scripts\n") - args = [os.path.join(here, f) for f in [ - "actions.js", "collapse.js", "inlines.js", "prepopulate.js"]] - - for arg in args: - if not arg.endswith(".js"): - arg = arg + ".js" - to_compress = os.path.expanduser(arg) - if os.path.exists(to_compress): - to_compress_min = "%s.min.js" % "".join(arg.rsplit(".js")) - cmd = "java -jar %s --js %s --js_output_file %s" % (compiler, to_compress, to_compress_min) - if options.verbose: - sys.stdout.write("Running: %s\n" % cmd) - subprocess.call(cmd.split()) - else: - sys.stdout.write("File %s not found. Sure it exists?\n" % to_compress) - -if __name__ == '__main__': - main() diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/js/getElementsBySelector.js b/lib/python2.7/site-packages/django/contrib/admin/media/js/getElementsBySelector.js deleted file mode 100644 index 15b57a190..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/js/getElementsBySelector.js +++ /dev/null @@ -1,167 +0,0 @@ -/* document.getElementsBySelector(selector) - - returns an array of element objects from the current document - matching the CSS selector. Selectors can contain element names, - class names and ids and can be nested. For example: - - elements = document.getElementsBySelect('div#main p a.external') - - Will return an array of all 'a' elements with 'external' in their - class attribute that are contained inside 'p' elements that are - contained inside the 'div' element which has id="main" - - New in version 0.4: Support for CSS2 and CSS3 attribute selectors: - See http://www.w3.org/TR/css3-selectors/#attribute-selectors - - Version 0.4 - Simon Willison, March 25th 2003 - -- Works in Phoenix 0.5, Mozilla 1.3, Opera 7, Internet Explorer 6, Internet Explorer 5 on Windows - -- Opera 7 fails -*/ - -function getAllChildren(e) { - // Returns all children of element. Workaround required for IE5/Windows. Ugh. - return e.all ? e.all : e.getElementsByTagName('*'); -} - -document.getElementsBySelector = function(selector) { - // Attempt to fail gracefully in lesser browsers - if (!document.getElementsByTagName) { - return new Array(); - } - // Split selector in to tokens - var tokens = selector.split(' '); - var currentContext = new Array(document); - for (var i = 0; i < tokens.length; i++) { - token = tokens[i].replace(/^\s+/,'').replace(/\s+$/,'');; - if (token.indexOf('#') > -1) { - // Token is an ID selector - var bits = token.split('#'); - var tagName = bits[0]; - var id = bits[1]; - var element = document.getElementById(id); - if (!element || (tagName && element.nodeName.toLowerCase() != tagName)) { - // ID not found or tag with that ID not found, return false. - return new Array(); - } - // Set currentContext to contain just this element - currentContext = new Array(element); - continue; // Skip to next token - } - if (token.indexOf('.') > -1) { - // Token contains a class selector - var bits = token.split('.'); - var tagName = bits[0]; - var className = bits[1]; - if (!tagName) { - tagName = '*'; - } - // Get elements matching tag, filter them for class selector - var found = new Array; - var foundCount = 0; - for (var h = 0; h < currentContext.length; h++) { - var elements; - if (tagName == '*') { - elements = getAllChildren(currentContext[h]); - } else { - try { - elements = currentContext[h].getElementsByTagName(tagName); - } - catch(e) { - elements = []; - } - } - for (var j = 0; j < elements.length; j++) { - found[foundCount++] = elements[j]; - } - } - currentContext = new Array; - var currentContextIndex = 0; - for (var k = 0; k < found.length; k++) { - if (found[k].className && found[k].className.match(new RegExp('\\b'+className+'\\b'))) { - currentContext[currentContextIndex++] = found[k]; - } - } - continue; // Skip to next token - } - // Code to deal with attribute selectors - if (token.match(/^(\w*)\[(\w+)([=~\|\^\$\*]?)=?"?([^\]"]*)"?\]$/)) { - var tagName = RegExp.$1; - var attrName = RegExp.$2; - var attrOperator = RegExp.$3; - var attrValue = RegExp.$4; - if (!tagName) { - tagName = '*'; - } - // Grab all of the tagName elements within current context - var found = new Array; - var foundCount = 0; - for (var h = 0; h < currentContext.length; h++) { - var elements; - if (tagName == '*') { - elements = getAllChildren(currentContext[h]); - } else { - elements = currentContext[h].getElementsByTagName(tagName); - } - for (var j = 0; j < elements.length; j++) { - found[foundCount++] = elements[j]; - } - } - currentContext = new Array; - var currentContextIndex = 0; - var checkFunction; // This function will be used to filter the elements - switch (attrOperator) { - case '=': // Equality - checkFunction = function(e) { return (e.getAttribute(attrName) == attrValue); }; - break; - case '~': // Match one of space seperated words - checkFunction = function(e) { return (e.getAttribute(attrName).match(new RegExp('\\b'+attrValue+'\\b'))); }; - break; - case '|': // Match start with value followed by optional hyphen - checkFunction = function(e) { return (e.getAttribute(attrName).match(new RegExp('^'+attrValue+'-?'))); }; - break; - case '^': // Match starts with value - checkFunction = function(e) { return (e.getAttribute(attrName).indexOf(attrValue) == 0); }; - break; - case '$': // Match ends with value - fails with "Warning" in Opera 7 - checkFunction = function(e) { return (e.getAttribute(attrName).lastIndexOf(attrValue) == e.getAttribute(attrName).length - attrValue.length); }; - break; - case '*': // Match ends with value - checkFunction = function(e) { return (e.getAttribute(attrName).indexOf(attrValue) > -1); }; - break; - default : - // Just test for existence of attribute - checkFunction = function(e) { return e.getAttribute(attrName); }; - } - currentContext = new Array; - var currentContextIndex = 0; - for (var k = 0; k < found.length; k++) { - if (checkFunction(found[k])) { - currentContext[currentContextIndex++] = found[k]; - } - } - // alert('Attribute Selector: '+tagName+' '+attrName+' '+attrOperator+' '+attrValue); - continue; // Skip to next token - } - // If we get here, token is JUST an element (not a class or ID selector) - tagName = token; - var found = new Array; - var foundCount = 0; - for (var h = 0; h < currentContext.length; h++) { - var elements = currentContext[h].getElementsByTagName(tagName); - for (var j = 0; j < elements.length; j++) { - found[foundCount++] = elements[j]; - } - } - currentContext = found; - } - return currentContext; -} - -/* That revolting regular expression explained -/^(\w+)\[(\w+)([=~\|\^\$\*]?)=?"?([^\]"]*)"?\]$/ - \---/ \---/\-------------/ \-------/ - | | | | - | | | The value - | | ~,|,^,$,* or = - | Attribute - Tag -*/ diff --git a/lib/python2.7/site-packages/django/contrib/admin/media/js/inlines.js b/lib/python2.7/site-packages/django/contrib/admin/media/js/inlines.js deleted file mode 100644 index bddd6f75b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/media/js/inlines.js +++ /dev/null @@ -1,136 +0,0 @@ -/** - * Django admin inlines - * - * Based on jQuery Formset 1.1 - * @author Stanislaus Madueke (stan DOT madueke AT gmail DOT com) - * @requires jQuery 1.2.6 or later - * - * Copyright (c) 2009, Stanislaus Madueke - * All rights reserved. - * - * Spiced up with Code from Zain Memon's GSoC project 2009 - * and modified for Django by Jannis Leidel - * - * Licensed under the New BSD License - * See: http://www.opensource.org/licenses/bsd-license.php - */ -(function($) { - $.fn.formset = function(opts) { - var options = $.extend({}, $.fn.formset.defaults, opts); - var updateElementIndex = function(el, prefix, ndx) { - var id_regex = new RegExp("(" + prefix + "-(\\d+|__prefix__))"); - var replacement = prefix + "-" + ndx; - if ($(el).attr("for")) { - $(el).attr("for", $(el).attr("for").replace(id_regex, replacement)); - } - if (el.id) { - el.id = el.id.replace(id_regex, replacement); - } - if (el.name) { - el.name = el.name.replace(id_regex, replacement); - } - }; - var totalForms = $("#id_" + options.prefix + "-TOTAL_FORMS").attr("autocomplete", "off"); - var nextIndex = parseInt(totalForms.val()); - var maxForms = $("#id_" + options.prefix + "-MAX_NUM_FORMS").attr("autocomplete", "off"); - // only show the add button if we are allowed to add more items, - // note that max_num = None translates to a blank string. - var showAddButton = maxForms.val() == '' || (maxForms.val()-totalForms.val()) > 0; - $(this).each(function(i) { - $(this).not("." + options.emptyCssClass).addClass(options.formCssClass); - }); - if ($(this).length && showAddButton) { - var addButton; - if ($(this).attr("tagName") == "TR") { - // If forms are laid out as table rows, insert the - // "add" button in a new table row: - var numCols = this.eq(0).children().length; - $(this).parent().append('' + options.addText + ""); - addButton = $(this).parent().find("tr:last a"); - } else { - // Otherwise, insert it immediately after the last form: - $(this).filter(":last").after('"); - addButton = $(this).filter(":last").next().find("a"); - } - addButton.click(function() { - var totalForms = $("#id_" + options.prefix + "-TOTAL_FORMS"); - var template = $("#" + options.prefix + "-empty"); - var row = template.clone(true); - row.removeClass(options.emptyCssClass) - .addClass(options.formCssClass) - .attr("id", options.prefix + "-" + nextIndex); - if (row.is("tr")) { - // If the forms are laid out in table rows, insert - // the remove button into the last table cell: - row.children(":last").append('"); - } else if (row.is("ul") || row.is("ol")) { - // If they're laid out as an ordered/unordered list, - // insert an
                                                                                                                                                                                                                                                            • after the last list item: - row.append('
                                                                                                                                                                                                                                                            • ' + options.deleteText + "
                                                                                                                                                                                                                                                            • "); - } else { - // Otherwise, just insert the remove button as the - // last child element of the form's container: - row.children(":first").append('' + options.deleteText + ""); - } - row.find("*").each(function() { - updateElementIndex(this, options.prefix, totalForms.val()); - }); - // Insert the new form when it has been fully edited - row.insertBefore($(template)); - // Update number of total forms - $(totalForms).val(parseInt(totalForms.val()) + 1); - nextIndex += 1; - // Hide add button in case we've hit the max, except we want to add infinitely - if ((maxForms.val() != '') && (maxForms.val()-totalForms.val()) <= 0) { - addButton.parent().hide(); - } - // The delete button of each row triggers a bunch of other things - row.find("a." + options.deleteCssClass).click(function() { - // Remove the parent form containing this button: - var row = $(this).parents("." + options.formCssClass); - row.remove(); - nextIndex -= 1; - // If a post-delete callback was provided, call it with the deleted form: - if (options.removed) { - options.removed(row); - } - // Update the TOTAL_FORMS form count. - var forms = $("." + options.formCssClass); - $("#id_" + options.prefix + "-TOTAL_FORMS").val(forms.length); - // Show add button again once we drop below max - if ((maxForms.val() == '') || (maxForms.val()-forms.length) > 0) { - addButton.parent().show(); - } - // Also, update names and ids for all remaining form controls - // so they remain in sequence: - for (var i=0, formCount=forms.length; i)[^>]*$|^#([\w-]+)$/, - - // Is it a simple selector - isSimple = /^.[^:#\[\.,]*$/, - - // Check if a string has a non-whitespace character in it - rnotwhite = /\S/, - - // Used for trimming whitespace - rtrim = /^(\s|\u00A0)+|(\s|\u00A0)+$/g, - - // Match a standalone tag - rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/, - - // Keep a UserAgent string for use with jQuery.browser - userAgent = navigator.userAgent, - - // For matching the engine and version of the browser - browserMatch, - - // Has the ready events already been bound? - readyBound = false, - - // The functions to execute on DOM ready - readyList = [], - - // The ready event handler - DOMContentLoaded, - - // Save a reference to some core methods - toString = Object.prototype.toString, - hasOwnProperty = Object.prototype.hasOwnProperty, - push = Array.prototype.push, - slice = Array.prototype.slice, - indexOf = Array.prototype.indexOf; - -jQuery.fn = jQuery.prototype = { - init: function( selector, context ) { - var match, elem, ret, doc; - - // Handle $(""), $(null), or $(undefined) - if ( !selector ) { - return this; - } - - // Handle $(DOMElement) - if ( selector.nodeType ) { - this.context = this[0] = selector; - this.length = 1; - return this; - } - - // The body element only exists once, optimize finding it - if ( selector === "body" && !context ) { - this.context = document; - this[0] = document.body; - this.selector = "body"; - this.length = 1; - return this; - } - - // Handle HTML strings - if ( typeof selector === "string" ) { - // Are we dealing with HTML string or an ID? - match = quickExpr.exec( selector ); - - // Verify a match, and that no context was specified for #id - if ( match && (match[1] || !context) ) { - - // HANDLE: $(html) -> $(array) - if ( match[1] ) { - doc = (context ? context.ownerDocument || context : document); - - // If a single string is passed in and it's a single tag - // just do a createElement and skip the rest - ret = rsingleTag.exec( selector ); - - if ( ret ) { - if ( jQuery.isPlainObject( context ) ) { - selector = [ document.createElement( ret[1] ) ]; - jQuery.fn.attr.call( selector, context, true ); - - } else { - selector = [ doc.createElement( ret[1] ) ]; - } - - } else { - ret = buildFragment( [ match[1] ], [ doc ] ); - selector = (ret.cacheable ? ret.fragment.cloneNode(true) : ret.fragment).childNodes; - } - - return jQuery.merge( this, selector ); - - // HANDLE: $("#id") - } else { - elem = document.getElementById( match[2] ); - - if ( elem ) { - // Handle the case where IE and Opera return items - // by name instead of ID - if ( elem.id !== match[2] ) { - return rootjQuery.find( selector ); - } - - // Otherwise, we inject the element directly into the jQuery object - this.length = 1; - this[0] = elem; - } - - this.context = document; - this.selector = selector; - return this; - } - - // HANDLE: $("TAG") - } else if ( !context && /^\w+$/.test( selector ) ) { - this.selector = selector; - this.context = document; - selector = document.getElementsByTagName( selector ); - return jQuery.merge( this, selector ); - - // HANDLE: $(expr, $(...)) - } else if ( !context || context.jquery ) { - return (context || rootjQuery).find( selector ); - - // HANDLE: $(expr, context) - // (which is just equivalent to: $(context).find(expr) - } else { - return jQuery( context ).find( selector ); - } - - // HANDLE: $(function) - // Shortcut for document ready - } else if ( jQuery.isFunction( selector ) ) { - return rootjQuery.ready( selector ); - } - - if (selector.selector !== undefined) { - this.selector = selector.selector; - this.context = selector.context; - } - - return jQuery.makeArray( selector, this ); - }, - - // Start with an empty selector - selector: "", - - // The current version of jQuery being used - jquery: "1.4.2", - - // The default length of a jQuery object is 0 - length: 0, - - // The number of elements contained in the matched element set - size: function() { - return this.length; - }, - - toArray: function() { - return slice.call( this, 0 ); - }, - - // Get the Nth element in the matched element set OR - // Get the whole matched element set as a clean array - get: function( num ) { - return num == null ? - - // Return a 'clean' array - this.toArray() : - - // Return just the object - ( num < 0 ? this.slice(num)[ 0 ] : this[ num ] ); - }, - - // Take an array of elements and push it onto the stack - // (returning the new matched element set) - pushStack: function( elems, name, selector ) { - // Build a new jQuery matched element set - var ret = jQuery(); - - if ( jQuery.isArray( elems ) ) { - push.apply( ret, elems ); - - } else { - jQuery.merge( ret, elems ); - } - - // Add the old object onto the stack (as a reference) - ret.prevObject = this; - - ret.context = this.context; - - if ( name === "find" ) { - ret.selector = this.selector + (this.selector ? " " : "") + selector; - } else if ( name ) { - ret.selector = this.selector + "." + name + "(" + selector + ")"; - } - - // Return the newly-formed element set - return ret; - }, - - // Execute a callback for every element in the matched set. - // (You can seed the arguments with an array of args, but this is - // only used internally.) - each: function( callback, args ) { - return jQuery.each( this, callback, args ); - }, - - ready: function( fn ) { - // Attach the listeners - jQuery.bindReady(); - - // If the DOM is already ready - if ( jQuery.isReady ) { - // Execute the function immediately - fn.call( document, jQuery ); - - // Otherwise, remember the function for later - } else if ( readyList ) { - // Add the function to the wait list - readyList.push( fn ); - } - - return this; - }, - - eq: function( i ) { - return i === -1 ? - this.slice( i ) : - this.slice( i, +i + 1 ); - }, - - first: function() { - return this.eq( 0 ); - }, - - last: function() { - return this.eq( -1 ); - }, - - slice: function() { - return this.pushStack( slice.apply( this, arguments ), - "slice", slice.call(arguments).join(",") ); - }, - - map: function( callback ) { - return this.pushStack( jQuery.map(this, function( elem, i ) { - return callback.call( elem, i, elem ); - })); - }, - - end: function() { - return this.prevObject || jQuery(null); - }, - - // For internal use only. - // Behaves like an Array's method, not like a jQuery method. - push: push, - sort: [].sort, - splice: [].splice -}; - -// Give the init function the jQuery prototype for later instantiation -jQuery.fn.init.prototype = jQuery.fn; - -jQuery.extend = jQuery.fn.extend = function() { - // copy reference to target object - var target = arguments[0] || {}, i = 1, length = arguments.length, deep = false, options, name, src, copy; - - // Handle a deep copy situation - if ( typeof target === "boolean" ) { - deep = target; - target = arguments[1] || {}; - // skip the boolean and the target - i = 2; - } - - // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !jQuery.isFunction(target) ) { - target = {}; - } - - // extend jQuery itself if only one argument is passed - if ( length === i ) { - target = this; - --i; - } - - for ( ; i < length; i++ ) { - // Only deal with non-null/undefined values - if ( (options = arguments[ i ]) != null ) { - // Extend the base object - for ( name in options ) { - src = target[ name ]; - copy = options[ name ]; - - // Prevent never-ending loop - if ( target === copy ) { - continue; - } - - // Recurse if we're merging object literal values or arrays - if ( deep && copy && ( jQuery.isPlainObject(copy) || jQuery.isArray(copy) ) ) { - var clone = src && ( jQuery.isPlainObject(src) || jQuery.isArray(src) ) ? src - : jQuery.isArray(copy) ? [] : {}; - - // Never move original objects, clone them - target[ name ] = jQuery.extend( deep, clone, copy ); - - // Don't bring in undefined values - } else if ( copy !== undefined ) { - target[ name ] = copy; - } - } - } - } - - // Return the modified object - return target; -}; - -jQuery.extend({ - noConflict: function( deep ) { - window.$ = _$; - - if ( deep ) { - window.jQuery = _jQuery; - } - - return jQuery; - }, - - // Is the DOM ready to be used? Set to true once it occurs. - isReady: false, - - // Handle when the DOM is ready - ready: function() { - // Make sure that the DOM is not already loaded - if ( !jQuery.isReady ) { - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( !document.body ) { - return setTimeout( jQuery.ready, 13 ); - } - - // Remember that the DOM is ready - jQuery.isReady = true; - - // If there are functions bound, to execute - if ( readyList ) { - // Execute all of them - var fn, i = 0; - while ( (fn = readyList[ i++ ]) ) { - fn.call( document, jQuery ); - } - - // Reset the list of functions - readyList = null; - } - - // Trigger any bound ready events - if ( jQuery.fn.triggerHandler ) { - jQuery( document ).triggerHandler( "ready" ); - } - } - }, - - bindReady: function() { - if ( readyBound ) { - return; - } - - readyBound = true; - - // Catch cases where $(document).ready() is called after the - // browser event has already occurred. - if ( document.readyState === "complete" ) { - return jQuery.ready(); - } - - // Mozilla, Opera and webkit nightlies currently support this event - if ( document.addEventListener ) { - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - - // A fallback to window.onload, that will always work - window.addEventListener( "load", jQuery.ready, false ); - - // If IE event model is used - } else if ( document.attachEvent ) { - // ensure firing before onload, - // maybe late but safe also for iframes - document.attachEvent("onreadystatechange", DOMContentLoaded); - - // A fallback to window.onload, that will always work - window.attachEvent( "onload", jQuery.ready ); - - // If IE and not a frame - // continually check to see if the document is ready - var toplevel = false; - - try { - toplevel = window.frameElement == null; - } catch(e) {} - - if ( document.documentElement.doScroll && toplevel ) { - doScrollCheck(); - } - } - }, - - // See test/unit/core.js for details concerning isFunction. - // Since version 1.3, DOM methods and functions like alert - // aren't supported. They return false on IE (#2968). - isFunction: function( obj ) { - return toString.call(obj) === "[object Function]"; - }, - - isArray: function( obj ) { - return toString.call(obj) === "[object Array]"; - }, - - isPlainObject: function( obj ) { - // Must be an Object. - // Because of IE, we also have to check the presence of the constructor property. - // Make sure that DOM nodes and window objects don't pass through, as well - if ( !obj || toString.call(obj) !== "[object Object]" || obj.nodeType || obj.setInterval ) { - return false; - } - - // Not own constructor property must be Object - if ( obj.constructor - && !hasOwnProperty.call(obj, "constructor") - && !hasOwnProperty.call(obj.constructor.prototype, "isPrototypeOf") ) { - return false; - } - - // Own properties are enumerated firstly, so to speed up, - // if last one is own, then all properties are own. - - var key; - for ( key in obj ) {} - - return key === undefined || hasOwnProperty.call( obj, key ); - }, - - isEmptyObject: function( obj ) { - for ( var name in obj ) { - return false; - } - return true; - }, - - error: function( msg ) { - throw msg; - }, - - parseJSON: function( data ) { - if ( typeof data !== "string" || !data ) { - return null; - } - - // Make sure leading/trailing whitespace is removed (IE can't handle it) - data = jQuery.trim( data ); - - // Make sure the incoming data is actual JSON - // Logic borrowed from http://json.org/json2.js - if ( /^[\],:{}\s]*$/.test(data.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, "@") - .replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, "]") - .replace(/(?:^|:|,)(?:\s*\[)+/g, "")) ) { - - // Try to use the native JSON parser first - return window.JSON && window.JSON.parse ? - window.JSON.parse( data ) : - (new Function("return " + data))(); - - } else { - jQuery.error( "Invalid JSON: " + data ); - } - }, - - noop: function() {}, - - // Evalulates a script in a global context - globalEval: function( data ) { - if ( data && rnotwhite.test(data) ) { - // Inspired by code by Andrea Giammarchi - // http://webreflection.blogspot.com/2007/08/global-scope-evaluation-and-dom.html - var head = document.getElementsByTagName("head")[0] || document.documentElement, - script = document.createElement("script"); - - script.type = "text/javascript"; - - if ( jQuery.support.scriptEval ) { - script.appendChild( document.createTextNode( data ) ); - } else { - script.text = data; - } - - // Use insertBefore instead of appendChild to circumvent an IE6 bug. - // This arises when a base node is used (#2709). - head.insertBefore( script, head.firstChild ); - head.removeChild( script ); - } - }, - - nodeName: function( elem, name ) { - return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); - }, - - // args is for internal usage only - each: function( object, callback, args ) { - var name, i = 0, - length = object.length, - isObj = length === undefined || jQuery.isFunction(object); - - if ( args ) { - if ( isObj ) { - for ( name in object ) { - if ( callback.apply( object[ name ], args ) === false ) { - break; - } - } - } else { - for ( ; i < length; ) { - if ( callback.apply( object[ i++ ], args ) === false ) { - break; - } - } - } - - // A special, fast, case for the most common use of each - } else { - if ( isObj ) { - for ( name in object ) { - if ( callback.call( object[ name ], name, object[ name ] ) === false ) { - break; - } - } - } else { - for ( var value = object[0]; - i < length && callback.call( value, i, value ) !== false; value = object[++i] ) {} - } - } - - return object; - }, - - trim: function( text ) { - return (text || "").replace( rtrim, "" ); - }, - - // results is for internal usage only - makeArray: function( array, results ) { - var ret = results || []; - - if ( array != null ) { - // The window, strings (and functions) also have 'length' - // The extra typeof function check is to prevent crashes - // in Safari 2 (See: #3039) - if ( array.length == null || typeof array === "string" || jQuery.isFunction(array) || (typeof array !== "function" && array.setInterval) ) { - push.call( ret, array ); - } else { - jQuery.merge( ret, array ); - } - } - - return ret; - }, - - inArray: function( elem, array ) { - if ( array.indexOf ) { - return array.indexOf( elem ); - } - - for ( var i = 0, length = array.length; i < length; i++ ) { - if ( array[ i ] === elem ) { - return i; - } - } - - return -1; - }, - - merge: function( first, second ) { - var i = first.length, j = 0; - - if ( typeof second.length === "number" ) { - for ( var l = second.length; j < l; j++ ) { - first[ i++ ] = second[ j ]; - } - - } else { - while ( second[j] !== undefined ) { - first[ i++ ] = second[ j++ ]; - } - } - - first.length = i; - - return first; - }, - - grep: function( elems, callback, inv ) { - var ret = []; - - // Go through the array, only saving the items - // that pass the validator function - for ( var i = 0, length = elems.length; i < length; i++ ) { - if ( !inv !== !callback( elems[ i ], i ) ) { - ret.push( elems[ i ] ); - } - } - - return ret; - }, - - // arg is for internal usage only - map: function( elems, callback, arg ) { - var ret = [], value; - - // Go through the array, translating each of the items to their - // new value (or values). - for ( var i = 0, length = elems.length; i < length; i++ ) { - value = callback( elems[ i ], i, arg ); - - if ( value != null ) { - ret[ ret.length ] = value; - } - } - - return ret.concat.apply( [], ret ); - }, - - // A global GUID counter for objects - guid: 1, - - proxy: function( fn, proxy, thisObject ) { - if ( arguments.length === 2 ) { - if ( typeof proxy === "string" ) { - thisObject = fn; - fn = thisObject[ proxy ]; - proxy = undefined; - - } else if ( proxy && !jQuery.isFunction( proxy ) ) { - thisObject = proxy; - proxy = undefined; - } - } - - if ( !proxy && fn ) { - proxy = function() { - return fn.apply( thisObject || this, arguments ); - }; - } - - // Set the guid of unique handler to the same of original handler, so it can be removed - if ( fn ) { - proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; - } - - // So proxy can be declared as an argument - return proxy; - }, - - // Use of jQuery.browser is frowned upon. - // More details: http://docs.jquery.com/Utilities/jQuery.browser - uaMatch: function( ua ) { - ua = ua.toLowerCase(); - - var match = /(webkit)[ \/]([\w.]+)/.exec( ua ) || - /(opera)(?:.*version)?[ \/]([\w.]+)/.exec( ua ) || - /(msie) ([\w.]+)/.exec( ua ) || - !/compatible/.test( ua ) && /(mozilla)(?:.*? rv:([\w.]+))?/.exec( ua ) || - []; - - return { browser: match[1] || "", version: match[2] || "0" }; - }, - - browser: {} -}); - -browserMatch = jQuery.uaMatch( userAgent ); -if ( browserMatch.browser ) { - jQuery.browser[ browserMatch.browser ] = true; - jQuery.browser.version = browserMatch.version; -} - -// Deprecated, use jQuery.browser.webkit instead -if ( jQuery.browser.webkit ) { - jQuery.browser.safari = true; -} - -if ( indexOf ) { - jQuery.inArray = function( elem, array ) { - return indexOf.call( array, elem ); - }; -} - -// All jQuery objects should point back to these -rootjQuery = jQuery(document); - -// Cleanup functions for the document ready method -if ( document.addEventListener ) { - DOMContentLoaded = function() { - document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); - jQuery.ready(); - }; - -} else if ( document.attachEvent ) { - DOMContentLoaded = function() { - // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). - if ( document.readyState === "complete" ) { - document.detachEvent( "onreadystatechange", DOMContentLoaded ); - jQuery.ready(); - } - }; -} - -// The DOM ready check for Internet Explorer -function doScrollCheck() { - if ( jQuery.isReady ) { - return; - } - - try { - // If IE is used, use the trick by Diego Perini - // http://javascript.nwbox.com/IEContentLoaded/ - document.documentElement.doScroll("left"); - } catch( error ) { - setTimeout( doScrollCheck, 1 ); - return; - } - - // and execute any waiting functions - jQuery.ready(); -} - -function evalScript( i, elem ) { - if ( elem.src ) { - jQuery.ajax({ - url: elem.src, - async: false, - dataType: "script" - }); - } else { - jQuery.globalEval( elem.text || elem.textContent || elem.innerHTML || "" ); - } - - if ( elem.parentNode ) { - elem.parentNode.removeChild( elem ); - } -} - -// Mutifunctional method to get and set values to a collection -// The value/s can be optionally by executed if its a function -function access( elems, key, value, exec, fn, pass ) { - var length = elems.length; - - // Setting many attributes - if ( typeof key === "object" ) { - for ( var k in key ) { - access( elems, k, key[k], exec, fn, value ); - } - return elems; - } - - // Setting one attribute - if ( value !== undefined ) { - // Optionally, function values get executed if exec is true - exec = !pass && exec && jQuery.isFunction(value); - - for ( var i = 0; i < length; i++ ) { - fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); - } - - return elems; - } - - // Getting an attribute - return length ? fn( elems[0], key ) : undefined; -} - -function now() { - return (new Date).getTime(); -} -(function() { - - jQuery.support = {}; - - var root = document.documentElement, - script = document.createElement("script"), - div = document.createElement("div"), - id = "script" + now(); - - div.style.display = "none"; - div.innerHTML = "
                                                                                                                                                                                                                                                              a"; - - var all = div.getElementsByTagName("*"), - a = div.getElementsByTagName("a")[0]; - - // Can't get basic test support - if ( !all || !all.length || !a ) { - return; - } - - jQuery.support = { - // IE strips leading whitespace when .innerHTML is used - leadingWhitespace: div.firstChild.nodeType === 3, - - // Make sure that tbody elements aren't automatically inserted - // IE will insert them into empty tables - tbody: !div.getElementsByTagName("tbody").length, - - // Make sure that link elements get serialized correctly by innerHTML - // This requires a wrapper element in IE - htmlSerialize: !!div.getElementsByTagName("link").length, - - // Get the style information from getAttribute - // (IE uses .cssText insted) - style: /red/.test( a.getAttribute("style") ), - - // Make sure that URLs aren't manipulated - // (IE normalizes it by default) - hrefNormalized: a.getAttribute("href") === "/a", - - // Make sure that element opacity exists - // (IE uses filter instead) - // Use a regex to work around a WebKit issue. See #5145 - opacity: /^0.55$/.test( a.style.opacity ), - - // Verify style float existence - // (IE uses styleFloat instead of cssFloat) - cssFloat: !!a.style.cssFloat, - - // Make sure that if no value is specified for a checkbox - // that it defaults to "on". - // (WebKit defaults to "" instead) - checkOn: div.getElementsByTagName("input")[0].value === "on", - - // Make sure that a selected-by-default option has a working selected property. - // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) - optSelected: document.createElement("select").appendChild( document.createElement("option") ).selected, - - parentNode: div.removeChild( div.appendChild( document.createElement("div") ) ).parentNode === null, - - // Will be defined later - deleteExpando: true, - checkClone: false, - scriptEval: false, - noCloneEvent: true, - boxModel: null - }; - - script.type = "text/javascript"; - try { - script.appendChild( document.createTextNode( "window." + id + "=1;" ) ); - } catch(e) {} - - root.insertBefore( script, root.firstChild ); - - // Make sure that the execution of code works by injecting a script - // tag with appendChild/createTextNode - // (IE doesn't support this, fails, and uses .text instead) - if ( window[ id ] ) { - jQuery.support.scriptEval = true; - delete window[ id ]; - } - - // Test to see if it's possible to delete an expando from an element - // Fails in Internet Explorer - try { - delete script.test; - - } catch(e) { - jQuery.support.deleteExpando = false; - } - - root.removeChild( script ); - - if ( div.attachEvent && div.fireEvent ) { - div.attachEvent("onclick", function click() { - // Cloning a node shouldn't copy over any - // bound event handlers (IE does this) - jQuery.support.noCloneEvent = false; - div.detachEvent("onclick", click); - }); - div.cloneNode(true).fireEvent("onclick"); - } - - div = document.createElement("div"); - div.innerHTML = ""; - - var fragment = document.createDocumentFragment(); - fragment.appendChild( div.firstChild ); - - // WebKit doesn't clone checked state correctly in fragments - jQuery.support.checkClone = fragment.cloneNode(true).cloneNode(true).lastChild.checked; - - // Figure out if the W3C box model works as expected - // document.body must exist before we can do this - jQuery(function() { - var div = document.createElement("div"); - div.style.width = div.style.paddingLeft = "1px"; - - document.body.appendChild( div ); - jQuery.boxModel = jQuery.support.boxModel = div.offsetWidth === 2; - document.body.removeChild( div ).style.display = 'none'; - - div = null; - }); - - // Technique from Juriy Zaytsev - // http://thinkweb2.com/projects/prototype/detecting-event-support-without-browser-sniffing/ - var eventSupported = function( eventName ) { - var el = document.createElement("div"); - eventName = "on" + eventName; - - var isSupported = (eventName in el); - if ( !isSupported ) { - el.setAttribute(eventName, "return;"); - isSupported = typeof el[eventName] === "function"; - } - el = null; - - return isSupported; - }; - - jQuery.support.submitBubbles = eventSupported("submit"); - jQuery.support.changeBubbles = eventSupported("change"); - - // release memory in IE - root = script = div = all = a = null; -})(); - -jQuery.props = { - "for": "htmlFor", - "class": "className", - readonly: "readOnly", - maxlength: "maxLength", - cellspacing: "cellSpacing", - rowspan: "rowSpan", - colspan: "colSpan", - tabindex: "tabIndex", - usemap: "useMap", - frameborder: "frameBorder" -}; -var expando = "jQuery" + now(), uuid = 0, windowData = {}; - -jQuery.extend({ - cache: {}, - - expando:expando, - - // The following elements throw uncatchable exceptions if you - // attempt to add expando properties to them. - noData: { - "embed": true, - "object": true, - "applet": true - }, - - data: function( elem, name, data ) { - if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) { - return; - } - - elem = elem == window ? - windowData : - elem; - - var id = elem[ expando ], cache = jQuery.cache, thisCache; - - if ( !id && typeof name === "string" && data === undefined ) { - return null; - } - - // Compute a unique ID for the element - if ( !id ) { - id = ++uuid; - } - - // Avoid generating a new cache unless none exists and we - // want to manipulate it. - if ( typeof name === "object" ) { - elem[ expando ] = id; - thisCache = cache[ id ] = jQuery.extend(true, {}, name); - - } else if ( !cache[ id ] ) { - elem[ expando ] = id; - cache[ id ] = {}; - } - - thisCache = cache[ id ]; - - // Prevent overriding the named cache with undefined values - if ( data !== undefined ) { - thisCache[ name ] = data; - } - - return typeof name === "string" ? thisCache[ name ] : thisCache; - }, - - removeData: function( elem, name ) { - if ( elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()] ) { - return; - } - - elem = elem == window ? - windowData : - elem; - - var id = elem[ expando ], cache = jQuery.cache, thisCache = cache[ id ]; - - // If we want to remove a specific section of the element's data - if ( name ) { - if ( thisCache ) { - // Remove the section of cache data - delete thisCache[ name ]; - - // If we've removed all the data, remove the element's cache - if ( jQuery.isEmptyObject(thisCache) ) { - jQuery.removeData( elem ); - } - } - - // Otherwise, we want to remove all of the element's data - } else { - if ( jQuery.support.deleteExpando ) { - delete elem[ jQuery.expando ]; - - } else if ( elem.removeAttribute ) { - elem.removeAttribute( jQuery.expando ); - } - - // Completely remove the data cache - delete cache[ id ]; - } - } -}); - -jQuery.fn.extend({ - data: function( key, value ) { - if ( typeof key === "undefined" && this.length ) { - return jQuery.data( this[0] ); - - } else if ( typeof key === "object" ) { - return this.each(function() { - jQuery.data( this, key ); - }); - } - - var parts = key.split("."); - parts[1] = parts[1] ? "." + parts[1] : ""; - - if ( value === undefined ) { - var data = this.triggerHandler("getData" + parts[1] + "!", [parts[0]]); - - if ( data === undefined && this.length ) { - data = jQuery.data( this[0], key ); - } - return data === undefined && parts[1] ? - this.data( parts[0] ) : - data; - } else { - return this.trigger("setData" + parts[1] + "!", [parts[0], value]).each(function() { - jQuery.data( this, key, value ); - }); - } - }, - - removeData: function( key ) { - return this.each(function() { - jQuery.removeData( this, key ); - }); - } -}); -jQuery.extend({ - queue: function( elem, type, data ) { - if ( !elem ) { - return; - } - - type = (type || "fx") + "queue"; - var q = jQuery.data( elem, type ); - - // Speed up dequeue by getting out quickly if this is just a lookup - if ( !data ) { - return q || []; - } - - if ( !q || jQuery.isArray(data) ) { - q = jQuery.data( elem, type, jQuery.makeArray(data) ); - - } else { - q.push( data ); - } - - return q; - }, - - dequeue: function( elem, type ) { - type = type || "fx"; - - var queue = jQuery.queue( elem, type ), fn = queue.shift(); - - // If the fx queue is dequeued, always remove the progress sentinel - if ( fn === "inprogress" ) { - fn = queue.shift(); - } - - if ( fn ) { - // Add a progress sentinel to prevent the fx queue from being - // automatically dequeued - if ( type === "fx" ) { - queue.unshift("inprogress"); - } - - fn.call(elem, function() { - jQuery.dequeue(elem, type); - }); - } - } -}); - -jQuery.fn.extend({ - queue: function( type, data ) { - if ( typeof type !== "string" ) { - data = type; - type = "fx"; - } - - if ( data === undefined ) { - return jQuery.queue( this[0], type ); - } - return this.each(function( i, elem ) { - var queue = jQuery.queue( this, type, data ); - - if ( type === "fx" && queue[0] !== "inprogress" ) { - jQuery.dequeue( this, type ); - } - }); - }, - dequeue: function( type ) { - return this.each(function() { - jQuery.dequeue( this, type ); - }); - }, - - // Based off of the plugin by Clint Helfers, with permission. - // http://blindsignals.com/index.php/2009/07/jquery-delay/ - delay: function( time, type ) { - time = jQuery.fx ? jQuery.fx.speeds[time] || time : time; - type = type || "fx"; - - return this.queue( type, function() { - var elem = this; - setTimeout(function() { - jQuery.dequeue( elem, type ); - }, time ); - }); - }, - - clearQueue: function( type ) { - return this.queue( type || "fx", [] ); - } -}); -var rclass = /[\n\t]/g, - rspace = /\s+/, - rreturn = /\r/g, - rspecialurl = /href|src|style/, - rtype = /(button|input)/i, - rfocusable = /(button|input|object|select|textarea)/i, - rclickable = /^(a|area)$/i, - rradiocheck = /radio|checkbox/; - -jQuery.fn.extend({ - attr: function( name, value ) { - return access( this, name, value, true, jQuery.attr ); - }, - - removeAttr: function( name, fn ) { - return this.each(function(){ - jQuery.attr( this, name, "" ); - if ( this.nodeType === 1 ) { - this.removeAttribute( name ); - } - }); - }, - - addClass: function( value ) { - if ( jQuery.isFunction(value) ) { - return this.each(function(i) { - var self = jQuery(this); - self.addClass( value.call(this, i, self.attr("class")) ); - }); - } - - if ( value && typeof value === "string" ) { - var classNames = (value || "").split( rspace ); - - for ( var i = 0, l = this.length; i < l; i++ ) { - var elem = this[i]; - - if ( elem.nodeType === 1 ) { - if ( !elem.className ) { - elem.className = value; - - } else { - var className = " " + elem.className + " ", setClass = elem.className; - for ( var c = 0, cl = classNames.length; c < cl; c++ ) { - if ( className.indexOf( " " + classNames[c] + " " ) < 0 ) { - setClass += " " + classNames[c]; - } - } - elem.className = jQuery.trim( setClass ); - } - } - } - } - - return this; - }, - - removeClass: function( value ) { - if ( jQuery.isFunction(value) ) { - return this.each(function(i) { - var self = jQuery(this); - self.removeClass( value.call(this, i, self.attr("class")) ); - }); - } - - if ( (value && typeof value === "string") || value === undefined ) { - var classNames = (value || "").split(rspace); - - for ( var i = 0, l = this.length; i < l; i++ ) { - var elem = this[i]; - - if ( elem.nodeType === 1 && elem.className ) { - if ( value ) { - var className = (" " + elem.className + " ").replace(rclass, " "); - for ( var c = 0, cl = classNames.length; c < cl; c++ ) { - className = className.replace(" " + classNames[c] + " ", " "); - } - elem.className = jQuery.trim( className ); - - } else { - elem.className = ""; - } - } - } - } - - return this; - }, - - toggleClass: function( value, stateVal ) { - var type = typeof value, isBool = typeof stateVal === "boolean"; - - if ( jQuery.isFunction( value ) ) { - return this.each(function(i) { - var self = jQuery(this); - self.toggleClass( value.call(this, i, self.attr("class"), stateVal), stateVal ); - }); - } - - return this.each(function() { - if ( type === "string" ) { - // toggle individual class names - var className, i = 0, self = jQuery(this), - state = stateVal, - classNames = value.split( rspace ); - - while ( (className = classNames[ i++ ]) ) { - // check each className given, space seperated list - state = isBool ? state : !self.hasClass( className ); - self[ state ? "addClass" : "removeClass" ]( className ); - } - - } else if ( type === "undefined" || type === "boolean" ) { - if ( this.className ) { - // store className if set - jQuery.data( this, "__className__", this.className ); - } - - // toggle whole className - this.className = this.className || value === false ? "" : jQuery.data( this, "__className__" ) || ""; - } - }); - }, - - hasClass: function( selector ) { - var className = " " + selector + " "; - for ( var i = 0, l = this.length; i < l; i++ ) { - if ( (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { - return true; - } - } - - return false; - }, - - val: function( value ) { - if ( value === undefined ) { - var elem = this[0]; - - if ( elem ) { - if ( jQuery.nodeName( elem, "option" ) ) { - return (elem.attributes.value || {}).specified ? elem.value : elem.text; - } - - // We need to handle select boxes special - if ( jQuery.nodeName( elem, "select" ) ) { - var index = elem.selectedIndex, - values = [], - options = elem.options, - one = elem.type === "select-one"; - - // Nothing was selected - if ( index < 0 ) { - return null; - } - - // Loop through all the selected options - for ( var i = one ? index : 0, max = one ? index + 1 : options.length; i < max; i++ ) { - var option = options[ i ]; - - if ( option.selected ) { - // Get the specifc value for the option - value = jQuery(option).val(); - - // We don't need an array for one selects - if ( one ) { - return value; - } - - // Multi-Selects return an array - values.push( value ); - } - } - - return values; - } - - // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified - if ( rradiocheck.test( elem.type ) && !jQuery.support.checkOn ) { - return elem.getAttribute("value") === null ? "on" : elem.value; - } - - - // Everything else, we just grab the value - return (elem.value || "").replace(rreturn, ""); - - } - - return undefined; - } - - var isFunction = jQuery.isFunction(value); - - return this.each(function(i) { - var self = jQuery(this), val = value; - - if ( this.nodeType !== 1 ) { - return; - } - - if ( isFunction ) { - val = value.call(this, i, self.val()); - } - - // Typecast each time if the value is a Function and the appended - // value is therefore different each time. - if ( typeof val === "number" ) { - val += ""; - } - - if ( jQuery.isArray(val) && rradiocheck.test( this.type ) ) { - this.checked = jQuery.inArray( self.val(), val ) >= 0; - - } else if ( jQuery.nodeName( this, "select" ) ) { - var values = jQuery.makeArray(val); - - jQuery( "option", this ).each(function() { - this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; - }); - - if ( !values.length ) { - this.selectedIndex = -1; - } - - } else { - this.value = val; - } - }); - } -}); - -jQuery.extend({ - attrFn: { - val: true, - css: true, - html: true, - text: true, - data: true, - width: true, - height: true, - offset: true - }, - - attr: function( elem, name, value, pass ) { - // don't set attributes on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) { - return undefined; - } - - if ( pass && name in jQuery.attrFn ) { - return jQuery(elem)[name](value); - } - - var notxml = elem.nodeType !== 1 || !jQuery.isXMLDoc( elem ), - // Whether we are setting (or getting) - set = value !== undefined; - - // Try to normalize/fix the name - name = notxml && jQuery.props[ name ] || name; - - // Only do all the following if this is a node (faster for style) - if ( elem.nodeType === 1 ) { - // These attributes require special treatment - var special = rspecialurl.test( name ); - - // Safari mis-reports the default selected property of an option - // Accessing the parent's selectedIndex property fixes it - if ( name === "selected" && !jQuery.support.optSelected ) { - var parent = elem.parentNode; - if ( parent ) { - parent.selectedIndex; - - // Make sure that it also works with optgroups, see #5701 - if ( parent.parentNode ) { - parent.parentNode.selectedIndex; - } - } - } - - // If applicable, access the attribute via the DOM 0 way - if ( name in elem && notxml && !special ) { - if ( set ) { - // We can't allow the type property to be changed (since it causes problems in IE) - if ( name === "type" && rtype.test( elem.nodeName ) && elem.parentNode ) { - jQuery.error( "type property can't be changed" ); - } - - elem[ name ] = value; - } - - // browsers index elements by id/name on forms, give priority to attributes. - if ( jQuery.nodeName( elem, "form" ) && elem.getAttributeNode(name) ) { - return elem.getAttributeNode( name ).nodeValue; - } - - // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set - // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ - if ( name === "tabIndex" ) { - var attributeNode = elem.getAttributeNode( "tabIndex" ); - - return attributeNode && attributeNode.specified ? - attributeNode.value : - rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? - 0 : - undefined; - } - - return elem[ name ]; - } - - if ( !jQuery.support.style && notxml && name === "style" ) { - if ( set ) { - elem.style.cssText = "" + value; - } - - return elem.style.cssText; - } - - if ( set ) { - // convert the value to a string (all browsers do this but IE) see #1070 - elem.setAttribute( name, "" + value ); - } - - var attr = !jQuery.support.hrefNormalized && notxml && special ? - // Some attributes require a special call on IE - elem.getAttribute( name, 2 ) : - elem.getAttribute( name ); - - // Non-existent attributes return null, we normalize to undefined - return attr === null ? undefined : attr; - } - - // elem is actually elem.style ... set the style - // Using attr for specific style information is now deprecated. Use style instead. - return jQuery.style( elem, name, value ); - } -}); -var rnamespaces = /\.(.*)$/, - fcleanup = function( nm ) { - return nm.replace(/[^\w\s\.\|`]/g, function( ch ) { - return "\\" + ch; - }); - }; - -/* - * A number of helper functions used for managing events. - * Many of the ideas behind this code originated from - * Dean Edwards' addEvent library. - */ -jQuery.event = { - - // Bind an event to an element - // Original by Dean Edwards - add: function( elem, types, handler, data ) { - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - // For whatever reason, IE has trouble passing the window object - // around, causing it to be cloned in the process - if ( elem.setInterval && ( elem !== window && !elem.frameElement ) ) { - elem = window; - } - - var handleObjIn, handleObj; - - if ( handler.handler ) { - handleObjIn = handler; - handler = handleObjIn.handler; - } - - // Make sure that the function being executed has a unique ID - if ( !handler.guid ) { - handler.guid = jQuery.guid++; - } - - // Init the element's event structure - var elemData = jQuery.data( elem ); - - // If no elemData is found then we must be trying to bind to one of the - // banned noData elements - if ( !elemData ) { - return; - } - - var events = elemData.events = elemData.events || {}, - eventHandle = elemData.handle, eventHandle; - - if ( !eventHandle ) { - elemData.handle = eventHandle = function() { - // Handle the second event of a trigger and when - // an event is called after a page has unloaded - return typeof jQuery !== "undefined" && !jQuery.event.triggered ? - jQuery.event.handle.apply( eventHandle.elem, arguments ) : - undefined; - }; - } - - // Add elem as a property of the handle function - // This is to prevent a memory leak with non-native events in IE. - eventHandle.elem = elem; - - // Handle multiple events separated by a space - // jQuery(...).bind("mouseover mouseout", fn); - types = types.split(" "); - - var type, i = 0, namespaces; - - while ( (type = types[ i++ ]) ) { - handleObj = handleObjIn ? - jQuery.extend({}, handleObjIn) : - { handler: handler, data: data }; - - // Namespaced event handlers - if ( type.indexOf(".") > -1 ) { - namespaces = type.split("."); - type = namespaces.shift(); - handleObj.namespace = namespaces.slice(0).sort().join("."); - - } else { - namespaces = []; - handleObj.namespace = ""; - } - - handleObj.type = type; - handleObj.guid = handler.guid; - - // Get the current list of functions bound to this event - var handlers = events[ type ], - special = jQuery.event.special[ type ] || {}; - - // Init the event handler queue - if ( !handlers ) { - handlers = events[ type ] = []; - - // Check for a special event handler - // Only use addEventListener/attachEvent if the special - // events handler returns false - if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - // Bind the global event handler to the element - if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle, false ); - - } else if ( elem.attachEvent ) { - elem.attachEvent( "on" + type, eventHandle ); - } - } - } - - if ( special.add ) { - special.add.call( elem, handleObj ); - - if ( !handleObj.handler.guid ) { - handleObj.handler.guid = handler.guid; - } - } - - // Add the function to the element's handler list - handlers.push( handleObj ); - - // Keep track of which events have been used, for global triggering - jQuery.event.global[ type ] = true; - } - - // Nullify elem to prevent memory leaks in IE - elem = null; - }, - - global: {}, - - // Detach an event or set of events from an element - remove: function( elem, types, handler, pos ) { - // don't do events on text and comment nodes - if ( elem.nodeType === 3 || elem.nodeType === 8 ) { - return; - } - - var ret, type, fn, i = 0, all, namespaces, namespace, special, eventType, handleObj, origType, - elemData = jQuery.data( elem ), - events = elemData && elemData.events; - - if ( !elemData || !events ) { - return; - } - - // types is actually an event object here - if ( types && types.type ) { - handler = types.handler; - types = types.type; - } - - // Unbind all events for the element - if ( !types || typeof types === "string" && types.charAt(0) === "." ) { - types = types || ""; - - for ( type in events ) { - jQuery.event.remove( elem, type + types ); - } - - return; - } - - // Handle multiple events separated by a space - // jQuery(...).unbind("mouseover mouseout", fn); - types = types.split(" "); - - while ( (type = types[ i++ ]) ) { - origType = type; - handleObj = null; - all = type.indexOf(".") < 0; - namespaces = []; - - if ( !all ) { - // Namespaced event handlers - namespaces = type.split("."); - type = namespaces.shift(); - - namespace = new RegExp("(^|\\.)" + - jQuery.map( namespaces.slice(0).sort(), fcleanup ).join("\\.(?:.*\\.)?") + "(\\.|$)") - } - - eventType = events[ type ]; - - if ( !eventType ) { - continue; - } - - if ( !handler ) { - for ( var j = 0; j < eventType.length; j++ ) { - handleObj = eventType[ j ]; - - if ( all || namespace.test( handleObj.namespace ) ) { - jQuery.event.remove( elem, origType, handleObj.handler, j ); - eventType.splice( j--, 1 ); - } - } - - continue; - } - - special = jQuery.event.special[ type ] || {}; - - for ( var j = pos || 0; j < eventType.length; j++ ) { - handleObj = eventType[ j ]; - - if ( handler.guid === handleObj.guid ) { - // remove the given handler for the given type - if ( all || namespace.test( handleObj.namespace ) ) { - if ( pos == null ) { - eventType.splice( j--, 1 ); - } - - if ( special.remove ) { - special.remove.call( elem, handleObj ); - } - } - - if ( pos != null ) { - break; - } - } - } - - // remove generic event handler if no more handlers exist - if ( eventType.length === 0 || pos != null && eventType.length === 1 ) { - if ( !special.teardown || special.teardown.call( elem, namespaces ) === false ) { - removeEvent( elem, type, elemData.handle ); - } - - ret = null; - delete events[ type ]; - } - } - - // Remove the expando if it's no longer used - if ( jQuery.isEmptyObject( events ) ) { - var handle = elemData.handle; - if ( handle ) { - handle.elem = null; - } - - delete elemData.events; - delete elemData.handle; - - if ( jQuery.isEmptyObject( elemData ) ) { - jQuery.removeData( elem ); - } - } - }, - - // bubbling is internal - trigger: function( event, data, elem /*, bubbling */ ) { - // Event object or event type - var type = event.type || event, - bubbling = arguments[3]; - - if ( !bubbling ) { - event = typeof event === "object" ? - // jQuery.Event object - event[expando] ? event : - // Object literal - jQuery.extend( jQuery.Event(type), event ) : - // Just the event type (string) - jQuery.Event(type); - - if ( type.indexOf("!") >= 0 ) { - event.type = type = type.slice(0, -1); - event.exclusive = true; - } - - // Handle a global trigger - if ( !elem ) { - // Don't bubble custom events when global (to avoid too much overhead) - event.stopPropagation(); - - // Only trigger if we've ever bound an event for it - if ( jQuery.event.global[ type ] ) { - jQuery.each( jQuery.cache, function() { - if ( this.events && this.events[type] ) { - jQuery.event.trigger( event, data, this.handle.elem ); - } - }); - } - } - - // Handle triggering a single element - - // don't do events on text and comment nodes - if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 ) { - return undefined; - } - - // Clean up in case it is reused - event.result = undefined; - event.target = elem; - - // Clone the incoming data, if any - data = jQuery.makeArray( data ); - data.unshift( event ); - } - - event.currentTarget = elem; - - // Trigger the event, it is assumed that "handle" is a function - var handle = jQuery.data( elem, "handle" ); - if ( handle ) { - handle.apply( elem, data ); - } - - var parent = elem.parentNode || elem.ownerDocument; - - // Trigger an inline bound script - try { - if ( !(elem && elem.nodeName && jQuery.noData[elem.nodeName.toLowerCase()]) ) { - if ( elem[ "on" + type ] && elem[ "on" + type ].apply( elem, data ) === false ) { - event.result = false; - } - } - - // prevent IE from throwing an error for some elements with some event types, see #3533 - } catch (e) {} - - if ( !event.isPropagationStopped() && parent ) { - jQuery.event.trigger( event, data, parent, true ); - - } else if ( !event.isDefaultPrevented() ) { - var target = event.target, old, - isClick = jQuery.nodeName(target, "a") && type === "click", - special = jQuery.event.special[ type ] || {}; - - if ( (!special._default || special._default.call( elem, event ) === false) && - !isClick && !(target && target.nodeName && jQuery.noData[target.nodeName.toLowerCase()]) ) { - - try { - if ( target[ type ] ) { - // Make sure that we don't accidentally re-trigger the onFOO events - old = target[ "on" + type ]; - - if ( old ) { - target[ "on" + type ] = null; - } - - jQuery.event.triggered = true; - target[ type ](); - } - - // prevent IE from throwing an error for some elements with some event types, see #3533 - } catch (e) {} - - if ( old ) { - target[ "on" + type ] = old; - } - - jQuery.event.triggered = false; - } - } - }, - - handle: function( event ) { - var all, handlers, namespaces, namespace, events; - - event = arguments[0] = jQuery.event.fix( event || window.event ); - event.currentTarget = this; - - // Namespaced event handlers - all = event.type.indexOf(".") < 0 && !event.exclusive; - - if ( !all ) { - namespaces = event.type.split("."); - event.type = namespaces.shift(); - namespace = new RegExp("(^|\\.)" + namespaces.slice(0).sort().join("\\.(?:.*\\.)?") + "(\\.|$)"); - } - - var events = jQuery.data(this, "events"), handlers = events[ event.type ]; - - if ( events && handlers ) { - // Clone the handlers to prevent manipulation - handlers = handlers.slice(0); - - for ( var j = 0, l = handlers.length; j < l; j++ ) { - var handleObj = handlers[ j ]; - - // Filter the functions by class - if ( all || namespace.test( handleObj.namespace ) ) { - // Pass in a reference to the handler function itself - // So that we can later remove it - event.handler = handleObj.handler; - event.data = handleObj.data; - event.handleObj = handleObj; - - var ret = handleObj.handler.apply( this, arguments ); - - if ( ret !== undefined ) { - event.result = ret; - if ( ret === false ) { - event.preventDefault(); - event.stopPropagation(); - } - } - - if ( event.isImmediatePropagationStopped() ) { - break; - } - } - } - } - - return event.result; - }, - - props: "altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "), - - fix: function( event ) { - if ( event[ expando ] ) { - return event; - } - - // store a copy of the original event object - // and "clone" to set read-only properties - var originalEvent = event; - event = jQuery.Event( originalEvent ); - - for ( var i = this.props.length, prop; i; ) { - prop = this.props[ --i ]; - event[ prop ] = originalEvent[ prop ]; - } - - // Fix target property, if necessary - if ( !event.target ) { - event.target = event.srcElement || document; // Fixes #1925 where srcElement might not be defined either - } - - // check if target is a textnode (safari) - if ( event.target.nodeType === 3 ) { - event.target = event.target.parentNode; - } - - // Add relatedTarget, if necessary - if ( !event.relatedTarget && event.fromElement ) { - event.relatedTarget = event.fromElement === event.target ? event.toElement : event.fromElement; - } - - // Calculate pageX/Y if missing and clientX/Y available - if ( event.pageX == null && event.clientX != null ) { - var doc = document.documentElement, body = document.body; - event.pageX = event.clientX + (doc && doc.scrollLeft || body && body.scrollLeft || 0) - (doc && doc.clientLeft || body && body.clientLeft || 0); - event.pageY = event.clientY + (doc && doc.scrollTop || body && body.scrollTop || 0) - (doc && doc.clientTop || body && body.clientTop || 0); - } - - // Add which for key events - if ( !event.which && ((event.charCode || event.charCode === 0) ? event.charCode : event.keyCode) ) { - event.which = event.charCode || event.keyCode; - } - - // Add metaKey to non-Mac browsers (use ctrl for PC's and Meta for Macs) - if ( !event.metaKey && event.ctrlKey ) { - event.metaKey = event.ctrlKey; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - // Note: button is not normalized, so don't use it - if ( !event.which && event.button !== undefined ) { - event.which = (event.button & 1 ? 1 : ( event.button & 2 ? 3 : ( event.button & 4 ? 2 : 0 ) )); - } - - return event; - }, - - // Deprecated, use jQuery.guid instead - guid: 1E8, - - // Deprecated, use jQuery.proxy instead - proxy: jQuery.proxy, - - special: { - ready: { - // Make sure the ready event is setup - setup: jQuery.bindReady, - teardown: jQuery.noop - }, - - live: { - add: function( handleObj ) { - jQuery.event.add( this, handleObj.origType, jQuery.extend({}, handleObj, {handler: liveHandler}) ); - }, - - remove: function( handleObj ) { - var remove = true, - type = handleObj.origType.replace(rnamespaces, ""); - - jQuery.each( jQuery.data(this, "events").live || [], function() { - if ( type === this.origType.replace(rnamespaces, "") ) { - remove = false; - return false; - } - }); - - if ( remove ) { - jQuery.event.remove( this, handleObj.origType, liveHandler ); - } - } - - }, - - beforeunload: { - setup: function( data, namespaces, eventHandle ) { - // We only want to do this special case on windows - if ( this.setInterval ) { - this.onbeforeunload = eventHandle; - } - - return false; - }, - teardown: function( namespaces, eventHandle ) { - if ( this.onbeforeunload === eventHandle ) { - this.onbeforeunload = null; - } - } - } - } -}; - -var removeEvent = document.removeEventListener ? - function( elem, type, handle ) { - elem.removeEventListener( type, handle, false ); - } : - function( elem, type, handle ) { - elem.detachEvent( "on" + type, handle ); - }; - -jQuery.Event = function( src ) { - // Allow instantiation without the 'new' keyword - if ( !this.preventDefault ) { - return new jQuery.Event( src ); - } - - // Event object - if ( src && src.type ) { - this.originalEvent = src; - this.type = src.type; - // Event type - } else { - this.type = src; - } - - // timeStamp is buggy for some events on Firefox(#3843) - // So we won't rely on the native value - this.timeStamp = now(); - - // Mark it as fixed - this[ expando ] = true; -}; - -function returnFalse() { - return false; -} -function returnTrue() { - return true; -} - -// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html -jQuery.Event.prototype = { - preventDefault: function() { - this.isDefaultPrevented = returnTrue; - - var e = this.originalEvent; - if ( !e ) { - return; - } - - // if preventDefault exists run it on the original event - if ( e.preventDefault ) { - e.preventDefault(); - } - // otherwise set the returnValue property of the original event to false (IE) - e.returnValue = false; - }, - stopPropagation: function() { - this.isPropagationStopped = returnTrue; - - var e = this.originalEvent; - if ( !e ) { - return; - } - // if stopPropagation exists run it on the original event - if ( e.stopPropagation ) { - e.stopPropagation(); - } - // otherwise set the cancelBubble property of the original event to true (IE) - e.cancelBubble = true; - }, - stopImmediatePropagation: function() { - this.isImmediatePropagationStopped = returnTrue; - this.stopPropagation(); - }, - isDefaultPrevented: returnFalse, - isPropagationStopped: returnFalse, - isImmediatePropagationStopped: returnFalse -}; - -// Checks if an event happened on an element within another element -// Used in jQuery.event.special.mouseenter and mouseleave handlers -var withinElement = function( event ) { - // Check if mouse(over|out) are still within the same parent element - var parent = event.relatedTarget; - - // Firefox sometimes assigns relatedTarget a XUL element - // which we cannot access the parentNode property of - try { - // Traverse up the tree - while ( parent && parent !== this ) { - parent = parent.parentNode; - } - - if ( parent !== this ) { - // set the correct event type - event.type = event.data; - - // handle event if we actually just moused on to a non sub-element - jQuery.event.handle.apply( this, arguments ); - } - - // assuming we've left the element since we most likely mousedover a xul element - } catch(e) { } -}, - -// In case of event delegation, we only need to rename the event.type, -// liveHandler will take care of the rest. -delegate = function( event ) { - event.type = event.data; - jQuery.event.handle.apply( this, arguments ); -}; - -// Create mouseenter and mouseleave events -jQuery.each({ - mouseenter: "mouseover", - mouseleave: "mouseout" -}, function( orig, fix ) { - jQuery.event.special[ orig ] = { - setup: function( data ) { - jQuery.event.add( this, fix, data && data.selector ? delegate : withinElement, orig ); - }, - teardown: function( data ) { - jQuery.event.remove( this, fix, data && data.selector ? delegate : withinElement ); - } - }; -}); - -// submit delegation -if ( !jQuery.support.submitBubbles ) { - - jQuery.event.special.submit = { - setup: function( data, namespaces ) { - if ( this.nodeName.toLowerCase() !== "form" ) { - jQuery.event.add(this, "click.specialSubmit", function( e ) { - var elem = e.target, type = elem.type; - - if ( (type === "submit" || type === "image") && jQuery( elem ).closest("form").length ) { - return trigger( "submit", this, arguments ); - } - }); - - jQuery.event.add(this, "keypress.specialSubmit", function( e ) { - var elem = e.target, type = elem.type; - - if ( (type === "text" || type === "password") && jQuery( elem ).closest("form").length && e.keyCode === 13 ) { - return trigger( "submit", this, arguments ); - } - }); - - } else { - return false; - } - }, - - teardown: function( namespaces ) { - jQuery.event.remove( this, ".specialSubmit" ); - } - }; - -} - -// change delegation, happens here so we have bind. -if ( !jQuery.support.changeBubbles ) { - - var formElems = /textarea|input|select/i, - - changeFilters, - - getVal = function( elem ) { - var type = elem.type, val = elem.value; - - if ( type === "radio" || type === "checkbox" ) { - val = elem.checked; - - } else if ( type === "select-multiple" ) { - val = elem.selectedIndex > -1 ? - jQuery.map( elem.options, function( elem ) { - return elem.selected; - }).join("-") : - ""; - - } else if ( elem.nodeName.toLowerCase() === "select" ) { - val = elem.selectedIndex; - } - - return val; - }, - - testChange = function testChange( e ) { - var elem = e.target, data, val; - - if ( !formElems.test( elem.nodeName ) || elem.readOnly ) { - return; - } - - data = jQuery.data( elem, "_change_data" ); - val = getVal(elem); - - // the current data will be also retrieved by beforeactivate - if ( e.type !== "focusout" || elem.type !== "radio" ) { - jQuery.data( elem, "_change_data", val ); - } - - if ( data === undefined || val === data ) { - return; - } - - if ( data != null || val ) { - e.type = "change"; - return jQuery.event.trigger( e, arguments[1], elem ); - } - }; - - jQuery.event.special.change = { - filters: { - focusout: testChange, - - click: function( e ) { - var elem = e.target, type = elem.type; - - if ( type === "radio" || type === "checkbox" || elem.nodeName.toLowerCase() === "select" ) { - return testChange.call( this, e ); - } - }, - - // Change has to be called before submit - // Keydown will be called before keypress, which is used in submit-event delegation - keydown: function( e ) { - var elem = e.target, type = elem.type; - - if ( (e.keyCode === 13 && elem.nodeName.toLowerCase() !== "textarea") || - (e.keyCode === 32 && (type === "checkbox" || type === "radio")) || - type === "select-multiple" ) { - return testChange.call( this, e ); - } - }, - - // Beforeactivate happens also before the previous element is blurred - // with this event you can't trigger a change event, but you can store - // information/focus[in] is not needed anymore - beforeactivate: function( e ) { - var elem = e.target; - jQuery.data( elem, "_change_data", getVal(elem) ); - } - }, - - setup: function( data, namespaces ) { - if ( this.type === "file" ) { - return false; - } - - for ( var type in changeFilters ) { - jQuery.event.add( this, type + ".specialChange", changeFilters[type] ); - } - - return formElems.test( this.nodeName ); - }, - - teardown: function( namespaces ) { - jQuery.event.remove( this, ".specialChange" ); - - return formElems.test( this.nodeName ); - } - }; - - changeFilters = jQuery.event.special.change.filters; -} - -function trigger( type, elem, args ) { - args[0].type = type; - return jQuery.event.handle.apply( elem, args ); -} - -// Create "bubbling" focus and blur events -if ( document.addEventListener ) { - jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { - jQuery.event.special[ fix ] = { - setup: function() { - this.addEventListener( orig, handler, true ); - }, - teardown: function() { - this.removeEventListener( orig, handler, true ); - } - }; - - function handler( e ) { - e = jQuery.event.fix( e ); - e.type = fix; - return jQuery.event.handle.call( this, e ); - } - }); -} - -jQuery.each(["bind", "one"], function( i, name ) { - jQuery.fn[ name ] = function( type, data, fn ) { - // Handle object literals - if ( typeof type === "object" ) { - for ( var key in type ) { - this[ name ](key, data, type[key], fn); - } - return this; - } - - if ( jQuery.isFunction( data ) ) { - fn = data; - data = undefined; - } - - var handler = name === "one" ? jQuery.proxy( fn, function( event ) { - jQuery( this ).unbind( event, handler ); - return fn.apply( this, arguments ); - }) : fn; - - if ( type === "unload" && name !== "one" ) { - this.one( type, data, fn ); - - } else { - for ( var i = 0, l = this.length; i < l; i++ ) { - jQuery.event.add( this[i], type, handler, data ); - } - } - - return this; - }; -}); - -jQuery.fn.extend({ - unbind: function( type, fn ) { - // Handle object literals - if ( typeof type === "object" && !type.preventDefault ) { - for ( var key in type ) { - this.unbind(key, type[key]); - } - - } else { - for ( var i = 0, l = this.length; i < l; i++ ) { - jQuery.event.remove( this[i], type, fn ); - } - } - - return this; - }, - - delegate: function( selector, types, data, fn ) { - return this.live( types, data, fn, selector ); - }, - - undelegate: function( selector, types, fn ) { - if ( arguments.length === 0 ) { - return this.unbind( "live" ); - - } else { - return this.die( types, null, fn, selector ); - } - }, - - trigger: function( type, data ) { - return this.each(function() { - jQuery.event.trigger( type, data, this ); - }); - }, - - triggerHandler: function( type, data ) { - if ( this[0] ) { - var event = jQuery.Event( type ); - event.preventDefault(); - event.stopPropagation(); - jQuery.event.trigger( event, data, this[0] ); - return event.result; - } - }, - - toggle: function( fn ) { - // Save reference to arguments for access in closure - var args = arguments, i = 1; - - // link all the functions, so any of them can unbind this click handler - while ( i < args.length ) { - jQuery.proxy( fn, args[ i++ ] ); - } - - return this.click( jQuery.proxy( fn, function( event ) { - // Figure out which function to execute - var lastToggle = ( jQuery.data( this, "lastToggle" + fn.guid ) || 0 ) % i; - jQuery.data( this, "lastToggle" + fn.guid, lastToggle + 1 ); - - // Make sure that clicks stop - event.preventDefault(); - - // and execute the function - return args[ lastToggle ].apply( this, arguments ) || false; - })); - }, - - hover: function( fnOver, fnOut ) { - return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); - } -}); - -var liveMap = { - focus: "focusin", - blur: "focusout", - mouseenter: "mouseover", - mouseleave: "mouseout" -}; - -jQuery.each(["live", "die"], function( i, name ) { - jQuery.fn[ name ] = function( types, data, fn, origSelector /* Internal Use Only */ ) { - var type, i = 0, match, namespaces, preType, - selector = origSelector || this.selector, - context = origSelector ? this : jQuery( this.context ); - - if ( jQuery.isFunction( data ) ) { - fn = data; - data = undefined; - } - - types = (types || "").split(" "); - - while ( (type = types[ i++ ]) != null ) { - match = rnamespaces.exec( type ); - namespaces = ""; - - if ( match ) { - namespaces = match[0]; - type = type.replace( rnamespaces, "" ); - } - - if ( type === "hover" ) { - types.push( "mouseenter" + namespaces, "mouseleave" + namespaces ); - continue; - } - - preType = type; - - if ( type === "focus" || type === "blur" ) { - types.push( liveMap[ type ] + namespaces ); - type = type + namespaces; - - } else { - type = (liveMap[ type ] || type) + namespaces; - } - - if ( name === "live" ) { - // bind live handler - context.each(function(){ - jQuery.event.add( this, liveConvert( type, selector ), - { data: data, selector: selector, handler: fn, origType: type, origHandler: fn, preType: preType } ); - }); - - } else { - // unbind live handler - context.unbind( liveConvert( type, selector ), fn ); - } - } - - return this; - } -}); - -function liveHandler( event ) { - var stop, elems = [], selectors = [], args = arguments, - related, match, handleObj, elem, j, i, l, data, - events = jQuery.data( this, "events" ); - - // Make sure we avoid non-left-click bubbling in Firefox (#3861) - if ( event.liveFired === this || !events || !events.live || event.button && event.type === "click" ) { - return; - } - - event.liveFired = this; - - var live = events.live.slice(0); - - for ( j = 0; j < live.length; j++ ) { - handleObj = live[j]; - - if ( handleObj.origType.replace( rnamespaces, "" ) === event.type ) { - selectors.push( handleObj.selector ); - - } else { - live.splice( j--, 1 ); - } - } - - match = jQuery( event.target ).closest( selectors, event.currentTarget ); - - for ( i = 0, l = match.length; i < l; i++ ) { - for ( j = 0; j < live.length; j++ ) { - handleObj = live[j]; - - if ( match[i].selector === handleObj.selector ) { - elem = match[i].elem; - related = null; - - // Those two events require additional checking - if ( handleObj.preType === "mouseenter" || handleObj.preType === "mouseleave" ) { - related = jQuery( event.relatedTarget ).closest( handleObj.selector )[0]; - } - - if ( !related || related !== elem ) { - elems.push({ elem: elem, handleObj: handleObj }); - } - } - } - } - - for ( i = 0, l = elems.length; i < l; i++ ) { - match = elems[i]; - event.currentTarget = match.elem; - event.data = match.handleObj.data; - event.handleObj = match.handleObj; - - if ( match.handleObj.origHandler.apply( match.elem, args ) === false ) { - stop = false; - break; - } - } - - return stop; -} - -function liveConvert( type, selector ) { - return "live." + (type && type !== "*" ? type + "." : "") + selector.replace(/\./g, "`").replace(/ /g, "&"); -} - -jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + - "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + - "change select submit keydown keypress keyup error").split(" "), function( i, name ) { - - // Handle event binding - jQuery.fn[ name ] = function( fn ) { - return fn ? this.bind( name, fn ) : this.trigger( name ); - }; - - if ( jQuery.attrFn ) { - jQuery.attrFn[ name ] = true; - } -}); - -// Prevent memory leaks in IE -// Window isn't included so as not to unbind existing unload events -// More info: -// - http://isaacschlueter.com/2006/10/msie-memory-leaks/ -if ( window.attachEvent && !window.addEventListener ) { - window.attachEvent("onunload", function() { - for ( var id in jQuery.cache ) { - if ( jQuery.cache[ id ].handle ) { - // Try/Catch is to handle iframes being unloaded, see #4280 - try { - jQuery.event.remove( jQuery.cache[ id ].handle.elem ); - } catch(e) {} - } - } - }); -} -/*! - * Sizzle CSS Selector Engine - v1.0 - * Copyright 2009, The Dojo Foundation - * Released under the MIT, BSD, and GPL Licenses. - * More information: http://sizzlejs.com/ - */ -(function(){ - -var chunker = /((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g, - done = 0, - toString = Object.prototype.toString, - hasDuplicate = false, - baseHasDuplicate = true; - -// Here we check if the JavaScript engine is using some sort of -// optimization where it does not always call our comparision -// function. If that is the case, discard the hasDuplicate value. -// Thus far that includes Google Chrome. -[0, 0].sort(function(){ - baseHasDuplicate = false; - return 0; -}); - -var Sizzle = function(selector, context, results, seed) { - results = results || []; - var origContext = context = context || document; - - if ( context.nodeType !== 1 && context.nodeType !== 9 ) { - return []; - } - - if ( !selector || typeof selector !== "string" ) { - return results; - } - - var parts = [], m, set, checkSet, extra, prune = true, contextXML = isXML(context), - soFar = selector; - - // Reset the position of the chunker regexp (start from head) - while ( (chunker.exec(""), m = chunker.exec(soFar)) !== null ) { - soFar = m[3]; - - parts.push( m[1] ); - - if ( m[2] ) { - extra = m[3]; - break; - } - } - - if ( parts.length > 1 && origPOS.exec( selector ) ) { - if ( parts.length === 2 && Expr.relative[ parts[0] ] ) { - set = posProcess( parts[0] + parts[1], context ); - } else { - set = Expr.relative[ parts[0] ] ? - [ context ] : - Sizzle( parts.shift(), context ); - - while ( parts.length ) { - selector = parts.shift(); - - if ( Expr.relative[ selector ] ) { - selector += parts.shift(); - } - - set = posProcess( selector, set ); - } - } - } else { - // Take a shortcut and set the context if the root selector is an ID - // (but not if it'll be faster if the inner selector is an ID) - if ( !seed && parts.length > 1 && context.nodeType === 9 && !contextXML && - Expr.match.ID.test(parts[0]) && !Expr.match.ID.test(parts[parts.length - 1]) ) { - var ret = Sizzle.find( parts.shift(), context, contextXML ); - context = ret.expr ? Sizzle.filter( ret.expr, ret.set )[0] : ret.set[0]; - } - - if ( context ) { - var ret = seed ? - { expr: parts.pop(), set: makeArray(seed) } : - Sizzle.find( parts.pop(), parts.length === 1 && (parts[0] === "~" || parts[0] === "+") && context.parentNode ? context.parentNode : context, contextXML ); - set = ret.expr ? Sizzle.filter( ret.expr, ret.set ) : ret.set; - - if ( parts.length > 0 ) { - checkSet = makeArray(set); - } else { - prune = false; - } - - while ( parts.length ) { - var cur = parts.pop(), pop = cur; - - if ( !Expr.relative[ cur ] ) { - cur = ""; - } else { - pop = parts.pop(); - } - - if ( pop == null ) { - pop = context; - } - - Expr.relative[ cur ]( checkSet, pop, contextXML ); - } - } else { - checkSet = parts = []; - } - } - - if ( !checkSet ) { - checkSet = set; - } - - if ( !checkSet ) { - Sizzle.error( cur || selector ); - } - - if ( toString.call(checkSet) === "[object Array]" ) { - if ( !prune ) { - results.push.apply( results, checkSet ); - } else if ( context && context.nodeType === 1 ) { - for ( var i = 0; checkSet[i] != null; i++ ) { - if ( checkSet[i] && (checkSet[i] === true || checkSet[i].nodeType === 1 && contains(context, checkSet[i])) ) { - results.push( set[i] ); - } - } - } else { - for ( var i = 0; checkSet[i] != null; i++ ) { - if ( checkSet[i] && checkSet[i].nodeType === 1 ) { - results.push( set[i] ); - } - } - } - } else { - makeArray( checkSet, results ); - } - - if ( extra ) { - Sizzle( extra, origContext, results, seed ); - Sizzle.uniqueSort( results ); - } - - return results; -}; - -Sizzle.uniqueSort = function(results){ - if ( sortOrder ) { - hasDuplicate = baseHasDuplicate; - results.sort(sortOrder); - - if ( hasDuplicate ) { - for ( var i = 1; i < results.length; i++ ) { - if ( results[i] === results[i-1] ) { - results.splice(i--, 1); - } - } - } - } - - return results; -}; - -Sizzle.matches = function(expr, set){ - return Sizzle(expr, null, null, set); -}; - -Sizzle.find = function(expr, context, isXML){ - var set, match; - - if ( !expr ) { - return []; - } - - for ( var i = 0, l = Expr.order.length; i < l; i++ ) { - var type = Expr.order[i], match; - - if ( (match = Expr.leftMatch[ type ].exec( expr )) ) { - var left = match[1]; - match.splice(1,1); - - if ( left.substr( left.length - 1 ) !== "\\" ) { - match[1] = (match[1] || "").replace(/\\/g, ""); - set = Expr.find[ type ]( match, context, isXML ); - if ( set != null ) { - expr = expr.replace( Expr.match[ type ], "" ); - break; - } - } - } - } - - if ( !set ) { - set = context.getElementsByTagName("*"); - } - - return {set: set, expr: expr}; -}; - -Sizzle.filter = function(expr, set, inplace, not){ - var old = expr, result = [], curLoop = set, match, anyFound, - isXMLFilter = set && set[0] && isXML(set[0]); - - while ( expr && set.length ) { - for ( var type in Expr.filter ) { - if ( (match = Expr.leftMatch[ type ].exec( expr )) != null && match[2] ) { - var filter = Expr.filter[ type ], found, item, left = match[1]; - anyFound = false; - - match.splice(1,1); - - if ( left.substr( left.length - 1 ) === "\\" ) { - continue; - } - - if ( curLoop === result ) { - result = []; - } - - if ( Expr.preFilter[ type ] ) { - match = Expr.preFilter[ type ]( match, curLoop, inplace, result, not, isXMLFilter ); - - if ( !match ) { - anyFound = found = true; - } else if ( match === true ) { - continue; - } - } - - if ( match ) { - for ( var i = 0; (item = curLoop[i]) != null; i++ ) { - if ( item ) { - found = filter( item, match, i, curLoop ); - var pass = not ^ !!found; - - if ( inplace && found != null ) { - if ( pass ) { - anyFound = true; - } else { - curLoop[i] = false; - } - } else if ( pass ) { - result.push( item ); - anyFound = true; - } - } - } - } - - if ( found !== undefined ) { - if ( !inplace ) { - curLoop = result; - } - - expr = expr.replace( Expr.match[ type ], "" ); - - if ( !anyFound ) { - return []; - } - - break; - } - } - } - - // Improper expression - if ( expr === old ) { - if ( anyFound == null ) { - Sizzle.error( expr ); - } else { - break; - } - } - - old = expr; - } - - return curLoop; -}; - -Sizzle.error = function( msg ) { - throw "Syntax error, unrecognized expression: " + msg; -}; - -var Expr = Sizzle.selectors = { - order: [ "ID", "NAME", "TAG" ], - match: { - ID: /#((?:[\w\u00c0-\uFFFF-]|\\.)+)/, - CLASS: /\.((?:[\w\u00c0-\uFFFF-]|\\.)+)/, - NAME: /\[name=['"]*((?:[\w\u00c0-\uFFFF-]|\\.)+)['"]*\]/, - ATTR: /\[\s*((?:[\w\u00c0-\uFFFF-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/, - TAG: /^((?:[\w\u00c0-\uFFFF\*-]|\\.)+)/, - CHILD: /:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/, - POS: /:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/, - PSEUDO: /:((?:[\w\u00c0-\uFFFF-]|\\.)+)(?:\((['"]?)((?:\([^\)]+\)|[^\(\)]*)+)\2\))?/ - }, - leftMatch: {}, - attrMap: { - "class": "className", - "for": "htmlFor" - }, - attrHandle: { - href: function(elem){ - return elem.getAttribute("href"); - } - }, - relative: { - "+": function(checkSet, part){ - var isPartStr = typeof part === "string", - isTag = isPartStr && !/\W/.test(part), - isPartStrNotTag = isPartStr && !isTag; - - if ( isTag ) { - part = part.toLowerCase(); - } - - for ( var i = 0, l = checkSet.length, elem; i < l; i++ ) { - if ( (elem = checkSet[i]) ) { - while ( (elem = elem.previousSibling) && elem.nodeType !== 1 ) {} - - checkSet[i] = isPartStrNotTag || elem && elem.nodeName.toLowerCase() === part ? - elem || false : - elem === part; - } - } - - if ( isPartStrNotTag ) { - Sizzle.filter( part, checkSet, true ); - } - }, - ">": function(checkSet, part){ - var isPartStr = typeof part === "string"; - - if ( isPartStr && !/\W/.test(part) ) { - part = part.toLowerCase(); - - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - if ( elem ) { - var parent = elem.parentNode; - checkSet[i] = parent.nodeName.toLowerCase() === part ? parent : false; - } - } - } else { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - if ( elem ) { - checkSet[i] = isPartStr ? - elem.parentNode : - elem.parentNode === part; - } - } - - if ( isPartStr ) { - Sizzle.filter( part, checkSet, true ); - } - } - }, - "": function(checkSet, part, isXML){ - var doneName = done++, checkFn = dirCheck; - - if ( typeof part === "string" && !/\W/.test(part) ) { - var nodeCheck = part = part.toLowerCase(); - checkFn = dirNodeCheck; - } - - checkFn("parentNode", part, doneName, checkSet, nodeCheck, isXML); - }, - "~": function(checkSet, part, isXML){ - var doneName = done++, checkFn = dirCheck; - - if ( typeof part === "string" && !/\W/.test(part) ) { - var nodeCheck = part = part.toLowerCase(); - checkFn = dirNodeCheck; - } - - checkFn("previousSibling", part, doneName, checkSet, nodeCheck, isXML); - } - }, - find: { - ID: function(match, context, isXML){ - if ( typeof context.getElementById !== "undefined" && !isXML ) { - var m = context.getElementById(match[1]); - return m ? [m] : []; - } - }, - NAME: function(match, context){ - if ( typeof context.getElementsByName !== "undefined" ) { - var ret = [], results = context.getElementsByName(match[1]); - - for ( var i = 0, l = results.length; i < l; i++ ) { - if ( results[i].getAttribute("name") === match[1] ) { - ret.push( results[i] ); - } - } - - return ret.length === 0 ? null : ret; - } - }, - TAG: function(match, context){ - return context.getElementsByTagName(match[1]); - } - }, - preFilter: { - CLASS: function(match, curLoop, inplace, result, not, isXML){ - match = " " + match[1].replace(/\\/g, "") + " "; - - if ( isXML ) { - return match; - } - - for ( var i = 0, elem; (elem = curLoop[i]) != null; i++ ) { - if ( elem ) { - if ( not ^ (elem.className && (" " + elem.className + " ").replace(/[\t\n]/g, " ").indexOf(match) >= 0) ) { - if ( !inplace ) { - result.push( elem ); - } - } else if ( inplace ) { - curLoop[i] = false; - } - } - } - - return false; - }, - ID: function(match){ - return match[1].replace(/\\/g, ""); - }, - TAG: function(match, curLoop){ - return match[1].toLowerCase(); - }, - CHILD: function(match){ - if ( match[1] === "nth" ) { - // parse equations like 'even', 'odd', '5', '2n', '3n+2', '4n-1', '-n+6' - var test = /(-?)(\d*)n((?:\+|-)?\d*)/.exec( - match[2] === "even" && "2n" || match[2] === "odd" && "2n+1" || - !/\D/.test( match[2] ) && "0n+" + match[2] || match[2]); - - // calculate the numbers (first)n+(last) including if they are negative - match[2] = (test[1] + (test[2] || 1)) - 0; - match[3] = test[3] - 0; - } - - // TODO: Move to normal caching system - match[0] = done++; - - return match; - }, - ATTR: function(match, curLoop, inplace, result, not, isXML){ - var name = match[1].replace(/\\/g, ""); - - if ( !isXML && Expr.attrMap[name] ) { - match[1] = Expr.attrMap[name]; - } - - if ( match[2] === "~=" ) { - match[4] = " " + match[4] + " "; - } - - return match; - }, - PSEUDO: function(match, curLoop, inplace, result, not){ - if ( match[1] === "not" ) { - // If we're dealing with a complex expression, or a simple one - if ( ( chunker.exec(match[3]) || "" ).length > 1 || /^\w/.test(match[3]) ) { - match[3] = Sizzle(match[3], null, null, curLoop); - } else { - var ret = Sizzle.filter(match[3], curLoop, inplace, true ^ not); - if ( !inplace ) { - result.push.apply( result, ret ); - } - return false; - } - } else if ( Expr.match.POS.test( match[0] ) || Expr.match.CHILD.test( match[0] ) ) { - return true; - } - - return match; - }, - POS: function(match){ - match.unshift( true ); - return match; - } - }, - filters: { - enabled: function(elem){ - return elem.disabled === false && elem.type !== "hidden"; - }, - disabled: function(elem){ - return elem.disabled === true; - }, - checked: function(elem){ - return elem.checked === true; - }, - selected: function(elem){ - // Accessing this property makes selected-by-default - // options in Safari work properly - elem.parentNode.selectedIndex; - return elem.selected === true; - }, - parent: function(elem){ - return !!elem.firstChild; - }, - empty: function(elem){ - return !elem.firstChild; - }, - has: function(elem, i, match){ - return !!Sizzle( match[3], elem ).length; - }, - header: function(elem){ - return /h\d/i.test( elem.nodeName ); - }, - text: function(elem){ - return "text" === elem.type; - }, - radio: function(elem){ - return "radio" === elem.type; - }, - checkbox: function(elem){ - return "checkbox" === elem.type; - }, - file: function(elem){ - return "file" === elem.type; - }, - password: function(elem){ - return "password" === elem.type; - }, - submit: function(elem){ - return "submit" === elem.type; - }, - image: function(elem){ - return "image" === elem.type; - }, - reset: function(elem){ - return "reset" === elem.type; - }, - button: function(elem){ - return "button" === elem.type || elem.nodeName.toLowerCase() === "button"; - }, - input: function(elem){ - return /input|select|textarea|button/i.test(elem.nodeName); - } - }, - setFilters: { - first: function(elem, i){ - return i === 0; - }, - last: function(elem, i, match, array){ - return i === array.length - 1; - }, - even: function(elem, i){ - return i % 2 === 0; - }, - odd: function(elem, i){ - return i % 2 === 1; - }, - lt: function(elem, i, match){ - return i < match[3] - 0; - }, - gt: function(elem, i, match){ - return i > match[3] - 0; - }, - nth: function(elem, i, match){ - return match[3] - 0 === i; - }, - eq: function(elem, i, match){ - return match[3] - 0 === i; - } - }, - filter: { - PSEUDO: function(elem, match, i, array){ - var name = match[1], filter = Expr.filters[ name ]; - - if ( filter ) { - return filter( elem, i, match, array ); - } else if ( name === "contains" ) { - return (elem.textContent || elem.innerText || getText([ elem ]) || "").indexOf(match[3]) >= 0; - } else if ( name === "not" ) { - var not = match[3]; - - for ( var i = 0, l = not.length; i < l; i++ ) { - if ( not[i] === elem ) { - return false; - } - } - - return true; - } else { - Sizzle.error( "Syntax error, unrecognized expression: " + name ); - } - }, - CHILD: function(elem, match){ - var type = match[1], node = elem; - switch (type) { - case 'only': - case 'first': - while ( (node = node.previousSibling) ) { - if ( node.nodeType === 1 ) { - return false; - } - } - if ( type === "first" ) { - return true; - } - node = elem; - case 'last': - while ( (node = node.nextSibling) ) { - if ( node.nodeType === 1 ) { - return false; - } - } - return true; - case 'nth': - var first = match[2], last = match[3]; - - if ( first === 1 && last === 0 ) { - return true; - } - - var doneName = match[0], - parent = elem.parentNode; - - if ( parent && (parent.sizcache !== doneName || !elem.nodeIndex) ) { - var count = 0; - for ( node = parent.firstChild; node; node = node.nextSibling ) { - if ( node.nodeType === 1 ) { - node.nodeIndex = ++count; - } - } - parent.sizcache = doneName; - } - - var diff = elem.nodeIndex - last; - if ( first === 0 ) { - return diff === 0; - } else { - return ( diff % first === 0 && diff / first >= 0 ); - } - } - }, - ID: function(elem, match){ - return elem.nodeType === 1 && elem.getAttribute("id") === match; - }, - TAG: function(elem, match){ - return (match === "*" && elem.nodeType === 1) || elem.nodeName.toLowerCase() === match; - }, - CLASS: function(elem, match){ - return (" " + (elem.className || elem.getAttribute("class")) + " ") - .indexOf( match ) > -1; - }, - ATTR: function(elem, match){ - var name = match[1], - result = Expr.attrHandle[ name ] ? - Expr.attrHandle[ name ]( elem ) : - elem[ name ] != null ? - elem[ name ] : - elem.getAttribute( name ), - value = result + "", - type = match[2], - check = match[4]; - - return result == null ? - type === "!=" : - type === "=" ? - value === check : - type === "*=" ? - value.indexOf(check) >= 0 : - type === "~=" ? - (" " + value + " ").indexOf(check) >= 0 : - !check ? - value && result !== false : - type === "!=" ? - value !== check : - type === "^=" ? - value.indexOf(check) === 0 : - type === "$=" ? - value.substr(value.length - check.length) === check : - type === "|=" ? - value === check || value.substr(0, check.length + 1) === check + "-" : - false; - }, - POS: function(elem, match, i, array){ - var name = match[2], filter = Expr.setFilters[ name ]; - - if ( filter ) { - return filter( elem, i, match, array ); - } - } - } -}; - -var origPOS = Expr.match.POS; - -for ( var type in Expr.match ) { - Expr.match[ type ] = new RegExp( Expr.match[ type ].source + /(?![^\[]*\])(?![^\(]*\))/.source ); - Expr.leftMatch[ type ] = new RegExp( /(^(?:.|\r|\n)*?)/.source + Expr.match[ type ].source.replace(/\\(\d+)/g, function(all, num){ - return "\\" + (num - 0 + 1); - })); -} - -var makeArray = function(array, results) { - array = Array.prototype.slice.call( array, 0 ); - - if ( results ) { - results.push.apply( results, array ); - return results; - } - - return array; -}; - -// Perform a simple check to determine if the browser is capable of -// converting a NodeList to an array using builtin methods. -// Also verifies that the returned array holds DOM nodes -// (which is not the case in the Blackberry browser) -try { - Array.prototype.slice.call( document.documentElement.childNodes, 0 )[0].nodeType; - -// Provide a fallback method if it does not work -} catch(e){ - makeArray = function(array, results) { - var ret = results || []; - - if ( toString.call(array) === "[object Array]" ) { - Array.prototype.push.apply( ret, array ); - } else { - if ( typeof array.length === "number" ) { - for ( var i = 0, l = array.length; i < l; i++ ) { - ret.push( array[i] ); - } - } else { - for ( var i = 0; array[i]; i++ ) { - ret.push( array[i] ); - } - } - } - - return ret; - }; -} - -var sortOrder; - -if ( document.documentElement.compareDocumentPosition ) { - sortOrder = function( a, b ) { - if ( !a.compareDocumentPosition || !b.compareDocumentPosition ) { - if ( a == b ) { - hasDuplicate = true; - } - return a.compareDocumentPosition ? -1 : 1; - } - - var ret = a.compareDocumentPosition(b) & 4 ? -1 : a === b ? 0 : 1; - if ( ret === 0 ) { - hasDuplicate = true; - } - return ret; - }; -} else if ( "sourceIndex" in document.documentElement ) { - sortOrder = function( a, b ) { - if ( !a.sourceIndex || !b.sourceIndex ) { - if ( a == b ) { - hasDuplicate = true; - } - return a.sourceIndex ? -1 : 1; - } - - var ret = a.sourceIndex - b.sourceIndex; - if ( ret === 0 ) { - hasDuplicate = true; - } - return ret; - }; -} else if ( document.createRange ) { - sortOrder = function( a, b ) { - if ( !a.ownerDocument || !b.ownerDocument ) { - if ( a == b ) { - hasDuplicate = true; - } - return a.ownerDocument ? -1 : 1; - } - - var aRange = a.ownerDocument.createRange(), bRange = b.ownerDocument.createRange(); - aRange.setStart(a, 0); - aRange.setEnd(a, 0); - bRange.setStart(b, 0); - bRange.setEnd(b, 0); - var ret = aRange.compareBoundaryPoints(Range.START_TO_END, bRange); - if ( ret === 0 ) { - hasDuplicate = true; - } - return ret; - }; -} - -// Utility function for retreiving the text value of an array of DOM nodes -function getText( elems ) { - var ret = "", elem; - - for ( var i = 0; elems[i]; i++ ) { - elem = elems[i]; - - // Get the text from text nodes and CDATA nodes - if ( elem.nodeType === 3 || elem.nodeType === 4 ) { - ret += elem.nodeValue; - - // Traverse everything else, except comment nodes - } else if ( elem.nodeType !== 8 ) { - ret += getText( elem.childNodes ); - } - } - - return ret; -} - -// Check to see if the browser returns elements by name when -// querying by getElementById (and provide a workaround) -(function(){ - // We're going to inject a fake input element with a specified name - var form = document.createElement("div"), - id = "script" + (new Date).getTime(); - form.innerHTML = ""; - - // Inject it into the root element, check its status, and remove it quickly - var root = document.documentElement; - root.insertBefore( form, root.firstChild ); - - // The workaround has to do additional checks after a getElementById - // Which slows things down for other browsers (hence the branching) - if ( document.getElementById( id ) ) { - Expr.find.ID = function(match, context, isXML){ - if ( typeof context.getElementById !== "undefined" && !isXML ) { - var m = context.getElementById(match[1]); - return m ? m.id === match[1] || typeof m.getAttributeNode !== "undefined" && m.getAttributeNode("id").nodeValue === match[1] ? [m] : undefined : []; - } - }; - - Expr.filter.ID = function(elem, match){ - var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); - return elem.nodeType === 1 && node && node.nodeValue === match; - }; - } - - root.removeChild( form ); - root = form = null; // release memory in IE -})(); - -(function(){ - // Check to see if the browser returns only elements - // when doing getElementsByTagName("*") - - // Create a fake element - var div = document.createElement("div"); - div.appendChild( document.createComment("") ); - - // Make sure no comments are found - if ( div.getElementsByTagName("*").length > 0 ) { - Expr.find.TAG = function(match, context){ - var results = context.getElementsByTagName(match[1]); - - // Filter out possible comments - if ( match[1] === "*" ) { - var tmp = []; - - for ( var i = 0; results[i]; i++ ) { - if ( results[i].nodeType === 1 ) { - tmp.push( results[i] ); - } - } - - results = tmp; - } - - return results; - }; - } - - // Check to see if an attribute returns normalized href attributes - div.innerHTML = ""; - if ( div.firstChild && typeof div.firstChild.getAttribute !== "undefined" && - div.firstChild.getAttribute("href") !== "#" ) { - Expr.attrHandle.href = function(elem){ - return elem.getAttribute("href", 2); - }; - } - - div = null; // release memory in IE -})(); - -if ( document.querySelectorAll ) { - (function(){ - var oldSizzle = Sizzle, div = document.createElement("div"); - div.innerHTML = "

                                                                                                                                                                                                                                                              "; - - // Safari can't handle uppercase or unicode characters when - // in quirks mode. - if ( div.querySelectorAll && div.querySelectorAll(".TEST").length === 0 ) { - return; - } - - Sizzle = function(query, context, extra, seed){ - context = context || document; - - // Only use querySelectorAll on non-XML documents - // (ID selectors don't work in non-HTML documents) - if ( !seed && context.nodeType === 9 && !isXML(context) ) { - try { - return makeArray( context.querySelectorAll(query), extra ); - } catch(e){} - } - - return oldSizzle(query, context, extra, seed); - }; - - for ( var prop in oldSizzle ) { - Sizzle[ prop ] = oldSizzle[ prop ]; - } - - div = null; // release memory in IE - })(); -} - -(function(){ - var div = document.createElement("div"); - - div.innerHTML = "
                                                                                                                                                                                                                                                              "; - - // Opera can't find a second classname (in 9.6) - // Also, make sure that getElementsByClassName actually exists - if ( !div.getElementsByClassName || div.getElementsByClassName("e").length === 0 ) { - return; - } - - // Safari caches class attributes, doesn't catch changes (in 3.2) - div.lastChild.className = "e"; - - if ( div.getElementsByClassName("e").length === 1 ) { - return; - } - - Expr.order.splice(1, 0, "CLASS"); - Expr.find.CLASS = function(match, context, isXML) { - if ( typeof context.getElementsByClassName !== "undefined" && !isXML ) { - return context.getElementsByClassName(match[1]); - } - }; - - div = null; // release memory in IE -})(); - -function dirNodeCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - if ( elem ) { - elem = elem[dir]; - var match = false; - - while ( elem ) { - if ( elem.sizcache === doneName ) { - match = checkSet[elem.sizset]; - break; - } - - if ( elem.nodeType === 1 && !isXML ){ - elem.sizcache = doneName; - elem.sizset = i; - } - - if ( elem.nodeName.toLowerCase() === cur ) { - match = elem; - break; - } - - elem = elem[dir]; - } - - checkSet[i] = match; - } - } -} - -function dirCheck( dir, cur, doneName, checkSet, nodeCheck, isXML ) { - for ( var i = 0, l = checkSet.length; i < l; i++ ) { - var elem = checkSet[i]; - if ( elem ) { - elem = elem[dir]; - var match = false; - - while ( elem ) { - if ( elem.sizcache === doneName ) { - match = checkSet[elem.sizset]; - break; - } - - if ( elem.nodeType === 1 ) { - if ( !isXML ) { - elem.sizcache = doneName; - elem.sizset = i; - } - if ( typeof cur !== "string" ) { - if ( elem === cur ) { - match = true; - break; - } - - } else if ( Sizzle.filter( cur, [elem] ).length > 0 ) { - match = elem; - break; - } - } - - elem = elem[dir]; - } - - checkSet[i] = match; - } - } -} - -var contains = document.compareDocumentPosition ? function(a, b){ - return !!(a.compareDocumentPosition(b) & 16); -} : function(a, b){ - return a !== b && (a.contains ? a.contains(b) : true); -}; - -var isXML = function(elem){ - // documentElement is verified for cases where it doesn't yet exist - // (such as loading iframes in IE - #4833) - var documentElement = (elem ? elem.ownerDocument || elem : 0).documentElement; - return documentElement ? documentElement.nodeName !== "HTML" : false; -}; - -var posProcess = function(selector, context){ - var tmpSet = [], later = "", match, - root = context.nodeType ? [context] : context; - - // Position selectors must be done after the filter - // And so must :not(positional) so we move all PSEUDOs to the end - while ( (match = Expr.match.PSEUDO.exec( selector )) ) { - later += match[0]; - selector = selector.replace( Expr.match.PSEUDO, "" ); - } - - selector = Expr.relative[selector] ? selector + "*" : selector; - - for ( var i = 0, l = root.length; i < l; i++ ) { - Sizzle( selector, root[i], tmpSet ); - } - - return Sizzle.filter( later, tmpSet ); -}; - -// EXPOSE -jQuery.find = Sizzle; -jQuery.expr = Sizzle.selectors; -jQuery.expr[":"] = jQuery.expr.filters; -jQuery.unique = Sizzle.uniqueSort; -jQuery.text = getText; -jQuery.isXMLDoc = isXML; -jQuery.contains = contains; - -return; - -window.Sizzle = Sizzle; - -})(); -var runtil = /Until$/, - rparentsprev = /^(?:parents|prevUntil|prevAll)/, - // Note: This RegExp should be improved, or likely pulled from Sizzle - rmultiselector = /,/, - slice = Array.prototype.slice; - -// Implement the identical functionality for filter and not -var winnow = function( elements, qualifier, keep ) { - if ( jQuery.isFunction( qualifier ) ) { - return jQuery.grep(elements, function( elem, i ) { - return !!qualifier.call( elem, i, elem ) === keep; - }); - - } else if ( qualifier.nodeType ) { - return jQuery.grep(elements, function( elem, i ) { - return (elem === qualifier) === keep; - }); - - } else if ( typeof qualifier === "string" ) { - var filtered = jQuery.grep(elements, function( elem ) { - return elem.nodeType === 1; - }); - - if ( isSimple.test( qualifier ) ) { - return jQuery.filter(qualifier, filtered, !keep); - } else { - qualifier = jQuery.filter( qualifier, filtered ); - } - } - - return jQuery.grep(elements, function( elem, i ) { - return (jQuery.inArray( elem, qualifier ) >= 0) === keep; - }); -}; - -jQuery.fn.extend({ - find: function( selector ) { - var ret = this.pushStack( "", "find", selector ), length = 0; - - for ( var i = 0, l = this.length; i < l; i++ ) { - length = ret.length; - jQuery.find( selector, this[i], ret ); - - if ( i > 0 ) { - // Make sure that the results are unique - for ( var n = length; n < ret.length; n++ ) { - for ( var r = 0; r < length; r++ ) { - if ( ret[r] === ret[n] ) { - ret.splice(n--, 1); - break; - } - } - } - } - } - - return ret; - }, - - has: function( target ) { - var targets = jQuery( target ); - return this.filter(function() { - for ( var i = 0, l = targets.length; i < l; i++ ) { - if ( jQuery.contains( this, targets[i] ) ) { - return true; - } - } - }); - }, - - not: function( selector ) { - return this.pushStack( winnow(this, selector, false), "not", selector); - }, - - filter: function( selector ) { - return this.pushStack( winnow(this, selector, true), "filter", selector ); - }, - - is: function( selector ) { - return !!selector && jQuery.filter( selector, this ).length > 0; - }, - - closest: function( selectors, context ) { - if ( jQuery.isArray( selectors ) ) { - var ret = [], cur = this[0], match, matches = {}, selector; - - if ( cur && selectors.length ) { - for ( var i = 0, l = selectors.length; i < l; i++ ) { - selector = selectors[i]; - - if ( !matches[selector] ) { - matches[selector] = jQuery.expr.match.POS.test( selector ) ? - jQuery( selector, context || this.context ) : - selector; - } - } - - while ( cur && cur.ownerDocument && cur !== context ) { - for ( selector in matches ) { - match = matches[selector]; - - if ( match.jquery ? match.index(cur) > -1 : jQuery(cur).is(match) ) { - ret.push({ selector: selector, elem: cur }); - delete matches[selector]; - } - } - cur = cur.parentNode; - } - } - - return ret; - } - - var pos = jQuery.expr.match.POS.test( selectors ) ? - jQuery( selectors, context || this.context ) : null; - - return this.map(function( i, cur ) { - while ( cur && cur.ownerDocument && cur !== context ) { - if ( pos ? pos.index(cur) > -1 : jQuery(cur).is(selectors) ) { - return cur; - } - cur = cur.parentNode; - } - return null; - }); - }, - - // Determine the position of an element within - // the matched set of elements - index: function( elem ) { - if ( !elem || typeof elem === "string" ) { - return jQuery.inArray( this[0], - // If it receives a string, the selector is used - // If it receives nothing, the siblings are used - elem ? jQuery( elem ) : this.parent().children() ); - } - // Locate the position of the desired element - return jQuery.inArray( - // If it receives a jQuery object, the first element is used - elem.jquery ? elem[0] : elem, this ); - }, - - add: function( selector, context ) { - var set = typeof selector === "string" ? - jQuery( selector, context || this.context ) : - jQuery.makeArray( selector ), - all = jQuery.merge( this.get(), set ); - - return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? - all : - jQuery.unique( all ) ); - }, - - andSelf: function() { - return this.add( this.prevObject ); - } -}); - -// A painfully simple check to see if an element is disconnected -// from a document (should be improved, where feasible). -function isDisconnected( node ) { - return !node || !node.parentNode || node.parentNode.nodeType === 11; -} - -jQuery.each({ - parent: function( elem ) { - var parent = elem.parentNode; - return parent && parent.nodeType !== 11 ? parent : null; - }, - parents: function( elem ) { - return jQuery.dir( elem, "parentNode" ); - }, - parentsUntil: function( elem, i, until ) { - return jQuery.dir( elem, "parentNode", until ); - }, - next: function( elem ) { - return jQuery.nth( elem, 2, "nextSibling" ); - }, - prev: function( elem ) { - return jQuery.nth( elem, 2, "previousSibling" ); - }, - nextAll: function( elem ) { - return jQuery.dir( elem, "nextSibling" ); - }, - prevAll: function( elem ) { - return jQuery.dir( elem, "previousSibling" ); - }, - nextUntil: function( elem, i, until ) { - return jQuery.dir( elem, "nextSibling", until ); - }, - prevUntil: function( elem, i, until ) { - return jQuery.dir( elem, "previousSibling", until ); - }, - siblings: function( elem ) { - return jQuery.sibling( elem.parentNode.firstChild, elem ); - }, - children: function( elem ) { - return jQuery.sibling( elem.firstChild ); - }, - contents: function( elem ) { - return jQuery.nodeName( elem, "iframe" ) ? - elem.contentDocument || elem.contentWindow.document : - jQuery.makeArray( elem.childNodes ); - } -}, function( name, fn ) { - jQuery.fn[ name ] = function( until, selector ) { - var ret = jQuery.map( this, fn, until ); - - if ( !runtil.test( name ) ) { - selector = until; - } - - if ( selector && typeof selector === "string" ) { - ret = jQuery.filter( selector, ret ); - } - - ret = this.length > 1 ? jQuery.unique( ret ) : ret; - - if ( (this.length > 1 || rmultiselector.test( selector )) && rparentsprev.test( name ) ) { - ret = ret.reverse(); - } - - return this.pushStack( ret, name, slice.call(arguments).join(",") ); - }; -}); - -jQuery.extend({ - filter: function( expr, elems, not ) { - if ( not ) { - expr = ":not(" + expr + ")"; - } - - return jQuery.find.matches(expr, elems); - }, - - dir: function( elem, dir, until ) { - var matched = [], cur = elem[dir]; - while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { - if ( cur.nodeType === 1 ) { - matched.push( cur ); - } - cur = cur[dir]; - } - return matched; - }, - - nth: function( cur, result, dir, elem ) { - result = result || 1; - var num = 0; - - for ( ; cur; cur = cur[dir] ) { - if ( cur.nodeType === 1 && ++num === result ) { - break; - } - } - - return cur; - }, - - sibling: function( n, elem ) { - var r = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - r.push( n ); - } - } - - return r; - } -}); -var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g, - rleadingWhitespace = /^\s+/, - rxhtmlTag = /(<([\w:]+)[^>]*?)\/>/g, - rselfClosing = /^(?:area|br|col|embed|hr|img|input|link|meta|param)$/i, - rtagName = /<([\w:]+)/, - rtbody = /"; - }, - wrapMap = { - option: [ 1, "" ], - legend: [ 1, "
                                                                                                                                                                                                                                                              ", "
                                                                                                                                                                                                                                                              " ], - thead: [ 1, "", "
                                                                                                                                                                                                                                                              " ], - tr: [ 2, "", "
                                                                                                                                                                                                                                                              " ], - td: [ 3, "", "
                                                                                                                                                                                                                                                              " ], - col: [ 2, "", "
                                                                                                                                                                                                                                                              " ], - area: [ 1, "", "" ], - _default: [ 0, "", "" ] - }; - -wrapMap.optgroup = wrapMap.option; -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - -// IE can't serialize and ' % \ - # escape() calls force_unicode. - (escape(pk_value), escapejs(obj))) - elif "_addanother" in request.POST: - self.message_user(request, msg + ' ' + (_("You may add another %s below.") % force_unicode(opts.verbose_name))) - return HttpResponseRedirect(request.path) - else: - self.message_user(request, msg) - - # Figure out where to redirect. If the user has change permission, - # redirect to the change-list page for this object. Otherwise, - # redirect to the admin index. - if self.has_change_permission(request, None): - post_url = '../' - else: - post_url = '../../../' - return HttpResponseRedirect(post_url) - - def response_change(self, request, obj): - """ - Determines the HttpResponse for the change_view stage. - """ - opts = obj._meta - - # Handle proxy models automatically created by .only() or .defer() - verbose_name = opts.verbose_name - if obj._deferred: - opts_ = opts.proxy_for_model._meta - verbose_name = opts_.verbose_name - - pk_value = obj._get_pk_val() - - msg = _('The %(name)s "%(obj)s" was changed successfully.') % {'name': force_unicode(verbose_name), 'obj': force_unicode(obj)} - if "_continue" in request.POST: - self.message_user(request, msg + ' ' + _("You may edit it again below.")) - if "_popup" in request.REQUEST: - return HttpResponseRedirect(request.path + "?_popup=1") - else: - return HttpResponseRedirect(request.path) - elif "_saveasnew" in request.POST: - msg = _('The %(name)s "%(obj)s" was added successfully. You may edit it again below.') % {'name': force_unicode(verbose_name), 'obj': obj} - self.message_user(request, msg) - return HttpResponseRedirect("../%s/" % pk_value) - elif "_addanother" in request.POST: - self.message_user(request, msg + ' ' + (_("You may add another %s below.") % force_unicode(verbose_name))) - return HttpResponseRedirect("../add/") - else: - self.message_user(request, msg) - # Figure out where to redirect. If the user has change permission, - # redirect to the change-list page for this object. Otherwise, - # redirect to the admin index. - if self.has_change_permission(request, None): - return HttpResponseRedirect('../') - else: - return HttpResponseRedirect('../../../') - - def response_action(self, request, queryset): - """ - Handle an admin action. This is called if a request is POSTed to the - changelist; it returns an HttpResponse if the action was handled, and - None otherwise. - """ - - # There can be multiple action forms on the page (at the top - # and bottom of the change list, for example). Get the action - # whose button was pushed. - try: - action_index = int(request.POST.get('index', 0)) - except ValueError: - action_index = 0 - - # Construct the action form. - data = request.POST.copy() - data.pop(helpers.ACTION_CHECKBOX_NAME, None) - data.pop("index", None) - - # Use the action whose button was pushed - try: - data.update({'action': data.getlist('action')[action_index]}) - except IndexError: - # If we didn't get an action from the chosen form that's invalid - # POST data, so by deleting action it'll fail the validation check - # below. So no need to do anything here - pass - - action_form = self.action_form(data, auto_id=None) - action_form.fields['action'].choices = self.get_action_choices(request) - - # If the form's valid we can handle the action. - if action_form.is_valid(): - action = action_form.cleaned_data['action'] - select_across = action_form.cleaned_data['select_across'] - func, name, description = self.get_actions(request)[action] - - # Get the list of selected PKs. If nothing's selected, we can't - # perform an action on it, so bail. Except we want to perform - # the action explicitly on all objects. - selected = request.POST.getlist(helpers.ACTION_CHECKBOX_NAME) - if not selected and not select_across: - # Reminder that something needs to be selected or nothing will happen - msg = _("Items must be selected in order to perform " - "actions on them. No items have been changed.") - self.message_user(request, msg) - return None - - if not select_across: - # Perform the action only on the selected objects - queryset = queryset.filter(pk__in=selected) - - response = func(self, request, queryset) - - # Actions may return an HttpResponse, which will be used as the - # response from the POST. If not, we'll be a good little HTTP - # citizen and redirect back to the changelist page. - if isinstance(response, HttpResponse): - return response - else: - return HttpResponseRedirect(request.get_full_path()) - else: - msg = _("No action selected.") - self.message_user(request, msg) - return None - - @csrf_protect_m - @transaction.commit_on_success - def add_view(self, request, form_url='', extra_context=None): - "The 'add' admin view for this model." - model = self.model - opts = model._meta - - if not self.has_add_permission(request): - raise PermissionDenied - - ModelForm = self.get_form(request) - formsets = [] - if request.method == 'POST': - form = ModelForm(request.POST, request.FILES) - if form.is_valid(): - new_object = self.save_form(request, form, change=False) - form_validated = True - else: - form_validated = False - new_object = self.model() - prefixes = {} - for FormSet, inline in zip(self.get_formsets(request), self.inline_instances): - prefix = FormSet.get_default_prefix() - prefixes[prefix] = prefixes.get(prefix, 0) + 1 - if prefixes[prefix] != 1: - prefix = "%s-%s" % (prefix, prefixes[prefix]) - formset = FormSet(data=request.POST, files=request.FILES, - instance=new_object, - save_as_new="_saveasnew" in request.POST, - prefix=prefix, queryset=inline.queryset(request)) - formsets.append(formset) - if all_valid(formsets) and form_validated: - self.save_model(request, new_object, form, change=False) - form.save_m2m() - for formset in formsets: - self.save_formset(request, form, formset, change=False) - - self.log_addition(request, new_object) - return self.response_add(request, new_object) - else: - # Prepare the dict of initial data from the request. - # We have to special-case M2Ms as a list of comma-separated PKs. - initial = dict(request.GET.items()) - for k in initial: - try: - f = opts.get_field(k) - except models.FieldDoesNotExist: - continue - if isinstance(f, models.ManyToManyField): - initial[k] = initial[k].split(",") - form = ModelForm(initial=initial) - prefixes = {} - for FormSet, inline in zip(self.get_formsets(request), - self.inline_instances): - prefix = FormSet.get_default_prefix() - prefixes[prefix] = prefixes.get(prefix, 0) + 1 - if prefixes[prefix] != 1: - prefix = "%s-%s" % (prefix, prefixes[prefix]) - formset = FormSet(instance=self.model(), prefix=prefix, - queryset=inline.queryset(request)) - formsets.append(formset) - - adminForm = helpers.AdminForm(form, list(self.get_fieldsets(request)), - self.prepopulated_fields, self.get_readonly_fields(request), - model_admin=self) - media = self.media + adminForm.media - - inline_admin_formsets = [] - for inline, formset in zip(self.inline_instances, formsets): - fieldsets = list(inline.get_fieldsets(request)) - readonly = list(inline.get_readonly_fields(request)) - inline_admin_formset = helpers.InlineAdminFormSet(inline, formset, - fieldsets, readonly, model_admin=self) - inline_admin_formsets.append(inline_admin_formset) - media = media + inline_admin_formset.media - - context = { - 'title': _('Add %s') % force_unicode(opts.verbose_name), - 'adminform': adminForm, - 'is_popup': "_popup" in request.REQUEST, - 'show_delete': False, - 'media': mark_safe(media), - 'inline_admin_formsets': inline_admin_formsets, - 'errors': helpers.AdminErrorList(form, formsets), - 'root_path': self.admin_site.root_path, - 'app_label': opts.app_label, - } - context.update(extra_context or {}) - return self.render_change_form(request, context, form_url=form_url, add=True) - - @csrf_protect_m - @transaction.commit_on_success - def change_view(self, request, object_id, extra_context=None): - "The 'change' admin view for this model." - model = self.model - opts = model._meta - - obj = self.get_object(request, unquote(object_id)) - - if not self.has_change_permission(request, obj): - raise PermissionDenied - - if obj is None: - raise Http404(_('%(name)s object with primary key %(key)r does not exist.') % {'name': force_unicode(opts.verbose_name), 'key': escape(object_id)}) - - if request.method == 'POST' and "_saveasnew" in request.POST: - return self.add_view(request, form_url='../add/') - - ModelForm = self.get_form(request, obj) - formsets = [] - if request.method == 'POST': - form = ModelForm(request.POST, request.FILES, instance=obj) - if form.is_valid(): - form_validated = True - new_object = self.save_form(request, form, change=True) - else: - form_validated = False - new_object = obj - prefixes = {} - for FormSet, inline in zip(self.get_formsets(request, new_object), - self.inline_instances): - prefix = FormSet.get_default_prefix() - prefixes[prefix] = prefixes.get(prefix, 0) + 1 - if prefixes[prefix] != 1: - prefix = "%s-%s" % (prefix, prefixes[prefix]) - formset = FormSet(request.POST, request.FILES, - instance=new_object, prefix=prefix, - queryset=inline.queryset(request)) - - formsets.append(formset) - - if all_valid(formsets) and form_validated: - self.save_model(request, new_object, form, change=True) - form.save_m2m() - for formset in formsets: - self.save_formset(request, form, formset, change=True) - - change_message = self.construct_change_message(request, form, formsets) - self.log_change(request, new_object, change_message) - return self.response_change(request, new_object) - - else: - form = ModelForm(instance=obj) - prefixes = {} - for FormSet, inline in zip(self.get_formsets(request, obj), self.inline_instances): - prefix = FormSet.get_default_prefix() - prefixes[prefix] = prefixes.get(prefix, 0) + 1 - if prefixes[prefix] != 1: - prefix = "%s-%s" % (prefix, prefixes[prefix]) - formset = FormSet(instance=obj, prefix=prefix, - queryset=inline.queryset(request)) - formsets.append(formset) - - adminForm = helpers.AdminForm(form, self.get_fieldsets(request, obj), - self.prepopulated_fields, self.get_readonly_fields(request, obj), - model_admin=self) - media = self.media + adminForm.media - - inline_admin_formsets = [] - for inline, formset in zip(self.inline_instances, formsets): - fieldsets = list(inline.get_fieldsets(request, obj)) - readonly = list(inline.get_readonly_fields(request, obj)) - inline_admin_formset = helpers.InlineAdminFormSet(inline, formset, - fieldsets, readonly, model_admin=self) - inline_admin_formsets.append(inline_admin_formset) - media = media + inline_admin_formset.media - - context = { - 'title': _('Change %s') % force_unicode(opts.verbose_name), - 'adminform': adminForm, - 'object_id': object_id, - 'original': obj, - 'is_popup': "_popup" in request.REQUEST, - 'media': mark_safe(media), - 'inline_admin_formsets': inline_admin_formsets, - 'errors': helpers.AdminErrorList(form, formsets), - 'root_path': self.admin_site.root_path, - 'app_label': opts.app_label, - } - context.update(extra_context or {}) - return self.render_change_form(request, context, change=True, obj=obj) - - @csrf_protect_m - def changelist_view(self, request, extra_context=None): - "The 'change list' admin view for this model." - from django.contrib.admin.views.main import ERROR_FLAG - opts = self.model._meta - app_label = opts.app_label - if not self.has_change_permission(request, None): - raise PermissionDenied - - # Check actions to see if any are available on this changelist - actions = self.get_actions(request) - - # Remove action checkboxes if there aren't any actions available. - list_display = list(self.list_display) - if not actions: - try: - list_display.remove('action_checkbox') - except ValueError: - pass - - ChangeList = self.get_changelist(request) - try: - cl = ChangeList(request, self.model, list_display, self.list_display_links, - self.list_filter, self.date_hierarchy, self.search_fields, - self.list_select_related, self.list_per_page, self.list_editable, self) - except IncorrectLookupParameters: - # Wacky lookup parameters were given, so redirect to the main - # changelist page, without parameters, and pass an 'invalid=1' - # parameter via the query string. If wacky parameters were given - # and the 'invalid=1' parameter was already in the query string, - # something is screwed up with the database, so display an error - # page. - if ERROR_FLAG in request.GET.keys(): - return render_to_response('admin/invalid_setup.html', {'title': _('Database error')}) - return HttpResponseRedirect(request.path + '?' + ERROR_FLAG + '=1') - - # If the request was POSTed, this might be a bulk action or a bulk - # edit. Try to look up an action or confirmation first, but if this - # isn't an action the POST will fall through to the bulk edit check, - # below. - action_failed = False - selected = request.POST.getlist(helpers.ACTION_CHECKBOX_NAME) - - # Actions with no confirmation - if (actions and request.method == 'POST' and - 'index' in request.POST and '_save' not in request.POST): - if selected: - response = self.response_action(request, queryset=cl.get_query_set()) - if response: - return response - else: - action_failed = True - else: - msg = _("Items must be selected in order to perform " - "actions on them. No items have been changed.") - self.message_user(request, msg) - action_failed = True - - # Actions with confirmation - if (actions and request.method == 'POST' and - helpers.ACTION_CHECKBOX_NAME in request.POST and - 'index' not in request.POST and '_save' not in request.POST): - if selected: - response = self.response_action(request, queryset=cl.get_query_set()) - if response: - return response - else: - action_failed = True - - # If we're allowing changelist editing, we need to construct a formset - # for the changelist given all the fields to be edited. Then we'll - # use the formset to validate/process POSTed data. - formset = cl.formset = None - - # Handle POSTed bulk-edit data. - if (request.method == "POST" and cl.list_editable and - '_save' in request.POST and not action_failed): - FormSet = self.get_changelist_formset(request) - formset = cl.formset = FormSet(request.POST, request.FILES, queryset=cl.result_list) - if formset.is_valid(): - changecount = 0 - for form in formset.forms: - if form.has_changed(): - obj = self.save_form(request, form, change=True) - self.save_model(request, obj, form, change=True) - form.save_m2m() - change_msg = self.construct_change_message(request, form, None) - self.log_change(request, obj, change_msg) - changecount += 1 - - if changecount: - if changecount == 1: - name = force_unicode(opts.verbose_name) - else: - name = force_unicode(opts.verbose_name_plural) - msg = ungettext("%(count)s %(name)s was changed successfully.", - "%(count)s %(name)s were changed successfully.", - changecount) % {'count': changecount, - 'name': name, - 'obj': force_unicode(obj)} - self.message_user(request, msg) - - return HttpResponseRedirect(request.get_full_path()) - - # Handle GET -- construct a formset for display. - elif cl.list_editable: - FormSet = self.get_changelist_formset(request) - formset = cl.formset = FormSet(queryset=cl.result_list) - - # Build the list of media to be used by the formset. - if formset: - media = self.media + formset.media - else: - media = self.media - - # Build the action form and populate it with available actions. - if actions: - action_form = self.action_form(auto_id=None) - action_form.fields['action'].choices = self.get_action_choices(request) - else: - action_form = None - - selection_note_all = ungettext('%(total_count)s selected', - 'All %(total_count)s selected', cl.result_count) - - context = { - 'module_name': force_unicode(opts.verbose_name_plural), - 'selection_note': _('0 of %(cnt)s selected') % {'cnt': len(cl.result_list)}, - 'selection_note_all': selection_note_all % {'total_count': cl.result_count}, - 'title': cl.title, - 'is_popup': cl.is_popup, - 'cl': cl, - 'media': media, - 'has_add_permission': self.has_add_permission(request), - 'root_path': self.admin_site.root_path, - 'app_label': app_label, - 'action_form': action_form, - 'actions_on_top': self.actions_on_top, - 'actions_on_bottom': self.actions_on_bottom, - 'actions_selection_counter': self.actions_selection_counter, - } - context.update(extra_context or {}) - context_instance = template.RequestContext(request, current_app=self.admin_site.name) - return render_to_response(self.change_list_template or [ - 'admin/%s/%s/change_list.html' % (app_label, opts.object_name.lower()), - 'admin/%s/change_list.html' % app_label, - 'admin/change_list.html' - ], context, context_instance=context_instance) - - @csrf_protect_m - @transaction.commit_on_success - def delete_view(self, request, object_id, extra_context=None): - "The 'delete' admin view for this model." - opts = self.model._meta - app_label = opts.app_label - - obj = self.get_object(request, unquote(object_id)) - - if not self.has_delete_permission(request, obj): - raise PermissionDenied - - if obj is None: - raise Http404(_('%(name)s object with primary key %(key)r does not exist.') % {'name': force_unicode(opts.verbose_name), 'key': escape(object_id)}) - - using = router.db_for_write(self.model) - - # Populate deleted_objects, a data structure of all related objects that - # will also be deleted. - (deleted_objects, perms_needed, protected) = get_deleted_objects( - [obj], opts, request.user, self.admin_site, using) - - if request.POST: # The user has already confirmed the deletion. - if perms_needed: - raise PermissionDenied - obj_display = force_unicode(obj) - self.log_deletion(request, obj, obj_display) - self.delete_model(request, obj) - - self.message_user(request, _('The %(name)s "%(obj)s" was deleted successfully.') % {'name': force_unicode(opts.verbose_name), 'obj': force_unicode(obj_display)}) - - if not self.has_change_permission(request, None): - return HttpResponseRedirect("../../../../") - return HttpResponseRedirect("../../") - - object_name = force_unicode(opts.verbose_name) - - if perms_needed or protected: - title = _("Cannot delete %(name)s") % {"name": object_name} - else: - title = _("Are you sure?") - - context = { - "title": title, - "object_name": object_name, - "object": obj, - "deleted_objects": deleted_objects, - "perms_lacking": perms_needed, - "protected": protected, - "opts": opts, - "root_path": self.admin_site.root_path, - "app_label": app_label, - } - context.update(extra_context or {}) - context_instance = template.RequestContext(request, current_app=self.admin_site.name) - return render_to_response(self.delete_confirmation_template or [ - "admin/%s/%s/delete_confirmation.html" % (app_label, opts.object_name.lower()), - "admin/%s/delete_confirmation.html" % app_label, - "admin/delete_confirmation.html" - ], context, context_instance=context_instance) - - def history_view(self, request, object_id, extra_context=None): - "The 'history' admin view for this model." - from django.contrib.admin.models import LogEntry - model = self.model - opts = model._meta - app_label = opts.app_label - action_list = LogEntry.objects.filter( - object_id = object_id, - content_type__id__exact = ContentType.objects.get_for_model(model).id - ).select_related().order_by('action_time') - # If no history was found, see whether this object even exists. - obj = get_object_or_404(model, pk=unquote(object_id)) - context = { - 'title': _('Change history: %s') % force_unicode(obj), - 'action_list': action_list, - 'module_name': capfirst(force_unicode(opts.verbose_name_plural)), - 'object': obj, - 'root_path': self.admin_site.root_path, - 'app_label': app_label, - } - context.update(extra_context or {}) - context_instance = template.RequestContext(request, current_app=self.admin_site.name) - return render_to_response(self.object_history_template or [ - "admin/%s/%s/object_history.html" % (app_label, opts.object_name.lower()), - "admin/%s/object_history.html" % app_label, - "admin/object_history.html" - ], context, context_instance=context_instance) - -class InlineModelAdmin(BaseModelAdmin): - """ - Options for inline editing of ``model`` instances. - - Provide ``name`` to specify the attribute name of the ``ForeignKey`` from - ``model`` to its parent. This is required if ``model`` has more than one - ``ForeignKey`` to its parent. - """ - model = None - fk_name = None - formset = BaseInlineFormSet - extra = 3 - max_num = None - template = None - verbose_name = None - verbose_name_plural = None - can_delete = True - - def __init__(self, parent_model, admin_site): - self.admin_site = admin_site - self.parent_model = parent_model - self.opts = self.model._meta - super(InlineModelAdmin, self).__init__() - if self.verbose_name is None: - self.verbose_name = self.model._meta.verbose_name - if self.verbose_name_plural is None: - self.verbose_name_plural = self.model._meta.verbose_name_plural - - def _media(self): - from django.conf import settings - js = ['js/jquery.min.js', 'js/jquery.init.js', 'js/inlines.min.js'] - if self.prepopulated_fields: - js.append('js/urlify.js') - js.append('js/prepopulate.min.js') - if self.filter_vertical or self.filter_horizontal: - js.extend(['js/SelectBox.js' , 'js/SelectFilter2.js']) - return forms.Media(js=['%s%s' % (settings.ADMIN_MEDIA_PREFIX, url) for url in js]) - media = property(_media) - - def get_formset(self, request, obj=None, **kwargs): - """Returns a BaseInlineFormSet class for use in admin add/change views.""" - if self.declared_fieldsets: - fields = flatten_fieldsets(self.declared_fieldsets) - else: - fields = None - if self.exclude is None: - exclude = [] - else: - exclude = list(self.exclude) - exclude.extend(kwargs.get("exclude", [])) - exclude.extend(self.get_readonly_fields(request, obj)) - # if exclude is an empty list we use None, since that's the actual - # default - exclude = exclude or None - defaults = { - "form": self.form, - "formset": self.formset, - "fk_name": self.fk_name, - "fields": fields, - "exclude": exclude, - "formfield_callback": curry(self.formfield_for_dbfield, request=request), - "extra": self.extra, - "max_num": self.max_num, - "can_delete": self.can_delete, - } - defaults.update(kwargs) - return inlineformset_factory(self.parent_model, self.model, **defaults) - - def get_fieldsets(self, request, obj=None): - if self.declared_fieldsets: - return self.declared_fieldsets - form = self.get_formset(request).form - fields = form.base_fields.keys() + list(self.get_readonly_fields(request, obj)) - return [(None, {'fields': fields})] - -class StackedInline(InlineModelAdmin): - template = 'admin/edit_inline/stacked.html' - -class TabularInline(InlineModelAdmin): - template = 'admin/edit_inline/tabular.html' diff --git a/lib/python2.7/site-packages/django/contrib/admin/sites.py b/lib/python2.7/site-packages/django/contrib/admin/sites.py deleted file mode 100644 index b03bce455..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/sites.py +++ /dev/null @@ -1,432 +0,0 @@ -import re -from django import http, template -from django.contrib.admin import ModelAdmin, actions -from django.contrib.admin.forms import AdminAuthenticationForm -from django.contrib.auth import REDIRECT_FIELD_NAME -from django.contrib.contenttypes import views as contenttype_views -from django.views.decorators.csrf import csrf_protect -from django.db.models.base import ModelBase -from django.core.exceptions import ImproperlyConfigured -from django.core.urlresolvers import reverse -from django.shortcuts import render_to_response -from django.utils.functional import update_wrapper -from django.utils.safestring import mark_safe -from django.utils.text import capfirst -from django.utils.translation import ugettext as _ -from django.views.decorators.cache import never_cache -from django.conf import settings - -LOGIN_FORM_KEY = 'this_is_the_login_form' - -class AlreadyRegistered(Exception): - pass - -class NotRegistered(Exception): - pass - -class AdminSite(object): - """ - An AdminSite object encapsulates an instance of the Django admin application, ready - to be hooked in to your URLconf. Models are registered with the AdminSite using the - register() method, and the get_urls() method can then be used to access Django view - functions that present a full admin interface for the collection of registered - models. - """ - login_form = None - index_template = None - app_index_template = None - login_template = None - logout_template = None - password_change_template = None - password_change_done_template = None - - def __init__(self, name=None, app_name='admin'): - self._registry = {} # model_class class -> admin_class instance - self.root_path = None - if name is None: - self.name = 'admin' - else: - self.name = name - self.app_name = app_name - self._actions = {'delete_selected': actions.delete_selected} - self._global_actions = self._actions.copy() - - def register(self, model_or_iterable, admin_class=None, **options): - """ - Registers the given model(s) with the given admin class. - - The model(s) should be Model classes, not instances. - - If an admin class isn't given, it will use ModelAdmin (the default - admin options). If keyword arguments are given -- e.g., list_display -- - they'll be applied as options to the admin class. - - If a model is already registered, this will raise AlreadyRegistered. - - If a model is abstract, this will raise ImproperlyConfigured. - """ - if not admin_class: - admin_class = ModelAdmin - - # Don't import the humongous validation code unless required - if admin_class and settings.DEBUG: - from django.contrib.admin.validation import validate - else: - validate = lambda model, adminclass: None - - if isinstance(model_or_iterable, ModelBase): - model_or_iterable = [model_or_iterable] - for model in model_or_iterable: - if model._meta.abstract: - raise ImproperlyConfigured('The model %s is abstract, so it ' - 'cannot be registered with admin.' % model.__name__) - - if model in self._registry: - raise AlreadyRegistered('The model %s is already registered' % model.__name__) - - # If we got **options then dynamically construct a subclass of - # admin_class with those **options. - if options: - # For reasons I don't quite understand, without a __module__ - # the created class appears to "live" in the wrong place, - # which causes issues later on. - options['__module__'] = __name__ - admin_class = type("%sAdmin" % model.__name__, (admin_class,), options) - - # Validate (which might be a no-op) - validate(admin_class, model) - - # Instantiate the admin class to save in the registry - self._registry[model] = admin_class(model, self) - - def unregister(self, model_or_iterable): - """ - Unregisters the given model(s). - - If a model isn't already registered, this will raise NotRegistered. - """ - if isinstance(model_or_iterable, ModelBase): - model_or_iterable = [model_or_iterable] - for model in model_or_iterable: - if model not in self._registry: - raise NotRegistered('The model %s is not registered' % model.__name__) - del self._registry[model] - - def add_action(self, action, name=None): - """ - Register an action to be available globally. - """ - name = name or action.__name__ - self._actions[name] = action - self._global_actions[name] = action - - def disable_action(self, name): - """ - Disable a globally-registered action. Raises KeyError for invalid names. - """ - del self._actions[name] - - def get_action(self, name): - """ - Explicitally get a registered global action wheather it's enabled or - not. Raises KeyError for invalid names. - """ - return self._global_actions[name] - - @property - def actions(self): - """ - Get all the enabled actions as an iterable of (name, func). - """ - return self._actions.iteritems() - - def has_permission(self, request): - """ - Returns True if the given HttpRequest has permission to view - *at least one* page in the admin site. - """ - return request.user.is_active and request.user.is_staff - - def check_dependencies(self): - """ - Check that all things needed to run the admin have been correctly installed. - - The default implementation checks that LogEntry, ContentType and the - auth context processor are installed. - """ - from django.contrib.admin.models import LogEntry - from django.contrib.contenttypes.models import ContentType - - if not LogEntry._meta.installed: - raise ImproperlyConfigured("Put 'django.contrib.admin' in your " - "INSTALLED_APPS setting in order to use the admin application.") - if not ContentType._meta.installed: - raise ImproperlyConfigured("Put 'django.contrib.contenttypes' in " - "your INSTALLED_APPS setting in order to use the admin application.") - if not ('django.contrib.auth.context_processors.auth' in settings.TEMPLATE_CONTEXT_PROCESSORS or - 'django.core.context_processors.auth' in settings.TEMPLATE_CONTEXT_PROCESSORS): - raise ImproperlyConfigured("Put 'django.contrib.auth.context_processors.auth' " - "in your TEMPLATE_CONTEXT_PROCESSORS setting in order to use the admin application.") - - def admin_view(self, view, cacheable=False): - """ - Decorator to create an admin view attached to this ``AdminSite``. This - wraps the view and provides permission checking by calling - ``self.has_permission``. - - You'll want to use this from within ``AdminSite.get_urls()``: - - class MyAdminSite(AdminSite): - - def get_urls(self): - from django.conf.urls.defaults import patterns, url - - urls = super(MyAdminSite, self).get_urls() - urls += patterns('', - url(r'^my_view/$', self.admin_view(some_view)) - ) - return urls - - By default, admin_views are marked non-cacheable using the - ``never_cache`` decorator. If the view can be safely cached, set - cacheable=True. - """ - def inner(request, *args, **kwargs): - if not self.has_permission(request): - return self.login(request) - return view(request, *args, **kwargs) - if not cacheable: - inner = never_cache(inner) - # We add csrf_protect here so this function can be used as a utility - # function for any view, without having to repeat 'csrf_protect'. - if not getattr(view, 'csrf_exempt', False): - inner = csrf_protect(inner) - return update_wrapper(inner, view) - - def get_urls(self): - from django.conf.urls.defaults import patterns, url, include - - if settings.DEBUG: - self.check_dependencies() - - def wrap(view, cacheable=False): - def wrapper(*args, **kwargs): - return self.admin_view(view, cacheable)(*args, **kwargs) - return update_wrapper(wrapper, view) - - # Admin-site-wide views. - urlpatterns = patterns('', - url(r'^$', - wrap(self.index), - name='index'), - url(r'^logout/$', - wrap(self.logout), - name='logout'), - url(r'^password_change/$', - wrap(self.password_change, cacheable=True), - name='password_change'), - url(r'^password_change/done/$', - wrap(self.password_change_done, cacheable=True), - name='password_change_done'), - url(r'^jsi18n/$', - wrap(self.i18n_javascript, cacheable=True), - name='jsi18n'), - url(r'^r/(?P\d+)/(?P.+)/$', - wrap(contenttype_views.shortcut)), - url(r'^(?P\w+)/$', - wrap(self.app_index), - name='app_list') - ) - - # Add in each model's views. - for model, model_admin in self._registry.iteritems(): - urlpatterns += patterns('', - url(r'^%s/%s/' % (model._meta.app_label, model._meta.module_name), - include(model_admin.urls)) - ) - return urlpatterns - - @property - def urls(self): - return self.get_urls(), self.app_name, self.name - - def password_change(self, request): - """ - Handles the "change password" task -- both form display and validation. - """ - from django.contrib.auth.views import password_change - if self.root_path is not None: - url = '%spassword_change/done/' % self.root_path - else: - url = reverse('admin:password_change_done', current_app=self.name) - defaults = { - 'current_app': self.name, - 'post_change_redirect': url - } - if self.password_change_template is not None: - defaults['template_name'] = self.password_change_template - return password_change(request, **defaults) - - def password_change_done(self, request, extra_context=None): - """ - Displays the "success" page after a password change. - """ - from django.contrib.auth.views import password_change_done - defaults = { - 'current_app': self.name, - 'extra_context': extra_context or {}, - } - if self.password_change_done_template is not None: - defaults['template_name'] = self.password_change_done_template - return password_change_done(request, **defaults) - - def i18n_javascript(self, request): - """ - Displays the i18n JavaScript that the Django admin requires. - - This takes into account the USE_I18N setting. If it's set to False, the - generated JavaScript will be leaner and faster. - """ - if settings.USE_I18N: - from django.views.i18n import javascript_catalog - else: - from django.views.i18n import null_javascript_catalog as javascript_catalog - return javascript_catalog(request, packages=['django.conf', 'django.contrib.admin']) - - @never_cache - def logout(self, request, extra_context=None): - """ - Logs out the user for the given HttpRequest. - - This should *not* assume the user is already logged in. - """ - from django.contrib.auth.views import logout - defaults = { - 'current_app': self.name, - 'extra_context': extra_context or {}, - } - if self.logout_template is not None: - defaults['template_name'] = self.logout_template - return logout(request, **defaults) - - @never_cache - def login(self, request, extra_context=None): - """ - Displays the login form for the given HttpRequest. - """ - from django.contrib.auth.views import login - context = { - 'title': _('Log in'), - 'root_path': self.root_path, - 'app_path': request.get_full_path(), - REDIRECT_FIELD_NAME: request.get_full_path(), - } - context.update(extra_context or {}) - defaults = { - 'extra_context': context, - 'current_app': self.name, - 'authentication_form': self.login_form or AdminAuthenticationForm, - 'template_name': self.login_template or 'admin/login.html', - } - return login(request, **defaults) - - @never_cache - def index(self, request, extra_context=None): - """ - Displays the main admin index page, which lists all of the installed - apps that have been registered in this site. - """ - app_dict = {} - user = request.user - for model, model_admin in self._registry.items(): - app_label = model._meta.app_label - has_module_perms = user.has_module_perms(app_label) - - if has_module_perms: - perms = model_admin.get_model_perms(request) - - # Check whether user has any perm for this module. - # If so, add the module to the model_list. - if True in perms.values(): - model_dict = { - 'name': capfirst(model._meta.verbose_name_plural), - 'admin_url': mark_safe('%s/%s/' % (app_label, model.__name__.lower())), - 'perms': perms, - } - if app_label in app_dict: - app_dict[app_label]['models'].append(model_dict) - else: - app_dict[app_label] = { - 'name': app_label.title(), - 'app_url': app_label + '/', - 'has_module_perms': has_module_perms, - 'models': [model_dict], - } - - # Sort the apps alphabetically. - app_list = app_dict.values() - app_list.sort(key=lambda x: x['name']) - - # Sort the models alphabetically within each app. - for app in app_list: - app['models'].sort(key=lambda x: x['name']) - - context = { - 'title': _('Site administration'), - 'app_list': app_list, - 'root_path': self.root_path, - } - context.update(extra_context or {}) - context_instance = template.RequestContext(request, current_app=self.name) - return render_to_response(self.index_template or 'admin/index.html', context, - context_instance=context_instance - ) - - def app_index(self, request, app_label, extra_context=None): - user = request.user - has_module_perms = user.has_module_perms(app_label) - app_dict = {} - for model, model_admin in self._registry.items(): - if app_label == model._meta.app_label: - if has_module_perms: - perms = model_admin.get_model_perms(request) - - # Check whether user has any perm for this module. - # If so, add the module to the model_list. - if True in perms.values(): - model_dict = { - 'name': capfirst(model._meta.verbose_name_plural), - 'admin_url': '%s/' % model.__name__.lower(), - 'perms': perms, - } - if app_dict: - app_dict['models'].append(model_dict), - else: - # First time around, now that we know there's - # something to display, add in the necessary meta - # information. - app_dict = { - 'name': app_label.title(), - 'app_url': '', - 'has_module_perms': has_module_perms, - 'models': [model_dict], - } - if not app_dict: - raise http.Http404('The requested admin page does not exist.') - # Sort the models alphabetically within each app. - app_dict['models'].sort(key=lambda x: x['name']) - context = { - 'title': _('%s administration') % capfirst(app_label), - 'app_list': [app_dict], - 'root_path': self.root_path, - } - context.update(extra_context or {}) - context_instance = template.RequestContext(request, current_app=self.name) - return render_to_response(self.app_index_template or ('admin/%s/app_index.html' % app_label, - 'admin/app_index.html'), context, - context_instance=context_instance - ) - -# This global object represents the default admin site, for the common case. -# You can instantiate AdminSite in your own code to create a custom admin site. -site = AdminSite() diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/404.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/404.html deleted file mode 100644 index 9bf4293e7..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/404.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block title %}{% trans 'Page not found' %}{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              {% trans 'Page not found' %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans "We're sorry, but the requested page could not be found." %}

                                                                                                                                                                                                                                                              - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/500.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/500.html deleted file mode 100644 index b30e43170..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/500.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block breadcrumbs %}{% endblock %} - -{% block title %}{% trans 'Server error (500)' %}{% endblock %} - -{% block content %} -

                                                                                                                                                                                                                                                              {% trans 'Server Error (500)' %}

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {% trans "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." %}

                                                                                                                                                                                                                                                              - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/actions.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/actions.html deleted file mode 100644 index aaaa2458c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/actions.html +++ /dev/null @@ -1,16 +0,0 @@ -{% load i18n %} -
                                                                                                                                                                                                                                                              - {% for field in action_form %}{% if field.label %}{% endif %}{% endfor %} - - {% if actions_selection_counter %} - - {{ selection_note }} - {% if cl.result_count != cl.result_list|length %} - {{ selection_note_all }} - - {% blocktrans with cl.result_count as total_count %}Select all {{ total_count }} {{ module_name }}{% endblocktrans %} - - {% trans "Clear selection" %} - {% endif %} - {% endif %} -
                                                                                                                                                                                                                                                              diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/app_index.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/app_index.html deleted file mode 100644 index 120433d70..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/app_index.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "admin/index.html" %} -{% load i18n %} - -{% if not is_popup %} - -{% block breadcrumbs %} -{% endblock %} - -{% endif %} - -{% block sidebar %}{% endblock %} \ No newline at end of file diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/auth/user/add_form.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/auth/user/add_form.html deleted file mode 100644 index c8889eb06..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/auth/user/add_form.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends "admin/change_form.html" %} -{% load i18n %} - -{% block form_top %} - {% if not is_popup %} -

                                                                                                                                                                                                                                                              {% trans "First, enter a username and password. Then, you'll be able to edit more user options." %}

                                                                                                                                                                                                                                                              - {% else %} -

                                                                                                                                                                                                                                                              {% trans "Enter a username and password." %}

                                                                                                                                                                                                                                                              - {% endif %} -{% endblock %} - -{% block after_field_sets %} - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/auth/user/change_password.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/auth/user/change_password.html deleted file mode 100644 index 5a2036d1d..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/auth/user/change_password.html +++ /dev/null @@ -1,55 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n admin_modify adminmedia %} -{% load url from future %} -{% block extrahead %}{{ block.super }} -{% url 'admin:jsi18n' as jsi18nurl %} - -{% endblock %} -{% block extrastyle %}{{ block.super }}{% endblock %} -{% block bodyclass %}{{ opts.app_label }}-{{ opts.object_name.lower }} change-form{% endblock %} -{% block breadcrumbs %}{% if not is_popup %} - -{% endif %}{% endblock %} -{% block content %}
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              {% csrf_token %}{% block form_top %}{% endblock %} -
                                                                                                                                                                                                                                                              -{% if is_popup %}{% endif %} -{% if form.errors %} -

                                                                                                                                                                                                                                                              - {% blocktrans count form.errors.items|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} -

                                                                                                                                                                                                                                                              -{% endif %} - -

                                                                                                                                                                                                                                                              {% blocktrans with original.username as username %}Enter a new password for the user {{ username }}.{% endblocktrans %}

                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - {{ form.password1.errors }} - {# TODO: get required class on label_tag #} - {{ form.password1 }} -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - {{ form.password2.errors }} - {# TODO: get required class on label_tag #} - {{ form.password2 }} -

                                                                                                                                                                                                                                                              {% trans 'Enter the same password as above, for verification.' %}

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/base.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/base.html deleted file mode 100644 index 87f6c8738..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/base.html +++ /dev/null @@ -1,82 +0,0 @@ -{% load url from future %} - - -{% block title %}{% endblock %} - -{% block extrastyle %}{% endblock %} - -{% if LANGUAGE_BIDI %}{% endif %} - -{% block extrahead %}{% endblock %} -{% block blockbots %}{% endblock %} - -{% load i18n %} - - - - -
                                                                                                                                                                                                                                                              - - {% if not is_popup %} - - - - {% block breadcrumbs %}{% endblock %} - {% endif %} - - {% if messages %} -
                                                                                                                                                                                                                                                                {% for message in messages %} - {{ message }} - {% endfor %}
                                                                                                                                                                                                                                                              - {% endif %} - - -
                                                                                                                                                                                                                                                              - {% block pretitle %}{% endblock %} - {% block content_title %}{% if title %}

                                                                                                                                                                                                                                                              {{ title }}

                                                                                                                                                                                                                                                              {% endif %}{% endblock %} - {% block content %} - {% block object-tools %}{% endblock %} - {{ content }} - {% endblock %} - {% block sidebar %}{% endblock %} -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - - {% block footer %}{% endblock %} -
                                                                                                                                                                                                                                                              - - - - diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/base_site.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/base_site.html deleted file mode 100644 index b867bd29b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/base_site.html +++ /dev/null @@ -1,10 +0,0 @@ -{% extends "admin/base.html" %} -{% load i18n %} - -{% block title %}{{ title }} | {% trans 'Django site admin' %}{% endblock %} - -{% block branding %} -

                                                                                                                                                                                                                                                              {% trans 'Django administration' %}

                                                                                                                                                                                                                                                              -{% endblock %} - -{% block nav-global %}{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/change_form.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/change_form.html deleted file mode 100644 index fb278b42b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/change_form.html +++ /dev/null @@ -1,71 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n admin_modify adminmedia %} -{% load url from future %} - -{% block extrahead %}{{ block.super }} -{% url 'admin:jsi18n' as jsi18nurl %} - -{{ media }} -{% endblock %} - -{% block extrastyle %}{{ block.super }}{% endblock %} - -{% block coltype %}{% if ordered_objects %}colMS{% else %}colM{% endif %}{% endblock %} - -{% block bodyclass %}{{ opts.app_label }}-{{ opts.object_name.lower }} change-form{% endblock %} - -{% block breadcrumbs %}{% if not is_popup %} - -{% endif %}{% endblock %} - -{% block content %}
                                                                                                                                                                                                                                                              -{% block object-tools %} -{% if change %}{% if not is_popup %} - -{% endif %}{% endif %} -{% endblock %} -
                                                                                                                                                                                                                                                              {% csrf_token %}{% block form_top %}{% endblock %} -
                                                                                                                                                                                                                                                              -{% if is_popup %}{% endif %} -{% if save_on_top %}{% submit_row %}{% endif %} -{% if errors %} -

                                                                                                                                                                                                                                                              - {% blocktrans count errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} -

                                                                                                                                                                                                                                                              - {{ adminform.form.non_field_errors }} -{% endif %} - -{% for fieldset in adminform %} - {% include "admin/includes/fieldset.html" %} -{% endfor %} - -{% block after_field_sets %}{% endblock %} - -{% for inline_admin_formset in inline_admin_formsets %} - {% include inline_admin_formset.opts.template %} -{% endfor %} - -{% block after_related_objects %}{% endblock %} - -{% submit_row %} - -{% if adminform and add %} - -{% endif %} - -{# JavaScript for prepopulated fields #} -{% prepopulated_fields_js %} - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/change_list.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/change_list.html deleted file mode 100644 index 33b520166..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/change_list.html +++ /dev/null @@ -1,104 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load adminmedia admin_list i18n %} -{% load url from future %} -{% block extrastyle %} - {{ block.super }} - - {% if cl.formset %} - - {% endif %} - {% if cl.formset or action_form %} - {% url 'admin:jsi18n' as jsi18nurl %} - - {% endif %} - {{ media.css }} - {% if not actions_on_top and not actions_on_bottom %} - - {% endif %} -{% endblock %} - -{% block extrahead %} -{{ block.super }} -{{ media.js }} -{% if action_form %}{% if actions_on_top or actions_on_bottom %} - -{% endif %}{% endif %} -{% endblock %} - -{% block bodyclass %}change-list{% endblock %} - -{% if not is_popup %} - {% block breadcrumbs %} - - {% endblock %} -{% endif %} - -{% block coltype %}flex{% endblock %} - -{% block content %} -
                                                                                                                                                                                                                                                              - {% block object-tools %} - {% if has_add_permission %} - - {% endif %} - {% endblock %} - {% if cl.formset.errors %} -

                                                                                                                                                                                                                                                              - {% blocktrans count cl.formset.errors|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} -

                                                                                                                                                                                                                                                              - {{ cl.formset.non_form_errors }} - {% endif %} -
                                                                                                                                                                                                                                                              - {% block search %}{% search_form cl %}{% endblock %} - {% block date_hierarchy %}{% date_hierarchy cl %}{% endblock %} - - {% block filters %} - {% if cl.has_filters %} -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {% trans 'Filter' %}

                                                                                                                                                                                                                                                              - {% for spec in cl.filter_specs %}{% admin_list_filter cl spec %}{% endfor %} -
                                                                                                                                                                                                                                                              - {% endif %} - {% endblock %} - -
                                                                                                                                                                                                                                                              {% csrf_token %} - {% if cl.formset %} -
                                                                                                                                                                                                                                                              {{ cl.formset.management_form }}
                                                                                                                                                                                                                                                              - {% endif %} - - {% block result_list %} - {% if action_form and actions_on_top and cl.full_result_count %}{% admin_actions %}{% endif %} - {% result_list cl %} - {% if action_form and actions_on_bottom and cl.full_result_count %}{% admin_actions %}{% endif %} - {% endblock %} - {% block pagination %}{% pagination cl %}{% endblock %} -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/change_list_results.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/change_list_results.html deleted file mode 100644 index 891268fab..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/change_list_results.html +++ /dev/null @@ -1,27 +0,0 @@ -{% if result_hidden_fields %} -
                                                                                                                                                                                                                                                              {# DIV for HTML validation #} -{% for item in result_hidden_fields %}{{ item }}{% endfor %} -
                                                                                                                                                                                                                                                              -{% endif %} -{% if results %} -
                                                                                                                                                                                                                                                              - - - -{% for header in result_headers %}{% endfor %} - - - -{% for result in results %} -{% if result.form.non_field_errors %} - -{% endif %} -{% for item in result %}{{ item }}{% endfor %} -{% endfor %} - -
                                                                                                                                                                                                                                                              -{% if header.sortable %}{% endif %} -{{ header.text|capfirst }} -{% if header.sortable %}{% endif %}
                                                                                                                                                                                                                                                              {{ result.form.non_field_errors }}
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endif %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/date_hierarchy.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/date_hierarchy.html deleted file mode 100644 index 005851051..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/date_hierarchy.html +++ /dev/null @@ -1,10 +0,0 @@ -{% if show %} -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endif %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/delete_confirmation.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/delete_confirmation.html deleted file mode 100644 index 0e6d47e68..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/delete_confirmation.html +++ /dev/null @@ -1,42 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block breadcrumbs %} - -{% endblock %} - -{% block content %} -{% if perms_lacking or protected %} - {% if perms_lacking %} -

                                                                                                                                                                                                                                                              {% blocktrans with object as escaped_object %}Deleting the {{ object_name }} '{{ escaped_object }}' would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:{% endblocktrans %}

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                - {% for obj in perms_lacking %} -
                                                                                                                                                                                                                                                              • {{ obj }}
                                                                                                                                                                                                                                                              • - {% endfor %} -
                                                                                                                                                                                                                                                              - {% endif %} - {% if protected %} -

                                                                                                                                                                                                                                                              {% blocktrans with object as escaped_object %}Deleting the {{ object_name }} '{{ escaped_object }}' would require deleting the following protected related objects:{% endblocktrans %}

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                - {% for obj in protected %} -
                                                                                                                                                                                                                                                              • {{ obj }}
                                                                                                                                                                                                                                                              • - {% endfor %} -
                                                                                                                                                                                                                                                              - {% endif %} -{% else %} -

                                                                                                                                                                                                                                                              {% blocktrans with object as escaped_object %}Are you sure you want to delete the {{ object_name }} "{{ escaped_object }}"? All of the following related items will be deleted:{% endblocktrans %}

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                {{ deleted_objects|unordered_list }}
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              {% csrf_token %} -
                                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endif %} -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/delete_selected_confirmation.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/delete_selected_confirmation.html deleted file mode 100644 index 127519bea..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/delete_selected_confirmation.html +++ /dev/null @@ -1,47 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n l10n %} - -{% block breadcrumbs %} - -{% endblock %} - -{% block content %} -{% if perms_lacking or protected %} - {% if perms_lacking %} -

                                                                                                                                                                                                                                                              {% blocktrans %}Deleting the selected {{ objects_name }} would result in deleting related objects, but your account doesn't have permission to delete the following types of objects:{% endblocktrans %}

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                - {% for obj in perms_lacking %} -
                                                                                                                                                                                                                                                              • {{ obj }}
                                                                                                                                                                                                                                                              • - {% endfor %} -
                                                                                                                                                                                                                                                              - {% endif %} - {% if protected %} -

                                                                                                                                                                                                                                                              {% blocktrans %}Deleting the selected {{ objects_name }} would require deleting the following protected related objects:{% endblocktrans %}

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                - {% for obj in protected %} -
                                                                                                                                                                                                                                                              • {{ obj }}
                                                                                                                                                                                                                                                              • - {% endfor %} -
                                                                                                                                                                                                                                                              - {% endif %} -{% else %} -

                                                                                                                                                                                                                                                              {% blocktrans %}Are you sure you want to delete the selected {{ objects_name }}? All of the following objects and their related items will be deleted:{% endblocktrans %}

                                                                                                                                                                                                                                                              - {% for deletable_object in deletable_objects %} -
                                                                                                                                                                                                                                                                {{ deletable_object|unordered_list }}
                                                                                                                                                                                                                                                              - {% endfor %} -
                                                                                                                                                                                                                                                              {% csrf_token %} -
                                                                                                                                                                                                                                                              - {% for obj in queryset %} - - {% endfor %} - - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endif %} -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/edit_inline/stacked.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/edit_inline/stacked.html deleted file mode 100644 index ff628c0bb..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/edit_inline/stacked.html +++ /dev/null @@ -1,82 +0,0 @@ -{% load i18n adminmedia %} -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {{ inline_admin_formset.opts.verbose_name_plural|title }}

                                                                                                                                                                                                                                                              -{{ inline_admin_formset.formset.management_form }} -{{ inline_admin_formset.formset.non_form_errors }} - -{% for inline_admin_form in inline_admin_formset %}
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {{ inline_admin_formset.opts.verbose_name|title }}: {% if inline_admin_form.original %}{{ inline_admin_form.original }}{% else %}#{{ forloop.counter }}{% endif %} - {% if inline_admin_form.show_url %}{% trans "View on site" %}{% endif %} - {% if inline_admin_formset.formset.can_delete and inline_admin_form.original %}{{ inline_admin_form.deletion_field.field }} {{ inline_admin_form.deletion_field.label_tag }}{% endif %} -

                                                                                                                                                                                                                                                              - {% if inline_admin_form.form.non_field_errors %}{{ inline_admin_form.form.non_field_errors }}{% endif %} - {% for fieldset in inline_admin_form %} - {% include "admin/includes/fieldset.html" %} - {% endfor %} - {% if inline_admin_form.has_auto_field %}{{ inline_admin_form.pk_field.field }}{% endif %} - {{ inline_admin_form.fk_field.field }} -
                                                                                                                                                                                                                                                              {% endfor %} -
                                                                                                                                                                                                                                                              - - diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/edit_inline/tabular.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/edit_inline/tabular.html deleted file mode 100644 index 5b9d2dca1..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/edit_inline/tabular.html +++ /dev/null @@ -1,128 +0,0 @@ -{% load i18n adminmedia admin_modify %} -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - - diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/filter.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/filter.html deleted file mode 100644 index 9ef69ffda..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/filter.html +++ /dev/null @@ -1,8 +0,0 @@ -{% load i18n %} -

                                                                                                                                                                                                                                                              {% blocktrans with title as filter_title %} By {{ filter_title }} {% endblocktrans %}

                                                                                                                                                                                                                                                              - diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html deleted file mode 100644 index 6363aeeee..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/includes/fieldset.html +++ /dev/null @@ -1,29 +0,0 @@ -
                                                                                                                                                                                                                                                              - {% if fieldset.name %}

                                                                                                                                                                                                                                                              {{ fieldset.name }}

                                                                                                                                                                                                                                                              {% endif %} - {% if fieldset.description %} -
                                                                                                                                                                                                                                                              {{ fieldset.description|safe }}
                                                                                                                                                                                                                                                              - {% endif %} - {% for line in fieldset %} -
                                                                                                                                                                                                                                                              - {% if line.fields|length_is:'1' %}{{ line.errors }}{% endif %} - {% for field in line %} - - {% if not line.fields|length_is:'1' and not field.is_readonly %}{{ field.errors }}{% endif %} - {% if field.is_checkbox %} - {{ field.field }}{{ field.label_tag }} - {% else %} - {{ field.label_tag }} - {% if field.is_readonly %} -

                                                                                                                                                                                                                                                              {{ field.contents }}

                                                                                                                                                                                                                                                              - {% else %} - {{ field.field }} - {% endif %} - {% endif %} - {% if field.field.help_text %} -

                                                                                                                                                                                                                                                              {{ field.field.help_text|safe }}

                                                                                                                                                                                                                                                              - {% endif %} -
                                                                                                                                                                                                                                                              - {% endfor %} -
                                                                                                                                                                                                                                                              - {% endfor %} - diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/index.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/index.html deleted file mode 100644 index d392f075a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/index.html +++ /dev/null @@ -1,80 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block extrastyle %}{{ block.super }}{% endblock %} - -{% block coltype %}colMS{% endblock %} - -{% block bodyclass %}dashboard{% endblock %} - -{% block breadcrumbs %}{% endblock %} - -{% block content %} -
                                                                                                                                                                                                                                                              - -{% if app_list %} - {% for app in app_list %} -
                                                                                                                                                                                                                                                              - - - {% for model in app.models %} - - {% if model.perms.change %} - - {% else %} - - {% endif %} - - {% if model.perms.add %} - - {% else %} - - {% endif %} - - {% if model.perms.change %} - - {% else %} - - {% endif %} - - {% endfor %} -
                                                                                                                                                                                                                                                              {% blocktrans with app.name as name %}{{ name }}{% endblocktrans %}
                                                                                                                                                                                                                                                              {{ model.name }}{{ model.name }}{% trans 'Add' %} {% trans 'Change' %} 
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - {% endfor %} -{% else %} -

                                                                                                                                                                                                                                                              {% trans "You don't have permission to edit anything." %}

                                                                                                                                                                                                                                                              -{% endif %} -
                                                                                                                                                                                                                                                              -{% endblock %} - -{% block sidebar %} - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/invalid_setup.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/invalid_setup.html deleted file mode 100644 index f09b316b0..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/invalid_setup.html +++ /dev/null @@ -1,8 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block breadcrumbs %}{% endblock %} - -{% block content %} -

                                                                                                                                                                                                                                                              {% trans "Something's wrong with your database installation. Make sure the appropriate database tables have been created, and make sure the database is readable by the appropriate user." %}

                                                                                                                                                                                                                                                              -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/login.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/login.html deleted file mode 100644 index ad7b14e96..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/login.html +++ /dev/null @@ -1,50 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block extrastyle %}{% load adminmedia %}{{ block.super }}{% endblock %} - -{% block bodyclass %}login{% endblock %} - -{% block nav-global %}{% endblock %} - -{% block content_title %}{% endblock %} - -{% block breadcrumbs %}{% endblock %} - -{% block content %} -{% if form.errors and not form.non_field_errors and not form.this_is_the_login_form.errors %} -

                                                                                                                                                                                                                                                              -{% blocktrans count form.errors.items|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} -

                                                                                                                                                                                                                                                              -{% endif %} - -{% if form.non_field_errors or form.this_is_the_login_form.errors %} -{% for error in form.non_field_errors|add:form.this_is_the_login_form.errors %} -

                                                                                                                                                                                                                                                              - {{ error }} -

                                                                                                                                                                                                                                                              -{% endfor %} -{% endif %} - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              {% csrf_token %} -
                                                                                                                                                                                                                                                              - {% if not form.this_is_the_login_form.errors %}{{ form.username.errors }}{% endif %} - {{ form.username }} -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - {% if not form.this_is_the_login_form.errors %}{{ form.password.errors }}{% endif %} - {{ form.password }} - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                                              -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/object_history.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/object_history.html deleted file mode 100644 index 5ae7847cf..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/object_history.html +++ /dev/null @@ -1,42 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block breadcrumbs %} - -{% endblock %} - -{% block content %} -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -{% if action_list %} - - - - - - - - - - {% for action in action_list %} - - - - - - {% endfor %} - -
                                                                                                                                                                                                                                                              {% trans 'Date/time' %}{% trans 'User' %}{% trans 'Action' %}
                                                                                                                                                                                                                                                              {{ action.action_time|date:"DATETIME_FORMAT" }}{{ action.user.username }}{% if action.user.get_full_name %} ({{ action.user.get_full_name }}){% endif %}{{ action.change_message }}
                                                                                                                                                                                                                                                              -{% else %} -

                                                                                                                                                                                                                                                              {% trans "This object doesn't have a change history. It probably wasn't added via this admin site." %}

                                                                                                                                                                                                                                                              -{% endif %} -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/pagination.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/pagination.html deleted file mode 100644 index 358813290..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/pagination.html +++ /dev/null @@ -1,12 +0,0 @@ -{% load admin_list %} -{% load i18n %} -

                                                                                                                                                                                                                                                              -{% if pagination_required %} -{% for i in page_range %} - {% paginator_number cl i %} -{% endfor %} -{% endif %} -{{ cl.result_count }} {% ifequal cl.result_count 1 %}{{ cl.opts.verbose_name }}{% else %}{{ cl.opts.verbose_name_plural }}{% endifequal %} -{% if show_all_url %}  {% trans 'Show all' %}{% endif %} -{% if cl.formset and cl.result_count %}{% endif %} -

                                                                                                                                                                                                                                                              diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/prepopulated_fields_js.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/prepopulated_fields_js.html deleted file mode 100644 index 43ef5ba07..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/prepopulated_fields_js.html +++ /dev/null @@ -1,23 +0,0 @@ - diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/search_form.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/search_form.html deleted file mode 100644 index 3e14a110e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/search_form.html +++ /dev/null @@ -1,18 +0,0 @@ -{% load adminmedia %} -{% load i18n %} -{% if cl.search_fields %} -
                                                                                                                                                                                                                                                              - -{% endif %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/submit_line.html b/lib/python2.7/site-packages/django/contrib/admin/templates/admin/submit_line.html deleted file mode 100644 index 8bb5d27bb..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/admin/submit_line.html +++ /dev/null @@ -1,8 +0,0 @@ -{% load i18n %} -
                                                                                                                                                                                                                                                              -{% if show_save %}{% endif %} -{% if show_delete_link %}{% endif %} -{% if show_save_as_new %}{%endif%} -{% if show_save_and_add_another %}{% endif %} -{% if show_save_and_continue %}{% endif %} -
                                                                                                                                                                                                                                                              diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/logged_out.html b/lib/python2.7/site-packages/django/contrib/admin/templates/registration/logged_out.html deleted file mode 100644 index d339ef0a4..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/logged_out.html +++ /dev/null @@ -1,12 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block breadcrumbs %}{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              {% trans "Thanks for spending some quality time with the Web site today." %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans 'Log in again' %}

                                                                                                                                                                                                                                                              - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_change_done.html b/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_change_done.html deleted file mode 100644 index 0c0690d5e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_change_done.html +++ /dev/null @@ -1,15 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} -{% load url from future %} -{% block userlinks %}{% url 'django-admindocs-docroot' as docsroot %}{% if docsroot %}{% trans 'Documentation' %} / {% endif %}{% trans 'Change password' %} / {% trans 'Log out' %}{% endblock %} -{% block breadcrumbs %}{% endblock %} - -{% block title %}{% trans 'Password change successful' %}{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              {% trans 'Password change successful' %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans 'Your password was changed.' %}

                                                                                                                                                                                                                                                              - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_change_form.html b/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_change_form.html deleted file mode 100644 index 23d6c1d8a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_change_form.html +++ /dev/null @@ -1,51 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n adminmedia %} -{% load url from future %} -{% block extrastyle %}{{ block.super }}{% endblock %} -{% block userlinks %}{% url 'django-admindocs-docroot' as docsroot %}{% if docsroot %}{% trans 'Documentation' %} / {% endif %} {% trans 'Change password' %} / {% trans 'Log out' %}{% endblock %} -{% block breadcrumbs %}{% endblock %} - -{% block title %}{% trans 'Password change' %}{% endblock %} - -{% block content %}
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              {% csrf_token %} -
                                                                                                                                                                                                                                                              -{% if form.errors %} -

                                                                                                                                                                                                                                                              - {% blocktrans count form.errors.items|length as counter %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %} -

                                                                                                                                                                                                                                                              -{% endif %} - -

                                                                                                                                                                                                                                                              {% trans 'Password change' %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans "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." %}

                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - {{ form.old_password.errors }} - {{ form.old_password }} -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - {{ form.new_password1.errors }} - {{ form.new_password1 }} -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -{{ form.new_password2.errors }} - {{ form.new_password2 }} -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              - - -
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_complete.html b/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_complete.html deleted file mode 100644 index fceb167a8..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_complete.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block breadcrumbs %}{% endblock %} - -{% block title %}{% trans 'Password reset complete' %}{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              {% trans 'Password reset complete' %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans "Your password has been set. You may go ahead and log in now." %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans 'Log in' %}

                                                                                                                                                                                                                                                              - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_confirm.html b/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_confirm.html deleted file mode 100644 index df9cf1b31..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_confirm.html +++ /dev/null @@ -1,32 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block breadcrumbs %}{% endblock %} - -{% block title %}{% trans 'Password reset' %}{% endblock %} - -{% block content %} - -{% if validlink %} - -

                                                                                                                                                                                                                                                              {% trans 'Enter new password' %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans "Please enter your new password twice so we can verify you typed it in correctly." %}

                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              {% csrf_token %} -{{ form.new_password1.errors }} -

                                                                                                                                                                                                                                                              {{ form.new_password1 }}

                                                                                                                                                                                                                                                              -{{ form.new_password2.errors }} -

                                                                                                                                                                                                                                                              {{ form.new_password2 }}

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -{% else %} - -

                                                                                                                                                                                                                                                              {% trans 'Password reset unsuccessful' %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans "The password reset link was invalid, possibly because it has already been used. Please request a new password reset." %}

                                                                                                                                                                                                                                                              - -{% endif %} - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_done.html b/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_done.html deleted file mode 100644 index e223bdb9d..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_done.html +++ /dev/null @@ -1,14 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block breadcrumbs %}{% endblock %} - -{% block title %}{% trans 'Password reset successful' %}{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              {% trans 'Password reset successful' %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans "We've e-mailed you instructions for setting your password to the e-mail address you submitted. You should be receiving it shortly." %}

                                                                                                                                                                                                                                                              - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_email.html b/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_email.html deleted file mode 100644 index de9dc79c5..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_email.html +++ /dev/null @@ -1,14 +0,0 @@ -{% load i18n %}{% load url from future %}{% autoescape off %} -{% blocktrans %}You're receiving this e-mail because you requested a password reset for your user account at {{ site_name }}.{% endblocktrans %} - -{% trans "Please go to the following page and choose a new password:" %} -{% block reset_link %} -{{ protocol }}://{{ domain }}{% url 'django.contrib.auth.views.password_reset_confirm' uidb36=uid token=token %} -{% endblock %} -{% trans "Your username, in case you've forgotten:" %} {{ user.username }} - -{% trans "Thanks for using our site!" %} - -{% blocktrans %}The {{ site_name }} team{% endblocktrans %} - -{% endautoescape %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_form.html b/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_form.html deleted file mode 100644 index d3a128428..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templates/registration/password_reset_form.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} - -{% block breadcrumbs %}{% endblock %} - -{% block title %}{% trans "Password reset" %}{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              {% trans "Password reset" %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans "Forgotten your password? Enter your e-mail address below, and we'll e-mail instructions for setting a new one." %}

                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              {% csrf_token %} -{{ form.email.errors }} -

                                                                                                                                                                                                                                                              {{ form.email }}

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admin/templatetags/__init__.py b/lib/python2.7/site-packages/django/contrib/admin/templatetags/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/contrib/admin/templatetags/admin_list.py b/lib/python2.7/site-packages/django/contrib/admin/templatetags/admin_list.py deleted file mode 100644 index fdf082be7..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templatetags/admin_list.py +++ /dev/null @@ -1,330 +0,0 @@ -import datetime - -from django.conf import settings -from django.contrib.admin.util import lookup_field, display_for_field, label_for_field -from django.contrib.admin.views.main import (ALL_VAR, EMPTY_CHANGELIST_VALUE, - ORDER_VAR, ORDER_TYPE_VAR, PAGE_VAR, SEARCH_VAR) -from django.core.exceptions import ObjectDoesNotExist -from django.db import models -from django.utils import formats -from django.utils.html import escape, conditional_escape -from django.utils.safestring import mark_safe -from django.utils.text import capfirst -from django.utils.translation import ugettext as _ -from django.utils.encoding import smart_unicode, force_unicode -from django.template import Library - - -register = Library() - -DOT = '.' - -def paginator_number(cl,i): - """ - Generates an individual page index link in a paginated list. - """ - if i == DOT: - return u'... ' - elif i == cl.page_num: - return mark_safe(u'%d ' % (i+1)) - else: - return mark_safe(u'%d ' % (escape(cl.get_query_string({PAGE_VAR: i})), (i == cl.paginator.num_pages-1 and ' class="end"' or ''), i+1)) -paginator_number = register.simple_tag(paginator_number) - -def pagination(cl): - """ - Generates the series of links to the pages in a paginated list. - """ - paginator, page_num = cl.paginator, cl.page_num - - pagination_required = (not cl.show_all or not cl.can_show_all) and cl.multi_page - if not pagination_required: - page_range = [] - else: - ON_EACH_SIDE = 3 - ON_ENDS = 2 - - # If there are 10 or fewer pages, display links to every page. - # Otherwise, do some fancy - if paginator.num_pages <= 10: - page_range = range(paginator.num_pages) - else: - # Insert "smart" pagination links, so that there are always ON_ENDS - # links at either end of the list of pages, and there are always - # ON_EACH_SIDE links at either end of the "current page" link. - page_range = [] - if page_num > (ON_EACH_SIDE + ON_ENDS): - page_range.extend(range(0, ON_EACH_SIDE - 1)) - page_range.append(DOT) - page_range.extend(range(page_num - ON_EACH_SIDE, page_num + 1)) - else: - page_range.extend(range(0, page_num + 1)) - if page_num < (paginator.num_pages - ON_EACH_SIDE - ON_ENDS - 1): - page_range.extend(range(page_num + 1, page_num + ON_EACH_SIDE + 1)) - page_range.append(DOT) - page_range.extend(range(paginator.num_pages - ON_ENDS, paginator.num_pages)) - else: - page_range.extend(range(page_num + 1, paginator.num_pages)) - - need_show_all_link = cl.can_show_all and not cl.show_all and cl.multi_page - return { - 'cl': cl, - 'pagination_required': pagination_required, - 'show_all_url': need_show_all_link and cl.get_query_string({ALL_VAR: ''}), - 'page_range': page_range, - 'ALL_VAR': ALL_VAR, - '1': 1, - } -pagination = register.inclusion_tag('admin/pagination.html')(pagination) - -def result_headers(cl): - """ - Generates the list column headers. - """ - lookup_opts = cl.lookup_opts - - for i, field_name in enumerate(cl.list_display): - header, attr = label_for_field(field_name, cl.model, - model_admin = cl.model_admin, - return_attr = True - ) - if attr: - # if the field is the action checkbox: no sorting and special class - if field_name == 'action_checkbox': - yield { - "text": header, - "class_attrib": mark_safe(' class="action-checkbox-column"') - } - continue - - # It is a non-field, but perhaps one that is sortable - admin_order_field = getattr(attr, "admin_order_field", None) - if not admin_order_field: - yield {"text": header} - continue - - # So this _is_ a sortable non-field. Go to the yield - # after the else clause. - else: - admin_order_field = None - - th_classes = [] - new_order_type = 'asc' - if field_name == cl.order_field or admin_order_field == cl.order_field: - th_classes.append('sorted %sending' % cl.order_type.lower()) - new_order_type = {'asc': 'desc', 'desc': 'asc'}[cl.order_type.lower()] - - yield { - "text": header, - "sortable": True, - "url": cl.get_query_string({ORDER_VAR: i, ORDER_TYPE_VAR: new_order_type}), - "class_attrib": mark_safe(th_classes and ' class="%s"' % ' '.join(th_classes) or '') - } - -def _boolean_icon(field_val): - BOOLEAN_MAPPING = {True: 'yes', False: 'no', None: 'unknown'} - return mark_safe(u'%s' % (settings.ADMIN_MEDIA_PREFIX, BOOLEAN_MAPPING[field_val], field_val)) - -def items_for_result(cl, result, form): - """ - Generates the actual list of data. - """ - first = True - pk = cl.lookup_opts.pk.attname - for field_name in cl.list_display: - row_class = '' - try: - f, attr, value = lookup_field(field_name, result, cl.model_admin) - except (AttributeError, ObjectDoesNotExist): - result_repr = EMPTY_CHANGELIST_VALUE - else: - if f is None: - if field_name == u'action_checkbox': - row_class = ' class="action-checkbox"' - allow_tags = getattr(attr, 'allow_tags', False) - boolean = getattr(attr, 'boolean', False) - if boolean: - allow_tags = True - result_repr = _boolean_icon(value) - else: - result_repr = smart_unicode(value) - # Strip HTML tags in the resulting text, except if the - # function has an "allow_tags" attribute set to True. - if not allow_tags: - result_repr = escape(result_repr) - else: - result_repr = mark_safe(result_repr) - else: - if isinstance(f.rel, models.ManyToOneRel): - field_val = getattr(result, f.name) - if field_val is None: - result_repr = EMPTY_CHANGELIST_VALUE - else: - result_repr = escape(field_val) - else: - result_repr = display_for_field(value, f) - if isinstance(f, models.DateField)\ - or isinstance(f, models.TimeField)\ - or isinstance(f, models.ForeignKey): - row_class = ' class="nowrap"' - if force_unicode(result_repr) == '': - result_repr = mark_safe(' ') - # If list_display_links not defined, add the link tag to the first field - if (first and not cl.list_display_links) or field_name in cl.list_display_links: - table_tag = {True:'th', False:'td'}[first] - first = False - url = cl.url_for_result(result) - # Convert the pk to something that can be used in Javascript. - # Problem cases are long ints (23L) and non-ASCII strings. - if cl.to_field: - attr = str(cl.to_field) - else: - attr = pk - value = result.serializable_value(attr) - result_id = repr(force_unicode(value))[1:] - yield mark_safe(u'<%s%s>%s' % \ - (table_tag, row_class, url, (cl.is_popup and ' onclick="opener.dismissRelatedLookupPopup(window, %s); return false;"' % result_id or ''), conditional_escape(result_repr), table_tag)) - else: - # By default the fields come from ModelAdmin.list_editable, but if we pull - # the fields out of the form instead of list_editable custom admins - # can provide fields on a per request basis - if (form and field_name in form.fields and not ( - field_name == cl.model._meta.pk.name and - form[cl.model._meta.pk.name].is_hidden)): - bf = form[field_name] - result_repr = mark_safe(force_unicode(bf.errors) + force_unicode(bf)) - else: - result_repr = conditional_escape(result_repr) - yield mark_safe(u'%s' % (row_class, result_repr)) - if form and not form[cl.model._meta.pk.name].is_hidden: - yield mark_safe(u'%s' % force_unicode(form[cl.model._meta.pk.name])) - -class ResultList(list): - # Wrapper class used to return items in a list_editable - # changelist, annotated with the form object for error - # reporting purposes. Needed to maintain backwards - # compatibility with existing admin templates. - def __init__(self, form, *items): - self.form = form - super(ResultList, self).__init__(*items) - -def results(cl): - if cl.formset: - for res, form in zip(cl.result_list, cl.formset.forms): - yield ResultList(form, items_for_result(cl, res, form)) - else: - for res in cl.result_list: - yield ResultList(None, items_for_result(cl, res, None)) - -def result_hidden_fields(cl): - if cl.formset: - for res, form in zip(cl.result_list, cl.formset.forms): - if form[cl.model._meta.pk.name].is_hidden: - yield mark_safe(force_unicode(form[cl.model._meta.pk.name])) - -def result_list(cl): - """ - Displays the headers and data list together - """ - return {'cl': cl, - 'result_hidden_fields': list(result_hidden_fields(cl)), - 'result_headers': list(result_headers(cl)), - 'results': list(results(cl))} -result_list = register.inclusion_tag("admin/change_list_results.html")(result_list) - -def date_hierarchy(cl): - """ - Displays the date hierarchy for date drill-down functionality. - """ - if cl.date_hierarchy: - field_name = cl.date_hierarchy - year_field = '%s__year' % field_name - month_field = '%s__month' % field_name - day_field = '%s__day' % field_name - field_generic = '%s__' % field_name - year_lookup = cl.params.get(year_field) - month_lookup = cl.params.get(month_field) - day_lookup = cl.params.get(day_field) - - link = lambda d: cl.get_query_string(d, [field_generic]) - - if not (year_lookup or month_lookup or day_lookup): - # select appropriate start level - date_range = cl.query_set.aggregate(first=models.Min(field_name), - last=models.Max(field_name)) - if date_range['first'] and date_range['last']: - if date_range['first'].year == date_range['last'].year: - year_lookup = date_range['first'].year - if date_range['first'].month == date_range['last'].month: - month_lookup = date_range['first'].month - - if year_lookup and month_lookup and day_lookup: - day = datetime.date(int(year_lookup), int(month_lookup), int(day_lookup)) - return { - 'show': True, - 'back': { - 'link': link({year_field: year_lookup, month_field: month_lookup}), - 'title': capfirst(formats.date_format(day, 'YEAR_MONTH_FORMAT')) - }, - 'choices': [{'title': capfirst(formats.date_format(day, 'MONTH_DAY_FORMAT'))}] - } - elif year_lookup and month_lookup: - days = cl.query_set.filter(**{year_field: year_lookup, month_field: month_lookup}).dates(field_name, 'day') - return { - 'show': True, - 'back': { - 'link': link({year_field: year_lookup}), - 'title': str(year_lookup) - }, - 'choices': [{ - 'link': link({year_field: year_lookup, month_field: month_lookup, day_field: day.day}), - 'title': capfirst(formats.date_format(day, 'MONTH_DAY_FORMAT')) - } for day in days] - } - elif year_lookup: - months = cl.query_set.filter(**{year_field: year_lookup}).dates(field_name, 'month') - return { - 'show' : True, - 'back': { - 'link' : link({}), - 'title': _('All dates') - }, - 'choices': [{ - 'link': link({year_field: year_lookup, month_field: month.month}), - 'title': capfirst(formats.date_format(month, 'YEAR_MONTH_FORMAT')) - } for month in months] - } - else: - years = cl.query_set.dates(field_name, 'year') - return { - 'show': True, - 'choices': [{ - 'link': link({year_field: str(year.year)}), - 'title': str(year.year), - } for year in years] - } -date_hierarchy = register.inclusion_tag('admin/date_hierarchy.html')(date_hierarchy) - -def search_form(cl): - """ - Displays a search form for searching the list. - """ - return { - 'cl': cl, - 'show_result_count': cl.result_count != cl.full_result_count, - 'search_var': SEARCH_VAR - } -search_form = register.inclusion_tag('admin/search_form.html')(search_form) - -def admin_list_filter(cl, spec): - return {'title': spec.title(), 'choices' : list(spec.choices(cl))} -admin_list_filter = register.inclusion_tag('admin/filter.html')(admin_list_filter) - -def admin_actions(context): - """ - Track the number of times the action field has been rendered on the page, - so we know which value to use. - """ - context['action_index'] = context.get('action_index', -1) + 1 - return context -admin_actions = register.inclusion_tag("admin/actions.html", takes_context=True)(admin_actions) diff --git a/lib/python2.7/site-packages/django/contrib/admin/templatetags/admin_modify.py b/lib/python2.7/site-packages/django/contrib/admin/templatetags/admin_modify.py deleted file mode 100644 index 8e6f0ab5c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templatetags/admin_modify.py +++ /dev/null @@ -1,56 +0,0 @@ -from django import template - -register = template.Library() - -def prepopulated_fields_js(context): - """ - Creates a list of prepopulated_fields that should render Javascript for - the prepopulated fields for both the admin form and inlines. - """ - prepopulated_fields = [] - if context['add'] and 'adminform' in context: - prepopulated_fields.extend(context['adminform'].prepopulated_fields) - if 'inline_admin_formsets' in context: - for inline_admin_formset in context['inline_admin_formsets']: - for inline_admin_form in inline_admin_formset: - if inline_admin_form.original is None: - prepopulated_fields.extend(inline_admin_form.prepopulated_fields) - context.update({'prepopulated_fields': prepopulated_fields}) - return context -prepopulated_fields_js = register.inclusion_tag('admin/prepopulated_fields_js.html', takes_context=True)(prepopulated_fields_js) - -def submit_row(context): - """ - Displays the row of buttons for delete and save. - """ - opts = context['opts'] - change = context['change'] - is_popup = context['is_popup'] - save_as = context['save_as'] - return { - 'onclick_attrib': (opts.get_ordered_objects() and change - and 'onclick="submitOrderForm();"' or ''), - 'show_delete_link': (not is_popup and context['has_delete_permission'] - and (change or context['show_delete'])), - 'show_save_as_new': not is_popup and change and save_as, - 'show_save_and_add_another': context['has_add_permission'] and - not is_popup and (not save_as or context['add']), - 'show_save_and_continue': not is_popup and context['has_change_permission'], - 'is_popup': is_popup, - 'show_save': True - } -submit_row = register.inclusion_tag('admin/submit_line.html', takes_context=True)(submit_row) - -def cell_count(inline_admin_form): - """Returns the number of cells used in a tabular inline""" - count = 1 # Hidden cell with hidden 'id' field - for fieldset in inline_admin_form: - # Loop through all the fields (one per cell) - for line in fieldset: - for field in line: - count += 1 - if inline_admin_form.formset.can_delete: - # Delete checkbox - count += 1 - return count -cell_count = register.filter(cell_count) diff --git a/lib/python2.7/site-packages/django/contrib/admin/templatetags/adminmedia.py b/lib/python2.7/site-packages/django/contrib/admin/templatetags/adminmedia.py deleted file mode 100644 index 3b1c39b3a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templatetags/adminmedia.py +++ /dev/null @@ -1,11 +0,0 @@ -from django.template import Library -from django.templatetags.static import PrefixNode - -register = Library() - -@register.simple_tag -def admin_media_prefix(): - """ - Returns the string contained in the setting ADMIN_MEDIA_PREFIX. - """ - return PrefixNode.handle_simple("ADMIN_MEDIA_PREFIX") diff --git a/lib/python2.7/site-packages/django/contrib/admin/templatetags/log.py b/lib/python2.7/site-packages/django/contrib/admin/templatetags/log.py deleted file mode 100644 index 663830b36..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/templatetags/log.py +++ /dev/null @@ -1,57 +0,0 @@ -from django import template -from django.contrib.admin.models import LogEntry - -register = template.Library() - -class AdminLogNode(template.Node): - def __init__(self, limit, varname, user): - self.limit, self.varname, self.user = limit, varname, user - - def __repr__(self): - return "" - - def render(self, context): - if self.user is None: - context[self.varname] = LogEntry.objects.all().select_related('content_type', 'user')[:self.limit] - else: - user_id = self.user - if not user_id.isdigit(): - user_id = context[self.user].id - context[self.varname] = LogEntry.objects.filter(user__id__exact=user_id).select_related('content_type', 'user')[:self.limit] - return '' - -class DoGetAdminLog: - """ - Populates a template variable with the admin log for the given criteria. - - Usage:: - - {% get_admin_log [limit] as [varname] for_user [context_var_containing_user_obj] %} - - Examples:: - - {% get_admin_log 10 as admin_log for_user 23 %} - {% get_admin_log 10 as admin_log for_user user %} - {% get_admin_log 10 as admin_log %} - - Note that ``context_var_containing_user_obj`` can be a hard-coded integer - (user ID) or the name of a template context variable containing the user - object whose ID you want. - """ - def __init__(self, tag_name): - self.tag_name = tag_name - - def __call__(self, parser, token): - tokens = token.contents.split() - if len(tokens) < 4: - raise template.TemplateSyntaxError("'%s' statements require two arguments" % self.tag_name) - if not tokens[1].isdigit(): - raise template.TemplateSyntaxError("First argument in '%s' must be an integer" % self.tag_name) - if tokens[2] != 'as': - raise template.TemplateSyntaxError("Second argument in '%s' must be 'as'" % self.tag_name) - if len(tokens) > 4: - if tokens[4] != 'for_user': - raise template.TemplateSyntaxError("Fourth argument in '%s' must be 'for_user'" % self.tag_name) - return AdminLogNode(limit=tokens[1], varname=tokens[3], user=(len(tokens) > 5 and tokens[5] or None)) - -register.tag('get_admin_log', DoGetAdminLog('get_admin_log')) diff --git a/lib/python2.7/site-packages/django/contrib/admin/util.py b/lib/python2.7/site-packages/django/contrib/admin/util.py deleted file mode 100644 index e98ec7b88..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/util.py +++ /dev/null @@ -1,387 +0,0 @@ -from django.db import models -from django.db.models.sql.constants import LOOKUP_SEP -from django.db.models.deletion import Collector -from django.db.models.related import RelatedObject -from django.forms.forms import pretty_name -from django.utils import formats -from django.utils.html import escape -from django.utils.safestring import mark_safe -from django.utils.text import capfirst -from django.utils.encoding import force_unicode, smart_unicode, smart_str -from django.utils.translation import ungettext -from django.core.urlresolvers import reverse - - -def quote(s): - """ - Ensure that primary key values do not confuse the admin URLs by escaping - any '/', '_' and ':' characters. Similar to urllib.quote, except that the - quoting is slightly different so that it doesn't get automatically - unquoted by the Web browser. - """ - if not isinstance(s, basestring): - return s - res = list(s) - for i in range(len(res)): - c = res[i] - if c in """:/_#?;@&=+$,"<>%\\""": - res[i] = '_%02X' % ord(c) - return ''.join(res) - - -def unquote(s): - """ - Undo the effects of quote(). Based heavily on urllib.unquote(). - """ - mychr = chr - myatoi = int - list = s.split('_') - res = [list[0]] - myappend = res.append - del list[0] - for item in list: - if item[1:2]: - try: - myappend(mychr(myatoi(item[:2], 16)) + item[2:]) - except ValueError: - myappend('_' + item) - else: - myappend('_' + item) - return "".join(res) - - -def flatten_fieldsets(fieldsets): - """Returns a list of field names from an admin fieldsets structure.""" - field_names = [] - for name, opts in fieldsets: - for field in opts['fields']: - # type checking feels dirty, but it seems like the best way here - if type(field) == tuple: - field_names.extend(field) - else: - field_names.append(field) - return field_names - - -def get_deleted_objects(objs, opts, user, admin_site, using): - """ - Find all objects related to ``objs`` that should also be deleted. ``objs`` - must be a homogenous iterable of objects (e.g. a QuerySet). - - Returns a nested list of strings suitable for display in the - template with the ``unordered_list`` filter. - - """ - collector = NestedObjects(using=using) - collector.collect(objs) - perms_needed = set() - - def format_callback(obj): - has_admin = obj.__class__ in admin_site._registry - opts = obj._meta - - if has_admin: - admin_url = reverse('%s:%s_%s_change' - % (admin_site.name, - opts.app_label, - opts.object_name.lower()), - None, (quote(obj._get_pk_val()),)) - p = '%s.%s' % (opts.app_label, - opts.get_delete_permission()) - if not user.has_perm(p): - perms_needed.add(opts.verbose_name) - # Display a link to the admin page. - return mark_safe(u'%s: %s' % - (escape(capfirst(opts.verbose_name)), - admin_url, - escape(obj))) - else: - # Don't display link to edit, because it either has no - # admin or is edited inline. - return u'%s: %s' % (capfirst(opts.verbose_name), - force_unicode(obj)) - - to_delete = collector.nested(format_callback) - - protected = [format_callback(obj) for obj in collector.protected] - - return to_delete, perms_needed, protected - - -class NestedObjects(Collector): - def __init__(self, *args, **kwargs): - super(NestedObjects, self).__init__(*args, **kwargs) - self.edges = {} # {from_instance: [to_instances]} - self.protected = set() - - def add_edge(self, source, target): - self.edges.setdefault(source, []).append(target) - - def collect(self, objs, source_attr=None, **kwargs): - for obj in objs: - if source_attr: - self.add_edge(getattr(obj, source_attr), obj) - else: - self.add_edge(None, obj) - try: - return super(NestedObjects, self).collect(objs, source_attr=source_attr, **kwargs) - except models.ProtectedError, e: - self.protected.update(e.protected_objects) - - def related_objects(self, related, objs): - qs = super(NestedObjects, self).related_objects(related, objs) - return qs.select_related(related.field.name) - - def _nested(self, obj, seen, format_callback): - if obj in seen: - return [] - seen.add(obj) - children = [] - for child in self.edges.get(obj, ()): - children.extend(self._nested(child, seen, format_callback)) - if format_callback: - ret = [format_callback(obj)] - else: - ret = [obj] - if children: - ret.append(children) - return ret - - def nested(self, format_callback=None): - """ - Return the graph as a nested list. - - """ - seen = set() - roots = [] - for root in self.edges.get(None, ()): - roots.extend(self._nested(root, seen, format_callback)) - return roots - - -def model_format_dict(obj): - """ - Return a `dict` with keys 'verbose_name' and 'verbose_name_plural', - typically for use with string formatting. - - `obj` may be a `Model` instance, `Model` subclass, or `QuerySet` instance. - - """ - if isinstance(obj, (models.Model, models.base.ModelBase)): - opts = obj._meta - elif isinstance(obj, models.query.QuerySet): - opts = obj.model._meta - else: - opts = obj - return { - 'verbose_name': force_unicode(opts.verbose_name), - 'verbose_name_plural': force_unicode(opts.verbose_name_plural) - } - - -def model_ngettext(obj, n=None): - """ - Return the appropriate `verbose_name` or `verbose_name_plural` value for - `obj` depending on the count `n`. - - `obj` may be a `Model` instance, `Model` subclass, or `QuerySet` instance. - If `obj` is a `QuerySet` instance, `n` is optional and the length of the - `QuerySet` is used. - - """ - if isinstance(obj, models.query.QuerySet): - if n is None: - n = obj.count() - obj = obj.model - d = model_format_dict(obj) - singular, plural = d["verbose_name"], d["verbose_name_plural"] - return ungettext(singular, plural, n or 0) - - -def lookup_field(name, obj, model_admin=None): - opts = obj._meta - try: - f = opts.get_field(name) - except models.FieldDoesNotExist: - # For non-field values, the value is either a method, property or - # returned via a callable. - if callable(name): - attr = name - value = attr(obj) - elif (model_admin is not None and hasattr(model_admin, name) and - not name == '__str__' and not name == '__unicode__'): - attr = getattr(model_admin, name) - value = attr(obj) - else: - attr = getattr(obj, name) - if callable(attr): - value = attr() - else: - value = attr - f = None - else: - attr = None - value = getattr(obj, name) - return f, attr, value - - -def label_for_field(name, model, model_admin=None, return_attr=False): - attr = None - try: - field = model._meta.get_field_by_name(name)[0] - if isinstance(field, RelatedObject): - label = field.opts.verbose_name - else: - label = field.verbose_name - except models.FieldDoesNotExist: - if name == "__unicode__": - label = force_unicode(model._meta.verbose_name) - elif name == "__str__": - label = smart_str(model._meta.verbose_name) - else: - if callable(name): - attr = name - elif model_admin is not None and hasattr(model_admin, name): - attr = getattr(model_admin, name) - elif hasattr(model, name): - attr = getattr(model, name) - else: - message = "Unable to lookup '%s' on %s" % (name, model._meta.object_name) - if model_admin: - message += " or %s" % (model_admin.__class__.__name__,) - raise AttributeError(message) - - if hasattr(attr, "short_description"): - label = attr.short_description - elif callable(attr): - if attr.__name__ == "": - label = "--" - else: - label = pretty_name(attr.__name__) - else: - label = pretty_name(name) - if return_attr: - return (label, attr) - else: - return label - -def help_text_for_field(name, model): - try: - help_text = model._meta.get_field_by_name(name)[0].help_text - except models.FieldDoesNotExist: - help_text = "" - return smart_unicode(help_text) - - -def display_for_field(value, field): - from django.contrib.admin.templatetags.admin_list import _boolean_icon - from django.contrib.admin.views.main import EMPTY_CHANGELIST_VALUE - - if field.flatchoices: - return dict(field.flatchoices).get(value, EMPTY_CHANGELIST_VALUE) - # NullBooleanField needs special-case null-handling, so it comes - # before the general null test. - elif isinstance(field, models.BooleanField) or isinstance(field, models.NullBooleanField): - return _boolean_icon(value) - elif value is None: - return EMPTY_CHANGELIST_VALUE - elif isinstance(field, models.DateField) or isinstance(field, models.TimeField): - return formats.localize(value) - elif isinstance(field, models.DecimalField): - return formats.number_format(value, field.decimal_places) - elif isinstance(field, models.FloatField): - return formats.number_format(value) - else: - return smart_unicode(value) - - -class NotRelationField(Exception): - pass - - -def get_model_from_relation(field): - if isinstance(field, models.related.RelatedObject): - return field.model - elif getattr(field, 'rel'): # or isinstance? - return field.rel.to - else: - raise NotRelationField - - -def reverse_field_path(model, path): - """ Create a reversed field path. - - E.g. Given (Order, "user__groups"), - return (Group, "user__order"). - - Final field must be a related model, not a data field. - - """ - reversed_path = [] - parent = model - pieces = path.split(LOOKUP_SEP) - for piece in pieces: - field, model, direct, m2m = parent._meta.get_field_by_name(piece) - # skip trailing data field if extant: - if len(reversed_path) == len(pieces)-1: # final iteration - try: - get_model_from_relation(field) - except NotRelationField: - break - if direct: - related_name = field.related_query_name() - parent = field.rel.to - else: - related_name = field.field.name - parent = field.model - reversed_path.insert(0, related_name) - return (parent, LOOKUP_SEP.join(reversed_path)) - - -def get_fields_from_path(model, path): - """ Return list of Fields given path relative to model. - - e.g. (ModelX, "user__groups__name") -> [ - , - , - , - ] - """ - pieces = path.split(LOOKUP_SEP) - fields = [] - for piece in pieces: - if fields: - parent = get_model_from_relation(fields[-1]) - else: - parent = model - fields.append(parent._meta.get_field_by_name(piece)[0]) - return fields - - -def remove_trailing_data_field(fields): - """ Discard trailing non-relation field if extant. """ - try: - get_model_from_relation(fields[-1]) - except NotRelationField: - fields = fields[:-1] - return fields - - -def get_limit_choices_to_from_path(model, path): - """ Return Q object for limiting choices if applicable. - - If final model in path is linked via a ForeignKey or ManyToManyField which - has a `limit_choices_to` attribute, return it as a Q object. - """ - - fields = get_fields_from_path(model, path) - fields = remove_trailing_data_field(fields) - limit_choices_to = ( - fields and hasattr(fields[-1], 'rel') and - getattr(fields[-1].rel, 'limit_choices_to', None)) - if not limit_choices_to: - return models.Q() # empty Q - elif isinstance(limit_choices_to, models.Q): - return limit_choices_to # already a Q - else: - return models.Q(**limit_choices_to) # convert dict to Q diff --git a/lib/python2.7/site-packages/django/contrib/admin/validation.py b/lib/python2.7/site-packages/django/contrib/admin/validation.py deleted file mode 100644 index 159afa4f0..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/validation.py +++ /dev/null @@ -1,392 +0,0 @@ -from django.core.exceptions import ImproperlyConfigured -from django.db import models -from django.db.models.fields import FieldDoesNotExist -from django.forms.models import (BaseModelForm, BaseModelFormSet, fields_for_model, - _get_foreign_key) -from django.contrib.admin.util import get_fields_from_path, NotRelationField -from django.contrib.admin.options import (flatten_fieldsets, BaseModelAdmin, - HORIZONTAL, VERTICAL) - - -__all__ = ['validate'] - -def validate(cls, model): - """ - Does basic ModelAdmin option validation. Calls custom validation - classmethod in the end if it is provided in cls. The signature of the - custom validation classmethod should be: def validate(cls, model). - """ - # Before we can introspect models, they need to be fully loaded so that - # inter-relations are set up correctly. We force that here. - models.get_apps() - - opts = model._meta - validate_base(cls, model) - - # list_display - if hasattr(cls, 'list_display'): - check_isseq(cls, 'list_display', cls.list_display) - for idx, field in enumerate(cls.list_display): - if not callable(field): - if not hasattr(cls, field): - if not hasattr(model, field): - try: - opts.get_field(field) - except models.FieldDoesNotExist: - raise ImproperlyConfigured("%s.list_display[%d], %r is not a callable or an attribute of %r or found in the model %r." - % (cls.__name__, idx, field, cls.__name__, model._meta.object_name)) - else: - # getattr(model, field) could be an X_RelatedObjectsDescriptor - f = fetch_attr(cls, model, opts, "list_display[%d]" % idx, field) - if isinstance(f, models.ManyToManyField): - raise ImproperlyConfigured("'%s.list_display[%d]', '%s' is a ManyToManyField which is not supported." - % (cls.__name__, idx, field)) - - # list_display_links - if hasattr(cls, 'list_display_links'): - check_isseq(cls, 'list_display_links', cls.list_display_links) - for idx, field in enumerate(cls.list_display_links): - if field not in cls.list_display: - raise ImproperlyConfigured("'%s.list_display_links[%d]' " - "refers to '%s' which is not defined in 'list_display'." - % (cls.__name__, idx, field)) - - # list_filter - if hasattr(cls, 'list_filter'): - check_isseq(cls, 'list_filter', cls.list_filter) - for idx, fpath in enumerate(cls.list_filter): - try: - get_fields_from_path(model, fpath) - except (NotRelationField, FieldDoesNotExist), e: - raise ImproperlyConfigured( - "'%s.list_filter[%d]' refers to '%s' which does not refer to a Field." % ( - cls.__name__, idx, fpath - ) - ) - - # list_per_page = 100 - if hasattr(cls, 'list_per_page') and not isinstance(cls.list_per_page, int): - raise ImproperlyConfigured("'%s.list_per_page' should be a integer." - % cls.__name__) - - # list_editable - if hasattr(cls, 'list_editable') and cls.list_editable: - check_isseq(cls, 'list_editable', cls.list_editable) - for idx, field_name in enumerate(cls.list_editable): - try: - field = opts.get_field_by_name(field_name)[0] - except models.FieldDoesNotExist: - raise ImproperlyConfigured("'%s.list_editable[%d]' refers to a " - "field, '%s', not defined on %s." - % (cls.__name__, idx, field_name, model.__name__)) - if field_name not in cls.list_display: - raise ImproperlyConfigured("'%s.list_editable[%d]' refers to " - "'%s' which is not defined in 'list_display'." - % (cls.__name__, idx, field_name)) - if field_name in cls.list_display_links: - raise ImproperlyConfigured("'%s' cannot be in both '%s.list_editable'" - " and '%s.list_display_links'" - % (field_name, cls.__name__, cls.__name__)) - if not cls.list_display_links and cls.list_display[0] in cls.list_editable: - raise ImproperlyConfigured("'%s.list_editable[%d]' refers to" - " the first field in list_display, '%s', which can't be" - " used unless list_display_links is set." - % (cls.__name__, idx, cls.list_display[0])) - if not field.editable: - raise ImproperlyConfigured("'%s.list_editable[%d]' refers to a " - "field, '%s', which isn't editable through the admin." - % (cls.__name__, idx, field_name)) - - # search_fields = () - if hasattr(cls, 'search_fields'): - check_isseq(cls, 'search_fields', cls.search_fields) - - # date_hierarchy = None - if cls.date_hierarchy: - f = get_field(cls, model, opts, 'date_hierarchy', cls.date_hierarchy) - if not isinstance(f, (models.DateField, models.DateTimeField)): - raise ImproperlyConfigured("'%s.date_hierarchy is " - "neither an instance of DateField nor DateTimeField." - % cls.__name__) - - # ordering = None - if cls.ordering: - check_isseq(cls, 'ordering', cls.ordering) - for idx, field in enumerate(cls.ordering): - if field == '?' and len(cls.ordering) != 1: - raise ImproperlyConfigured("'%s.ordering' has the random " - "ordering marker '?', but contains other fields as " - "well. Please either remove '?' or the other fields." - % cls.__name__) - if field == '?': - continue - if field.startswith('-'): - field = field[1:] - # Skip ordering in the format field1__field2 (FIXME: checking - # this format would be nice, but it's a little fiddly). - if '__' in field: - continue - get_field(cls, model, opts, 'ordering[%d]' % idx, field) - - if hasattr(cls, "readonly_fields"): - check_readonly_fields(cls, model, opts) - - # list_select_related = False - # save_as = False - # save_on_top = False - for attr in ('list_select_related', 'save_as', 'save_on_top'): - if not isinstance(getattr(cls, attr), bool): - raise ImproperlyConfigured("'%s.%s' should be a boolean." - % (cls.__name__, attr)) - - - # inlines = [] - if hasattr(cls, 'inlines'): - check_isseq(cls, 'inlines', cls.inlines) - for idx, inline in enumerate(cls.inlines): - if not issubclass(inline, BaseModelAdmin): - raise ImproperlyConfigured("'%s.inlines[%d]' does not inherit " - "from BaseModelAdmin." % (cls.__name__, idx)) - if not inline.model: - raise ImproperlyConfigured("'model' is a required attribute " - "of '%s.inlines[%d]'." % (cls.__name__, idx)) - if not issubclass(inline.model, models.Model): - raise ImproperlyConfigured("'%s.inlines[%d].model' does not " - "inherit from models.Model." % (cls.__name__, idx)) - validate_base(inline, inline.model) - validate_inline(inline, cls, model) - -def validate_inline(cls, parent, parent_model): - - # model is already verified to exist and be a Model - if cls.fk_name: # default value is None - f = get_field(cls, cls.model, cls.model._meta, 'fk_name', cls.fk_name) - if not isinstance(f, models.ForeignKey): - raise ImproperlyConfigured("'%s.fk_name is not an instance of " - "models.ForeignKey." % cls.__name__) - - fk = _get_foreign_key(parent_model, cls.model, fk_name=cls.fk_name, can_fail=True) - - # extra = 3 - if not isinstance(cls.extra, int): - raise ImproperlyConfigured("'%s.extra' should be a integer." - % cls.__name__) - - # max_num = None - max_num = getattr(cls, 'max_num', None) - if max_num is not None and not isinstance(max_num, int): - raise ImproperlyConfigured("'%s.max_num' should be an integer or None (default)." - % cls.__name__) - - # formset - if hasattr(cls, 'formset') and not issubclass(cls.formset, BaseModelFormSet): - raise ImproperlyConfigured("'%s.formset' does not inherit from " - "BaseModelFormSet." % cls.__name__) - - # exclude - if hasattr(cls, 'exclude') and cls.exclude: - if fk and fk.name in cls.exclude: - raise ImproperlyConfigured("%s cannot exclude the field " - "'%s' - this is the foreign key to the parent model " - "%s." % (cls.__name__, fk.name, parent_model.__name__)) - - if hasattr(cls, "readonly_fields"): - check_readonly_fields(cls, cls.model, cls.model._meta) - -def validate_base(cls, model): - opts = model._meta - - # raw_id_fields - if hasattr(cls, 'raw_id_fields'): - check_isseq(cls, 'raw_id_fields', cls.raw_id_fields) - for idx, field in enumerate(cls.raw_id_fields): - f = get_field(cls, model, opts, 'raw_id_fields', field) - if not isinstance(f, (models.ForeignKey, models.ManyToManyField)): - raise ImproperlyConfigured("'%s.raw_id_fields[%d]', '%s' must " - "be either a ForeignKey or ManyToManyField." - % (cls.__name__, idx, field)) - - # fields - if cls.fields: # default value is None - check_isseq(cls, 'fields', cls.fields) - for field in cls.fields: - if field in cls.readonly_fields: - # Stuff can be put in fields that isn't actually a model field - # if it's in readonly_fields, readonly_fields will handle the - # validation of such things. - continue - check_formfield(cls, model, opts, 'fields', field) - try: - f = opts.get_field(field) - except models.FieldDoesNotExist: - # If we can't find a field on the model that matches, - # it could be an extra field on the form. - continue - if isinstance(f, models.ManyToManyField) and not f.rel.through._meta.auto_created: - raise ImproperlyConfigured("'%s.fields' can't include the ManyToManyField " - "field '%s' because '%s' manually specifies " - "a 'through' model." % (cls.__name__, field, field)) - if cls.fieldsets: - raise ImproperlyConfigured('Both fieldsets and fields are specified in %s.' % cls.__name__) - if len(cls.fields) > len(set(cls.fields)): - raise ImproperlyConfigured('There are duplicate field(s) in %s.fields' % cls.__name__) - - # fieldsets - if cls.fieldsets: # default value is None - check_isseq(cls, 'fieldsets', cls.fieldsets) - for idx, fieldset in enumerate(cls.fieldsets): - check_isseq(cls, 'fieldsets[%d]' % idx, fieldset) - if len(fieldset) != 2: - raise ImproperlyConfigured("'%s.fieldsets[%d]' does not " - "have exactly two elements." % (cls.__name__, idx)) - check_isdict(cls, 'fieldsets[%d][1]' % idx, fieldset[1]) - if 'fields' not in fieldset[1]: - raise ImproperlyConfigured("'fields' key is required in " - "%s.fieldsets[%d][1] field options dict." - % (cls.__name__, idx)) - for fields in fieldset[1]['fields']: - # The entry in fields might be a tuple. If it is a standalone - # field, make it into a tuple to make processing easier. - if type(fields) != tuple: - fields = (fields,) - for field in fields: - if field in cls.readonly_fields: - # Stuff can be put in fields that isn't actually a - # model field if it's in readonly_fields, - # readonly_fields will handle the validation of such - # things. - continue - check_formfield(cls, model, opts, "fieldsets[%d][1]['fields']" % idx, field) - try: - f = opts.get_field(field) - if isinstance(f, models.ManyToManyField) and not f.rel.through._meta.auto_created: - raise ImproperlyConfigured("'%s.fieldsets[%d][1]['fields']' " - "can't include the ManyToManyField field '%s' because " - "'%s' manually specifies a 'through' model." % ( - cls.__name__, idx, field, field)) - except models.FieldDoesNotExist: - # If we can't find a field on the model that matches, - # it could be an extra field on the form. - pass - flattened_fieldsets = flatten_fieldsets(cls.fieldsets) - if len(flattened_fieldsets) > len(set(flattened_fieldsets)): - raise ImproperlyConfigured('There are duplicate field(s) in %s.fieldsets' % cls.__name__) - - # exclude - if cls.exclude: # default value is None - check_isseq(cls, 'exclude', cls.exclude) - for field in cls.exclude: - check_formfield(cls, model, opts, 'exclude', field) - try: - f = opts.get_field(field) - except models.FieldDoesNotExist: - # If we can't find a field on the model that matches, - # it could be an extra field on the form. - continue - if len(cls.exclude) > len(set(cls.exclude)): - raise ImproperlyConfigured('There are duplicate field(s) in %s.exclude' % cls.__name__) - - # form - if hasattr(cls, 'form') and not issubclass(cls.form, BaseModelForm): - raise ImproperlyConfigured("%s.form does not inherit from " - "BaseModelForm." % cls.__name__) - - # filter_vertical - if hasattr(cls, 'filter_vertical'): - check_isseq(cls, 'filter_vertical', cls.filter_vertical) - for idx, field in enumerate(cls.filter_vertical): - f = get_field(cls, model, opts, 'filter_vertical', field) - if not isinstance(f, models.ManyToManyField): - raise ImproperlyConfigured("'%s.filter_vertical[%d]' must be " - "a ManyToManyField." % (cls.__name__, idx)) - - # filter_horizontal - if hasattr(cls, 'filter_horizontal'): - check_isseq(cls, 'filter_horizontal', cls.filter_horizontal) - for idx, field in enumerate(cls.filter_horizontal): - f = get_field(cls, model, opts, 'filter_horizontal', field) - if not isinstance(f, models.ManyToManyField): - raise ImproperlyConfigured("'%s.filter_horizontal[%d]' must be " - "a ManyToManyField." % (cls.__name__, idx)) - - # radio_fields - if hasattr(cls, 'radio_fields'): - check_isdict(cls, 'radio_fields', cls.radio_fields) - for field, val in cls.radio_fields.items(): - f = get_field(cls, model, opts, 'radio_fields', field) - if not (isinstance(f, models.ForeignKey) or f.choices): - raise ImproperlyConfigured("'%s.radio_fields['%s']' " - "is neither an instance of ForeignKey nor does " - "have choices set." % (cls.__name__, field)) - if not val in (HORIZONTAL, VERTICAL): - raise ImproperlyConfigured("'%s.radio_fields['%s']' " - "is neither admin.HORIZONTAL nor admin.VERTICAL." - % (cls.__name__, field)) - - # prepopulated_fields - if hasattr(cls, 'prepopulated_fields'): - check_isdict(cls, 'prepopulated_fields', cls.prepopulated_fields) - for field, val in cls.prepopulated_fields.items(): - f = get_field(cls, model, opts, 'prepopulated_fields', field) - if isinstance(f, (models.DateTimeField, models.ForeignKey, - models.ManyToManyField)): - raise ImproperlyConfigured("'%s.prepopulated_fields['%s']' " - "is either a DateTimeField, ForeignKey or " - "ManyToManyField. This isn't allowed." - % (cls.__name__, field)) - check_isseq(cls, "prepopulated_fields['%s']" % field, val) - for idx, f in enumerate(val): - get_field(cls, model, opts, "prepopulated_fields['%s'][%d]" % (field, idx), f) - -def check_isseq(cls, label, obj): - if not isinstance(obj, (list, tuple)): - raise ImproperlyConfigured("'%s.%s' must be a list or tuple." % (cls.__name__, label)) - -def check_isdict(cls, label, obj): - if not isinstance(obj, dict): - raise ImproperlyConfigured("'%s.%s' must be a dictionary." % (cls.__name__, label)) - -def get_field(cls, model, opts, label, field): - try: - return opts.get_field(field) - except models.FieldDoesNotExist: - raise ImproperlyConfigured("'%s.%s' refers to field '%s' that is missing from model '%s'." - % (cls.__name__, label, field, model.__name__)) - -def check_formfield(cls, model, opts, label, field): - if getattr(cls.form, 'base_fields', None): - try: - cls.form.base_fields[field] - except KeyError: - raise ImproperlyConfigured("'%s.%s' refers to field '%s' that " - "is missing from the form." % (cls.__name__, label, field)) - else: - fields = fields_for_model(model) - try: - fields[field] - except KeyError: - raise ImproperlyConfigured("'%s.%s' refers to field '%s' that " - "is missing from the form." % (cls.__name__, label, field)) - -def fetch_attr(cls, model, opts, label, field): - try: - return opts.get_field(field) - except models.FieldDoesNotExist: - pass - try: - return getattr(model, field) - except AttributeError: - raise ImproperlyConfigured("'%s.%s' refers to '%s' that is neither a field, method or property of model '%s'." - % (cls.__name__, label, field, model.__name__)) - -def check_readonly_fields(cls, model, opts): - check_isseq(cls, "readonly_fields", cls.readonly_fields) - for idx, field in enumerate(cls.readonly_fields): - if not callable(field): - if not hasattr(cls, field): - if not hasattr(model, field): - try: - opts.get_field(field) - except models.FieldDoesNotExist: - raise ImproperlyConfigured("%s.readonly_fields[%d], %r is not a callable or an attribute of %r or found in the model %r." - % (cls.__name__, idx, field, cls.__name__, model._meta.object_name)) diff --git a/lib/python2.7/site-packages/django/contrib/admin/views/__init__.py b/lib/python2.7/site-packages/django/contrib/admin/views/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/contrib/admin/views/decorators.py b/lib/python2.7/site-packages/django/contrib/admin/views/decorators.py deleted file mode 100644 index 9088eb049..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/views/decorators.py +++ /dev/null @@ -1,32 +0,0 @@ -try: - from functools import wraps -except ImportError: - from django.utils.functional import wraps # Python 2.4 fallback. - -from django.utils.translation import ugettext as _ -from django.contrib.admin.forms import AdminAuthenticationForm -from django.contrib.auth.views import login -from django.contrib.auth import REDIRECT_FIELD_NAME - -def staff_member_required(view_func): - """ - Decorator for views that checks that the user is logged in and is a staff - member, displaying the login page if necessary. - """ - def _checklogin(request, *args, **kwargs): - if request.user.is_active and request.user.is_staff: - # The user is valid. Continue to the admin page. - return view_func(request, *args, **kwargs) - - assert hasattr(request, 'session'), "The Django admin requires session middleware to be installed. Edit your MIDDLEWARE_CLASSES setting to insert 'django.contrib.sessions.middleware.SessionMiddleware'." - defaults = { - 'template_name': 'admin/login.html', - 'authentication_form': AdminAuthenticationForm, - 'extra_context': { - 'title': _('Log in'), - 'app_path': request.get_full_path(), - REDIRECT_FIELD_NAME: request.get_full_path(), - }, - } - return login(request, **defaults) - return wraps(view_func)(_checklogin) diff --git a/lib/python2.7/site-packages/django/contrib/admin/views/main.py b/lib/python2.7/site-packages/django/contrib/admin/views/main.py deleted file mode 100644 index 0cfc43dd0..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/views/main.py +++ /dev/null @@ -1,285 +0,0 @@ -from django.contrib.admin.filterspecs import FilterSpec -from django.contrib.admin.options import IncorrectLookupParameters -from django.contrib.admin.util import quote, get_fields_from_path -from django.core.exceptions import SuspiciousOperation -from django.core.paginator import InvalidPage -from django.db import models -from django.utils.encoding import force_unicode, smart_str -from django.utils.translation import ugettext, ugettext_lazy -from django.utils.http import urlencode -import operator - -# The system will display a "Show all" link on the change list only if the -# total result count is less than or equal to this setting. -MAX_SHOW_ALL_ALLOWED = 200 - -# Changelist settings -ALL_VAR = 'all' -ORDER_VAR = 'o' -ORDER_TYPE_VAR = 'ot' -PAGE_VAR = 'p' -SEARCH_VAR = 'q' -TO_FIELD_VAR = 't' -IS_POPUP_VAR = 'pop' -ERROR_FLAG = 'e' - -# Text to display within change-list table cells if the value is blank. -EMPTY_CHANGELIST_VALUE = ugettext_lazy('(None)') - -def field_needs_distinct(field): - if ((hasattr(field, 'rel') and - isinstance(field.rel, models.ManyToManyRel)) or - (isinstance(field, models.related.RelatedObject) and - not field.field.unique)): - return True - return False - - -class ChangeList(object): - def __init__(self, request, model, list_display, list_display_links, list_filter, date_hierarchy, search_fields, list_select_related, list_per_page, list_editable, model_admin): - self.model = model - self.opts = model._meta - self.lookup_opts = self.opts - self.root_query_set = model_admin.queryset(request) - self.list_display = list_display - self.list_display_links = list_display_links - self.list_filter = list_filter - self.date_hierarchy = date_hierarchy - self.search_fields = search_fields - self.list_select_related = list_select_related - self.list_per_page = list_per_page - self.model_admin = model_admin - - # Get search parameters from the query string. - try: - self.page_num = int(request.GET.get(PAGE_VAR, 0)) - except ValueError: - self.page_num = 0 - self.show_all = ALL_VAR in request.GET - self.is_popup = IS_POPUP_VAR in request.GET - self.to_field = request.GET.get(TO_FIELD_VAR) - self.params = dict(request.GET.items()) - if PAGE_VAR in self.params: - del self.params[PAGE_VAR] - if ERROR_FLAG in self.params: - del self.params[ERROR_FLAG] - - if self.is_popup: - self.list_editable = () - else: - self.list_editable = list_editable - self.order_field, self.order_type = self.get_ordering() - self.query = request.GET.get(SEARCH_VAR, '') - self.query_set = self.get_query_set() - self.get_results(request) - self.title = (self.is_popup and ugettext('Select %s') % force_unicode(self.opts.verbose_name) or ugettext('Select %s to change') % force_unicode(self.opts.verbose_name)) - self.filter_specs, self.has_filters = self.get_filters(request) - self.pk_attname = self.lookup_opts.pk.attname - - def get_filters(self, request): - filter_specs = [] - if self.list_filter: - for filter_name in self.list_filter: - field = get_fields_from_path(self.model, filter_name)[-1] - spec = FilterSpec.create(field, request, self.params, - self.model, self.model_admin, - field_path=filter_name) - if spec and spec.has_output(): - filter_specs.append(spec) - return filter_specs, bool(filter_specs) - - def get_query_string(self, new_params=None, remove=None): - if new_params is None: new_params = {} - if remove is None: remove = [] - p = self.params.copy() - for r in remove: - for k in p.keys(): - if k.startswith(r): - del p[k] - for k, v in new_params.items(): - if v is None: - if k in p: - del p[k] - else: - p[k] = v - return '?%s' % urlencode(p) - - def get_results(self, request): - paginator = self.model_admin.get_paginator(request, self.query_set, self.list_per_page) - # Get the number of objects, with admin filters applied. - result_count = paginator.count - - # Get the total number of objects, with no admin filters applied. - # Perform a slight optimization: Check to see whether any filters were - # given. If not, use paginator.hits to calculate the number of objects, - # because we've already done paginator.hits and the value is cached. - if not self.query_set.query.where: - full_result_count = result_count - else: - full_result_count = self.root_query_set.count() - - can_show_all = result_count <= MAX_SHOW_ALL_ALLOWED - multi_page = result_count > self.list_per_page - - # Get the list of objects to display on this page. - if (self.show_all and can_show_all) or not multi_page: - result_list = self.query_set._clone() - else: - try: - result_list = paginator.page(self.page_num+1).object_list - except InvalidPage: - raise IncorrectLookupParameters - - self.result_count = result_count - self.full_result_count = full_result_count - self.result_list = result_list - self.can_show_all = can_show_all - self.multi_page = multi_page - self.paginator = paginator - - def get_ordering(self): - lookup_opts, params = self.lookup_opts, self.params - # For ordering, first check the "ordering" parameter in the admin - # options, then check the object's default ordering. If neither of - # those exist, order descending by ID by default. Finally, look for - # manually-specified ordering from the query string. - ordering = self.model_admin.ordering or lookup_opts.ordering or ['-' + lookup_opts.pk.name] - - if ordering[0].startswith('-'): - order_field, order_type = ordering[0][1:], 'desc' - else: - order_field, order_type = ordering[0], 'asc' - if ORDER_VAR in params: - try: - field_name = self.list_display[int(params[ORDER_VAR])] - try: - f = lookup_opts.get_field(field_name) - except models.FieldDoesNotExist: - # See whether field_name is a name of a non-field - # that allows sorting. - try: - if callable(field_name): - attr = field_name - elif hasattr(self.model_admin, field_name): - attr = getattr(self.model_admin, field_name) - else: - attr = getattr(self.model, field_name) - order_field = attr.admin_order_field - except AttributeError: - pass - else: - order_field = f.name - except (IndexError, ValueError): - pass # Invalid ordering specified. Just use the default. - if ORDER_TYPE_VAR in params and params[ORDER_TYPE_VAR] in ('asc', 'desc'): - order_type = params[ORDER_TYPE_VAR] - return order_field, order_type - - def get_query_set(self): - use_distinct = False - - qs = self.root_query_set - lookup_params = self.params.copy() # a dictionary of the query string - for i in (ALL_VAR, ORDER_VAR, ORDER_TYPE_VAR, SEARCH_VAR, IS_POPUP_VAR, TO_FIELD_VAR): - if i in lookup_params: - del lookup_params[i] - for key, value in lookup_params.items(): - if not isinstance(key, str): - # 'key' will be used as a keyword argument later, so Python - # requires it to be a string. - del lookup_params[key] - lookup_params[smart_str(key)] = value - - if not use_distinct: - # Check if it's a relationship that might return more than one - # instance - field_name = key.split('__', 1)[0] - try: - f = self.lookup_opts.get_field_by_name(field_name)[0] - except models.FieldDoesNotExist: - raise IncorrectLookupParameters - use_distinct = field_needs_distinct(f) - - # if key ends with __in, split parameter into separate values - if key.endswith('__in'): - value = value.split(',') - lookup_params[key] = value - - # if key ends with __isnull, special case '' and false - if key.endswith('__isnull'): - if value.lower() in ('', 'false'): - value = False - else: - value = True - lookup_params[key] = value - - if not self.model_admin.lookup_allowed(key, value): - raise SuspiciousOperation( - "Filtering by %s not allowed" % key - ) - - # Apply lookup parameters from the query string. - try: - qs = qs.filter(**lookup_params) - # Naked except! Because we don't have any other way of validating "params". - # They might be invalid if the keyword arguments are incorrect, or if the - # values are not in the correct type, so we might get FieldError, ValueError, - # ValicationError, or ? from a custom field that raises yet something else - # when handed impossible data. - except: - raise IncorrectLookupParameters - - # Use select_related() if one of the list_display options is a field - # with a relationship and the provided queryset doesn't already have - # select_related defined. - if not qs.query.select_related: - if self.list_select_related: - qs = qs.select_related() - else: - for field_name in self.list_display: - try: - f = self.lookup_opts.get_field(field_name) - except models.FieldDoesNotExist: - pass - else: - if isinstance(f.rel, models.ManyToOneRel): - qs = qs.select_related() - break - - # Set ordering. - if self.order_field: - qs = qs.order_by('%s%s' % ((self.order_type == 'desc' and '-' or ''), self.order_field)) - - # Apply keyword searches. - def construct_search(field_name): - if field_name.startswith('^'): - return "%s__istartswith" % field_name[1:] - elif field_name.startswith('='): - return "%s__iexact" % field_name[1:] - elif field_name.startswith('@'): - return "%s__search" % field_name[1:] - else: - return "%s__icontains" % field_name - - if self.search_fields and self.query: - orm_lookups = [construct_search(str(search_field)) - for search_field in self.search_fields] - for bit in self.query.split(): - or_queries = [models.Q(**{orm_lookup: bit}) - for orm_lookup in orm_lookups] - qs = qs.filter(reduce(operator.or_, or_queries)) - if not use_distinct: - for search_spec in orm_lookups: - field_name = search_spec.split('__', 1)[0] - f = self.lookup_opts.get_field_by_name(field_name)[0] - if field_needs_distinct(f): - use_distinct = True - break - - if use_distinct: - return qs.distinct() - else: - return qs - - def url_for_result(self, result): - return "%s/" % quote(getattr(result, self.pk_attname)) diff --git a/lib/python2.7/site-packages/django/contrib/admin/widgets.py b/lib/python2.7/site-packages/django/contrib/admin/widgets.py deleted file mode 100644 index 1978b3e80..000000000 --- a/lib/python2.7/site-packages/django/contrib/admin/widgets.py +++ /dev/null @@ -1,296 +0,0 @@ -""" -Form Widget classes specific to the Django admin site. -""" - -import django.utils.copycompat as copy - -from django import forms -from django.forms.widgets import RadioFieldRenderer -from django.forms.util import flatatt -from django.utils.html import escape -from django.utils.text import truncate_words -from django.utils.translation import ugettext as _ -from django.utils.safestring import mark_safe -from django.utils.encoding import force_unicode -from django.conf import settings -from django.core.urlresolvers import reverse, NoReverseMatch - -class FilteredSelectMultiple(forms.SelectMultiple): - """ - A SelectMultiple with a JavaScript filter interface. - - Note that the resulting JavaScript assumes that the jsi18n - catalog has been loaded in the page - """ - class Media: - js = (settings.ADMIN_MEDIA_PREFIX + "js/core.js", - settings.ADMIN_MEDIA_PREFIX + "js/SelectBox.js", - settings.ADMIN_MEDIA_PREFIX + "js/SelectFilter2.js") - - def __init__(self, verbose_name, is_stacked, attrs=None, choices=()): - self.verbose_name = verbose_name - self.is_stacked = is_stacked - super(FilteredSelectMultiple, self).__init__(attrs, choices) - - def render(self, name, value, attrs=None, choices=()): - if attrs is None: attrs = {} - attrs['class'] = 'selectfilter' - if self.is_stacked: attrs['class'] += 'stacked' - output = [super(FilteredSelectMultiple, self).render(name, value, attrs, choices)] - output.append(u'\n' % \ - (name, self.verbose_name.replace('"', '\\"'), int(self.is_stacked), settings.ADMIN_MEDIA_PREFIX)) - return mark_safe(u''.join(output)) - -class AdminDateWidget(forms.DateInput): - class Media: - js = (settings.ADMIN_MEDIA_PREFIX + "js/calendar.js", - settings.ADMIN_MEDIA_PREFIX + "js/admin/DateTimeShortcuts.js") - - def __init__(self, attrs={}, format=None): - super(AdminDateWidget, self).__init__(attrs={'class': 'vDateField', 'size': '10'}, format=format) - -class AdminTimeWidget(forms.TimeInput): - class Media: - js = (settings.ADMIN_MEDIA_PREFIX + "js/calendar.js", - settings.ADMIN_MEDIA_PREFIX + "js/admin/DateTimeShortcuts.js") - - def __init__(self, attrs={}, format=None): - super(AdminTimeWidget, self).__init__(attrs={'class': 'vTimeField', 'size': '8'}, format=format) - -class AdminSplitDateTime(forms.SplitDateTimeWidget): - """ - A SplitDateTime Widget that has some admin-specific styling. - """ - def __init__(self, attrs=None): - widgets = [AdminDateWidget, AdminTimeWidget] - # Note that we're calling MultiWidget, not SplitDateTimeWidget, because - # we want to define widgets. - forms.MultiWidget.__init__(self, widgets, attrs) - - def format_output(self, rendered_widgets): - return mark_safe(u'

                                                                                                                                                                                                                                                              %s %s
                                                                                                                                                                                                                                                              %s %s

                                                                                                                                                                                                                                                              ' % \ - (_('Date:'), rendered_widgets[0], _('Time:'), rendered_widgets[1])) - -class AdminRadioFieldRenderer(RadioFieldRenderer): - def render(self): - """Outputs a
                                                                                                                                                                                                                                                                for this set of radio fields.""" - return mark_safe(u'\n%s\n
                                                                                                                                                                                                                                                              ' % ( - flatatt(self.attrs), - u'\n'.join([u'
                                                                                                                                                                                                                                                            • %s
                                                                                                                                                                                                                                                            • ' % force_unicode(w) for w in self])) - ) - -class AdminRadioSelect(forms.RadioSelect): - renderer = AdminRadioFieldRenderer - -class AdminFileWidget(forms.ClearableFileInput): - template_with_initial = (u'

                                                                                                                                                                                                                                                              %s

                                                                                                                                                                                                                                                              ' - % forms.ClearableFileInput.template_with_initial) - template_with_clear = (u'%s' - % forms.ClearableFileInput.template_with_clear) - -def url_params_from_lookup_dict(lookups): - """ - Converts the type of lookups specified in a ForeignKey limit_choices_to - attribute to a dictionary of query parameters - """ - params = {} - if lookups and hasattr(lookups, 'items'): - items = [] - for k, v in lookups.items(): - if isinstance(v, list): - v = u','.join([str(x) for x in v]) - elif isinstance(v, bool): - # See django.db.fields.BooleanField.get_prep_lookup - v = ('0', '1')[v] - else: - v = unicode(v) - items.append((k, v)) - params.update(dict(items)) - return params - -class ForeignKeyRawIdWidget(forms.TextInput): - """ - A Widget for displaying ForeignKeys in the "raw_id" interface rather than - in a box. - """ - def render(self, name, value, attrs=None): - if attrs is None: - attrs = {} - attrs['class'] = 'vManyToManyRawIdAdminField' - if value: - value = ','.join([force_unicode(v) for v in value]) - else: - value = '' - return super(ManyToManyRawIdWidget, self).render(name, value, attrs) - - def url_parameters(self): - return self.base_url_parameters() - - def label_for_value(self, value): - return '' - - def value_from_datadict(self, data, files, name): - value = data.get(name) - if value: - return value.split(',') - - def _has_changed(self, initial, data): - if initial is None: - initial = [] - if data is None: - data = [] - if len(initial) != len(data): - return True - for pk1, pk2 in zip(initial, data): - if force_unicode(pk1) != force_unicode(pk2): - return True - return False - -class RelatedFieldWidgetWrapper(forms.Widget): - """ - This class is a wrapper to a given widget to add the add icon for the - admin interface. - """ - def __init__(self, widget, rel, admin_site, can_add_related=None): - self.is_hidden = widget.is_hidden - self.needs_multipart_form = widget.needs_multipart_form - self.attrs = widget.attrs - self.choices = widget.choices - self.widget = widget - self.rel = rel - # Backwards compatible check for whether a user can add related - # objects. - if can_add_related is None: - can_add_related = rel.to in admin_site._registry - self.can_add_related = can_add_related - # so we can check if the related object is registered with this AdminSite - self.admin_site = admin_site - - def __deepcopy__(self, memo): - obj = copy.copy(self) - obj.widget = copy.deepcopy(self.widget, memo) - obj.attrs = self.widget.attrs - memo[id(self)] = obj - return obj - - def _media(self): - return self.widget.media - media = property(_media) - - def render(self, name, value, *args, **kwargs): - rel_to = self.rel.to - info = (rel_to._meta.app_label, rel_to._meta.object_name.lower()) - try: - related_url = reverse('admin:%s_%s_add' % info, current_app=self.admin_site.name) - except NoReverseMatch: - info = (self.admin_site.root_path, rel_to._meta.app_label, rel_to._meta.object_name.lower()) - related_url = '%s%s/%s/add/' % info - self.widget.choices = self.choices - output = [self.widget.render(name, value, *args, **kwargs)] - if self.can_add_related: - # TODO: "id_" is hard-coded here. This should instead use the correct - # API to determine the ID dynamically. - output.append(u' ' % \ - (related_url, name)) - output.append(u'%s' % (settings.ADMIN_MEDIA_PREFIX, _('Add Another'))) - return mark_safe(u''.join(output)) - - def build_attrs(self, extra_attrs=None, **kwargs): - "Helper function for building an attribute dictionary." - self.attrs = self.widget.build_attrs(extra_attrs=None, **kwargs) - return self.attrs - - def value_from_datadict(self, data, files, name): - return self.widget.value_from_datadict(data, files, name) - - def _has_changed(self, initial, data): - return self.widget._has_changed(initial, data) - - def id_for_label(self, id_): - return self.widget.id_for_label(id_) - -class AdminTextareaWidget(forms.Textarea): - def __init__(self, attrs=None): - final_attrs = {'class': 'vLargeTextField'} - if attrs is not None: - final_attrs.update(attrs) - super(AdminTextareaWidget, self).__init__(attrs=final_attrs) - -class AdminTextInputWidget(forms.TextInput): - def __init__(self, attrs=None): - final_attrs = {'class': 'vTextField'} - if attrs is not None: - final_attrs.update(attrs) - super(AdminTextInputWidget, self).__init__(attrs=final_attrs) - -class AdminURLFieldWidget(forms.TextInput): - def __init__(self, attrs=None): - final_attrs = {'class': 'vURLField'} - if attrs is not None: - final_attrs.update(attrs) - super(AdminURLFieldWidget, self).__init__(attrs=final_attrs) - -class AdminIntegerFieldWidget(forms.TextInput): - def __init__(self, attrs=None): - final_attrs = {'class': 'vIntegerField'} - if attrs is not None: - final_attrs.update(attrs) - super(AdminIntegerFieldWidget, self).__init__(attrs=final_attrs) - -class AdminCommaSeparatedIntegerFieldWidget(forms.TextInput): - def __init__(self, attrs=None): - final_attrs = {'class': 'vCommaSeparatedIntegerField'} - if attrs is not None: - final_attrs.update(attrs) - super(AdminCommaSeparatedIntegerFieldWidget, self).__init__(attrs=final_attrs) diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/__init__.py b/lib/python2.7/site-packages/django/contrib/admindocs/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo deleted file mode 100644 index 0a1c3ae34..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po deleted file mode 100644 index e0e824df5..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ar/LC_MESSAGES/django.po +++ /dev/null @@ -1,144 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Arabic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ar\n" -"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " -"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "وسم:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "مرشّح" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "عرض:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "التطبيق %r غير موجود" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "النموذج %(model_name)r غير موجود ÙÙŠ التطبيق %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "العنصر `%(app_label)s.%(data_type)s` المرتبط" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "نموذج:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "عناصر `%(app_label)s.%(object_name)s` مرتبطة" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "كل %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "عدد %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "الحقول ÙÙŠ عناصر %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "يبدو أن %s ليس عنصر urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "الرئيسية" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "الوثائق" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "أوامر المÙضلة" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "أوامر Ù…Ùضلة الوثائق" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              لتركيب أوامر المÙضلة، قم بسحب الوصلة إلى\n" -"شريط أدات المÙضلات ÙÙŠ متصÙحك، أو قم بالضغط عليها بالزر الأيمن وأضÙها إلى " -"Ù…Ùضلاتك.\n" -"سيمكنك الآن أن اختيار أوامر المÙضلة من أي صÙحة ÙÙŠ الموقع، لاحظ بأن بعض\n" -"أوامر المÙضلة هذه معدة لتعمل على أجهزة كمبيوتر تعتبر على أنها \"داخلية\"\n" -"(تحدث إلى مسؤول النظم إذا لم تكن متأكدا ما إذا كان كمبيوتر يعتبر \"داخليا\")." -"

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "الوثائق لهذه الصÙحة" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "ينتقل بك من أي صÙحة إلى وثائق العرض الذي أنشأ هذه الصÙحة." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "أظهر معر٠الكائن" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "عرض نوع البيانات والمعر٠الÙريد للصÙحات التي تمثل كائناً واحداً." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "عدّل هذا العنصر (الناÙذة الحالية)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "ينتقل بك إلى صÙحة الإدارة للصÙحات التي تمثل عنصراً واحداً." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "عدّل هذا العنصر (ناÙذة جديدة)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "كما سبق، لكن ÙŠÙتح صÙحة الإدارة ÙÙŠ ناÙذة جديدة." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo deleted file mode 100644 index 6035b0031..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.po deleted file mode 100644 index 5bb4698d6..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/az/LC_MESSAGES/django.po +++ /dev/null @@ -1,135 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Azerbaijani \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: az\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo deleted file mode 100644 index e868d958f..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po deleted file mode 100644 index c776ae72e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bg/LC_MESSAGES/django.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-10 05:34+0000\n" -"Last-Translator: tlubenov \n" -"Language-Team: Bulgarian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bg\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "таг:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "филтър:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "изглед:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Приложението %r липÑва" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Моделът %(model_name)r не е намерен в приложение %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "Ñвързаните '%(app_label)s.%(data_type)s' обект" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "модел:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "Ñвързаните '%(app_label)s.%(object_name)s' обекти" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "вÑички %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "брой %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Полета на %s обекти" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s не прилича на обект от тип urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Ðачало" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "ДокументациÑ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklet-и" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Bookmarklet-и за документациÑ" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              За да инÑталирате bookmarklet-и, задърпайте линка в " -"bookmarks\n" -"toolbar-а, или щракнете Ñ Ð´ÐµÑÐ½Ð¸Ñ Ð±ÑƒÑ‚Ð¾Ð½ и добавете линка в отметките. Сега " -"можете да\n" -"изберете bookmarklet-а от коÑто и да е Ñтраница. ÐÑкой от тези\n" -"bookmarklet-и могат да Ñе разглеждат Ñамо от компютър, който е маркиран \n" -"като \"вътрешен\" (приказвайте Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸Ñтратора ако не Ñте Ñигурни дали\n" -"компютърът ви е \"вътрешен\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Ð”Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Ð·Ð° тази Ñтраница" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Препраща от коÑто и да е Ñтраница към документациÑта за изгледа, който Ñ Ðµ " -"генерирал." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "ID на обекта" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Показва типът на Ñъдържанието и ID-то на Ñтраници, които предÑтавлÑват " -"единичен обект." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Редактирай този обект (в този прозорец)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Отива в админÑката Ñтраница за Ñтраници, които предÑтавлÑват единичен " -"обект. " - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Редактирай този обект (в нов прозорец)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Като горното, но Ð¾Ñ‚Ð²Ð°Ñ€Ñ Ð°Ð´Ð¼Ð¸Ð½Ð¸ÑтраторÑката Ñтраница в нов прозорец." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo deleted file mode 100644 index c039138cb..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po deleted file mode 100644 index 36df44429..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bn/LC_MESSAGES/django.po +++ /dev/null @@ -1,142 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Bengali <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "টà§à¦¯à¦¾à¦—ঃ" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "ফিলà§à¦Ÿà¦¾à¦°à¦ƒ" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "ভিউঃ" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "%r à¦à§à¦¯à¦ªà¦Ÿà¦¿ পাওয়া যায়নি" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "%(app_label)r à¦à§à¦¯à¦ªà§‡ %(model_name)r মডেলটি পাওয়া যায়নি" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "`%(app_label)s.%(data_type)s` সমà§à¦ªà¦°à§à¦•à¦¿à¦¤ অবজেকà§à¦Ÿ" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "মডেলঃ" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "`%(app_label)s.%(object_name)s` সমà§à¦ªà¦°à§à¦•à¦¿à¦¤ অবজেকà§à¦Ÿ সমূহ" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "সকল %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s সংখà§à¦¯à¦¾" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s অবজেকà§à¦Ÿà§‡ ফিলà§à¦¡à¦—à§à¦²à§‡à¦¾" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ইউআরà¦à¦² -à¦à¦° মত নয়" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "নীড়পাতা" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "সহায়িকা" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "বà§à¦•à¦®à¦¾à¦°à§à¦•à¦²à§‡à¦Ÿ" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "সহায়িকা বà§à¦•à¦®à¦¾à¦°à§à¦•à¦²à§‡à¦Ÿ" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              বà§à¦•à¦®à¦¾à¦°à§à¦• ইনসà§à¦Ÿà¦²à§‡à¦° জনà§à¦¯ লিঙà§à¦•à¦Ÿà¦¿ আপনার বà§à¦•à¦®à¦¾à¦°à§à¦• টà§à¦²à¦¬à¦¾à¦°à§‡ টেনে নিয়ে " -"যান, অথবা রাইট-কà§à¦²à¦¿à¦• করে বà§à¦•à¦®à¦¾à¦°à§à¦•à§‡ যোগ করà§à¦¨à¥¤ à¦à¦–ন আপনি\n" -"সাইটের যেকোন পাতা থেকে বà§à¦•à¦®à¦¾à¦°à§à¦•à¦²à§‡à¦Ÿà¦Ÿà¦¿ বà§à¦¯à¦¬à¦¹à¦¾à¦° করতে পারবেন। লকà§à¦·à§à¦¯ করà§à¦¨ যে, বেশ কিছৠ" -"বà§à¦•à¦®à¦¾à¦°à§à¦•à¦²à§‡à¦Ÿ দেখার জনà§à¦¯ \"internal\" কমà§à¦ªà¦¿à¦‰à¦Ÿà¦¾à¦° থেকে\n" -"দেখতে হবে (আপনার পà§à¦°à¦¶à¦¾à¦¸à¦¨à§‡à¦° কাছ থেকে জানà§à¦¨ যে আপনার কমà§à¦ªà¦¿à¦‰à¦Ÿà¦¾à¦° \"internal\" কিনা)" -"।

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "à¦à¦‡ পাতার সহায়িকা" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "যেকোন পাতা থেকে ভিউ সহায়িকাতে নিয়ে যান।" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "অবজেকà§à¦Ÿ আইডি দেখান" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "কনটেনà§à¦Ÿ-টাইপ à¦à¦¬à¦‚ à¦à¦•à¦• আইডি দেখায়, যা কিনা à¦à¦•à¦Ÿà¦¿ নিরà§à¦¦à¦¿à¦·à§à¦Ÿ অবজেকà§à¦Ÿà¦•à§‡ বোà¦à¦¾à§Ÿà¥¤" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "à¦à¦‡ অবজেকà§à¦Ÿà¦Ÿà¦¿ সমà§à¦ªà¦¾à¦¦à¦¨ করà§à¦¨ (বরà§à¦¤à¦®à¦¾à¦¨ উইনà§à¦¡à§‡à¦¾)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "পà§à¦°à¦¶à¦¾à¦¸à¦¨ পাতায় নিয়ে যান, যা কিনা à¦à¦•à¦Ÿà¦¿ নিরà§à¦¦à¦¿à¦·à§à¦Ÿ পাতা অবজেকà§à¦Ÿà¦•à§‡ বোà¦à¦¾à§Ÿà¥¤" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "à¦à¦‡ অবজেকà§à¦Ÿà¦Ÿà¦¿ সমà§à¦ªà¦¾à¦¦à¦¨ করà§à¦¨ (নতà§à¦¨ উইনà§à¦¡à§‡à¦¾)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "উপরের মতই, কিনà§à¦¤à§ নতà§à¦¨ উইনà§à¦¡à§‡à¦¾à¦¤à§‡ খà§à¦²à§à¦¨à¥¤" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo deleted file mode 100644 index 834e39b6b..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po deleted file mode 100644 index 468990f72..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/bs/LC_MESSAGES/django.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Bosnian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bs\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "pogled:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplikacija %r nije pronaÄ‘ena" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Model %(model_name)r nije pronaÄ‘en u aplikaciji %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "povezani objekti klase `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "klase `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "svi povezani objekti %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "broj povezanih objekata %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Polja u povezanim objektima %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ne izgleda kao urlpattern objekat" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "PoÄetna" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentacija" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarkleti" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Bookmarkleti dokumentacije" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Da biste instalirali bookmarklet, prevucite link do " -"svojih\n" -"bookmarka ili kliknite desnim dugmetom i dodajte meÄ‘u bookmarke. Nakon toga\n" -"bookmarkletima možete pristupiti sa svake stranice na sajtu. Imajte na umu\n" -"da neki bookmarkleti zahtijevaju da sajtu pristupite sa raÄunara koji su\n" -"oznaÄeni kao „interni“ (pitajte administratora vaÅ¡eg sistema ukoliko niste\n" -"sigurni da li je vaÅ¡ raÄunar „interni“).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentacija za ovu stranicu" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Vodi od bilo koje stranice do dokumentacije za pogled koji generiše tu " -"stranicu." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Prikaži ID objekta" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Prikazuje content-type i jedinstveni ID za stranicu koja predstavlja jedan " -"objekat." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Izmjeni ovaj objekat (u ovom prozoru)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Vodi u administracioni stranicu za stranice koje prestavljaju jedan objekat" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Izmjeni ovaj objekat (novi prozor)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" -"Isto kao prethodni, ali otvara administracionu stranicu u novom prozoru." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo deleted file mode 100644 index 2cefe7122..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po deleted file mode 100644 index 418688768..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ca/LC_MESSAGES/django.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Catalan \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ca\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "etiqueta:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtre:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "vista:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "No s'ha pogut trobar l'aplicació %r" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "El model %(model_name)r no s'ha trobat a l'aplicació %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "l'objecte relacionat `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "objectes relacionats `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "tots %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "nombre de %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Camps en objectes %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s no sembla ser un objecte 'urlpattern'" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Inici" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentació" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "'Bookmarklets'" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "'Bookmarklets' de documentació" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Per tal d'instal·lar 'bookmarklets', arrosegueu l'enllaç\n" -"a la vostra barra de marcadors, o feu click amb el botó dret a l'enllaç i\n" -"afegiu-lo als marcadors.\n" -"Ara podeu escollir el 'bookmarklet' des de qualsevol pàgina del lloc.\n" -"Observeu que per a alguns d'aquests 'bookmarklets' cal que estigueu veient\n" -"el lloc des d'un ordinador designat com a \"intern\" (parleu\n" -"amb el vostre administrador de sistemes si no esteu segurs si el vostre " -"ordinador és \"intern\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentació d'aquesta pàgina" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Us porta des de qualsevol pàgina a la documentació de la vista que la genera." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Mostra l'ID de l'objecte" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Mostra el 'content-type' (tipus de contingut) i l'ID inequívoc de les " -"pàgines que representen un únic objecte." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Editar aquest objecte (finestra actual)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"El porta a la pàgina d'administració de pàgines que representen un únic " -"objecte." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Editar aquest objecte (nova finestra)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Com abans, però obre la pàgina d'administració en una nova finestra." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo deleted file mode 100644 index 00bbeda32..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po deleted file mode 100644 index 21e700418..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/cs/LC_MESSAGES/django.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Czech \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtr:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "pohled (view):" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplikace %r nenalezena" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Model %(model_name)r v aplikaci %(app_label)r nenalezen" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "související položka `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "související položky `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "VÅ¡e: %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "PoÄet: %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Pole položek typu %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "Objekt %s patrnÄ› není typu urlpattern." - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Domů" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentace" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklety" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "DokumentaÄní bookmarklety" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Pro nainstalování bookmarkletů, pÅ™etáhnÄ›te odkaz na vaÅ¡e " -"záložky (oblíbené),\n" -"nebo klepnÄ›te pravým tlaÄítkem na odkaz a pÅ™idejte ho k vaÅ¡im záložkám " -"(oblíbeným). Nyní můžete\n" -"zvolit bookmarklet z libovolné stránky. Poznámka: NÄ›které tyto\n" -"bookmarklety vyžadují, abyste prohlížel(a) stránky z poÄítaÄe, který je " -"nastaven jako\n" -"\"\"interní\" (promluvte si s vaším správcem, jestli si nejste jisti,\n" -"zda je váš poÄítaÄ \"interní\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentace k této stránce" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Z libovolné stránky otevÅ™e dokumentaci pohledu (view), který generoval tuto " -"stránku." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Ukázat id položky" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Zobrazí content-type a unikátní ID stránek reprezentujících jedinou položku." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Upravit tuto položku (ve stávajícím oknÄ›)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"PÅ™epne do administraÄního rozhraní stránek reprezentujících jedinou položku." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Upravit tuto položku (v novém oknÄ›)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Jako výše, ale otevÅ™e prostÅ™edí správy v novém oknÄ›." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo deleted file mode 100644 index e937d8d4f..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po deleted file mode 100644 index dc56798dd..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/cy/LC_MESSAGES/django.po +++ /dev/null @@ -1,140 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cy\n" -"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != " -"11) ? 2 : 3\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Adref" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dogfennaeth" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Dalennau gofnod" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dogfennaeth dalennau gofnod" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dogfennaeth er mwyn y dudalen yma" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Dangos ID gwrthrych" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Yn dangos y fath-cynnwys a'r ID unigryw ar gyfer tudalennau sy'n " -"cynrychioligwrthrych sengl." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Golygu'r gwrthrych yma (ffenestr cyfoes)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Yn neidio i'r dudalen weinyddiad ar gyfer tudalennau sy'n cynrychioli " -"gwrthrych sengl." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Golygu'r gwrthrych yma (ffenestr newydd)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Fel uwchben, ond yn agor y dudalen weinyddiad mewn ffenestr newydd." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo deleted file mode 100644 index 2ccf8138b..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.po deleted file mode 100644 index 3ef5f3965..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/da/LC_MESSAGES/django.po +++ /dev/null @@ -1,148 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Danish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: da\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Applikationen %r blev ikke fundet" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Modellen %(model_name)r ikke fundet i applikationen %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "det relaterede `%(app_label)s.%(data_type)s`-objekt" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "relaterede `%(app_label)s.%(object_name)s`-objekter" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "alle %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "antal %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Felter på %s-objekter" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ser ikke ud til at være et urlpattern-objekt" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Hjem" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentation" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokumentations-bookmarklets" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              For at installere bookmarklets, træk linket til din\n" -"bogmærkelinje eller højreklik på linket og tilføj det til dine bogmærker.\n" -"Du kan nu markere bookmarkletten fra enhver side på websitet.\n" -"Bemærk, at nogle af disse bookmarkletter kræver, at du ser på websitet fra\n" -"en computer der opfattes som \"intern\" (tal med din systemadministrator,\n" -"hvis du ikke er sikker på om din computer er \"intern\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentation for denne side" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Bringer dig fra en hvilken som helst side til dokumentationen for det view, " -"der genererer den pågældende side." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Vis objekt-ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Viser indholdstypen og det unikke ID for sider, der repræsenterer et enkelt " -"objekt." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Rediger dette objekt (i det aktuelle vindue)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Springer til administrationssiden for sider, der repræsenterer et enkelt " -"objekt." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Rediger dette objekt (i nyt vindue)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Som ovenfor, men åbner administrationssiden i et nyt vindue." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo deleted file mode 100644 index 3653ebc80..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.po deleted file mode 100644 index ed38a22fb..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/de/LC_MESSAGES/django.po +++ /dev/null @@ -1,152 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: German <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "Schlagwort:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "Filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "Ansicht:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Anwendung %r nicht gefunden" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Modell %(model_name)r wurde nicht in Anwendung %(app_label)r gefunden" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "Das verknüpfte `%(app_label)s.%(data_type)s` Objekt" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "Modell:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "verknüpftes `%(app_label)s.%(object_name)s` Objekt" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "Alle %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "Anzahl von %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Felder am %s Objekt" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ist scheinbar kein urlpattern-Objekt" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Start" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentation" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokumentations-Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Um Bookmarklets zu installieren, müssen diese Links in " -"die\n" -"Browser-Werkzeugleiste gezogen werden, oder mittels rechter Maustaste in " -"die\n" -"Bookmarks gespeichert werden. Danach können die Bookmarklets von jeder " -"Seite\n" -"aufgerufen werden. Einige Bookmarklets sind auf den Zugriff von 'internen'\n" -"Rechnern beschränkt. Falls nicht klar ist, ob ein Rechner als 'intern'\n" -"bewertet wird, bitte den Administrator fragen.

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentation für diese Seite" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Springt von jeder Seite zu der Dokumentation für den View, der diese Seite " -"erzeugt." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Objekt-ID anzeigen" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Zeigt den Content-Type und die eindeutige ID für Seiten, die ein einzelnes " -"Objekt repräsentieren." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Dieses Objekt ändern (Aktives Fenster)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Springt zu der Administrationsseite für dieses Objekt, wenn diese Seite ein " -"Objekt repräsentiert." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Dieses Objekt ändern (Neues Fenster)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" -"Wie zuvor, aber öffnet die Administrationsseite in einem neuen Fenster." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo deleted file mode 100644 index b0cd2ff3c..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.po deleted file mode 100644 index 9afcd0216..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/el/LC_MESSAGES/django.po +++ /dev/null @@ -1,153 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: pagles \n" -"Language-Team: Greek <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: el\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "ετικέτα:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "φίλτÏο:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "Ï€Ïοβολή:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Δε βÏέθηκε η εφαÏμογή %r" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" -"Το μοντέλο %(model_name)r δεν μποÏεί να βÏεθεί στην εφαÏμογή %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "το συσχετισμένο `%(app_label)s.%(data_type)s` αντικείμενο" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "μοντέλο:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "συσχετισμένα `%(app_label)s.%(object_name)s` αντικείμενα" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "όλα %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "πλήθος number of %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Πεδία στα αντικείμενα %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "Το %s δε φαίνεται να είναι ένα αντικείμενο urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "ΑÏχική" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "ΤεκμηÏίωση" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Σελιδοδείκτες" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Σελιδοδείκτες τεκμηÏίωσης" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Για να εγκαταστήσετε έναν \"bookmarklet\" σÏνδεσμο, σÏÏετε " -"τον σÏνδεσμο στον χώÏο με τους αγαπημένους σας ιστότοπους στην γÏαμμή " -"εÏγαλείων σας ή κάντε δεξί κλικ πάνω στον σÏνδεσμο και σώστε τον στα " -"αγαπημένα σας. Πλέον θα μποÏείτε να χÏησιμοποιείτε τον σÏνδεσμο bookmarklet " -"από την οποιαδήποτε σελίδα του ιστοτόπου σας. Σας υπενθημίζουμε ότι Î±Ï…Ï„Î¿Ï " -"του είδους τα bookmarklets απαιτοÏν να επισκέπτεστε τον ιστότοπο από έναν " -"υπολογιστή που να έχει οÏιστεί σαν \"εσωτεÏικός\" (\"internal\"). " -"Απευθυνθείτε στον διαχειÏιστή σας αν δεν γνωÏίζεται αν ο υπολογιστής σας " -"θεÏείται \"εσωτεÏικός\".

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "ΤεκμηÏίωση για αυτήν τη σελίδα" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Μεταπήδηση από οποιαδήποτε σελίδα στην τεκμηÏίωση για το view που " -"δημιοÏÏγησε τη σελίδα αυτή." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Εμφάνιση ID αντικειμένου" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Εμφάνιση του content-type και του Î¼Î¿Î½Î±Î´Î¹ÎºÎ¿Ï Î±Î½Î±Î³Î½Ï‰ÏÎ¹ÏƒÏ„Î¹ÎºÎ¿Ï Î³Î¹Î± τις σελίδες " -"που αντιπÏοσωπεÏουν ένα μοναδικό αντικείμενο." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "ΕπεξεÏγασία Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… αντικειμένου (Ï„Ïέχον παÏάθυÏο)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Αν η σελίδα αναπαÏιστά ένα και μοναδικό αντικείμενο τότε οδηγεί στην " -"αντίστοιχη σελίδα διαχείÏισης." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "ΕπεξεÏγασία Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… αντικειμένου (νέο παÏάθυÏο)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" -"Όπως και παÏαπάνω, αλλά άνοιγμα της σελίδας διαχείÏισης σε νέο παÏάθυÏο." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo deleted file mode 100644 index af5a3ca35..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.po deleted file mode 100644 index 40df05f92..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/en/LC_MESSAGES/django.po +++ /dev/null @@ -1,133 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2010-05-13 15:35+0200\n" -"Last-Translator: Django team\n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo deleted file mode 100644 index 51344faff..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po deleted file mode 100644 index ea00d02a0..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/en_GB/LC_MESSAGES/django.po +++ /dev/null @@ -1,146 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: jon_atkinson \n" -"Language-Team: English (United Kingdom) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "App %r not found" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Model %(model_name)r not found in app %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "the related `%(app_label)s.%(data_type)s` object" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "related `%(app_label)s.%(object_name)s` objects" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "all %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "number of %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Fields on %s objects" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s does not appear to be a urlpattern object" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Home" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentation" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Documentation bookmarklets" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentation for this page" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Jumps you from any page to the documentation for the view that generates " -"that page." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Show object ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Shows the content-type and unique ID for pages that represent a single " -"object." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Edit this object (current window)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "Jumps to the admin page for pages that represent a single object." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Edit this object (new window)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "As above, but opens the admin page in a new window." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo deleted file mode 100644 index fa13bbbda..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.po deleted file mode 100644 index bc7f060d5..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es/LC_MESSAGES/django.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Spanish (Castilian) <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "etiqueta:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtro:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "vista:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplicación %r no encontrada" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" -"El modelo %(model_name)r no se ha encontrado en la aplicación %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "el objeto relacionado `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modelo:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "los objetos relacionados `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "todo %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "número de %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Campos en %s objetos" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s no parece ser un objeto urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Inicio" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentación" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Bookmarklets de documentación" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Para instalar bookmarklets, arrastre el enlace a su barra\n" -"de favoritos, o pulse con el botón derecho el enlace y añádalo a sus " -"favoritos.\n" -"Ahora puede escoger el bookmarklet desde cualquier página del sitio.\n" -"Observe que algunos de estos bookmarklets precisan que esté viendo\n" -"el sitio desde un ordenador señalado como \"interno\" (hable\n" -"con su administrador de sistemas si no está seguro si el suyo lo es).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentación para esta página" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Lleva desde cualquier página a la documentación de la vista que la genera." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Mostrar ID de objeto" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Muestra el tipo de contenido e ID único de las páginas que representan un " -"simple objeto." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Editar este objeto (ventana actual)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Lleva a la página de administración de páginas que representan un único " -"objeto." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Editar este objeto (nueva ventana)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" -"Como antes, pero abre la página de administración en una nueva ventana." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo deleted file mode 100644 index 48d254dd6..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po deleted file mode 100644 index 9670da0ea..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_AR/LC_MESSAGES/django.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Spanish (Argentinian) <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_AR\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "etiqueta:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtrar:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "ver:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplicación %r no encontrada" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Modelo %(model_name)r no encontrado en aplicación %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "el objeto `%(app_label)s.%(data_type)s` relacionado" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modelo:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "objetos `%(app_label)s.%(object_name)s` relacionados" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "todos los %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "número de %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Campos en objetos %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s no parece ser un objeto urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Inicio" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentación" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Bookmarklets de documentación" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Para instalar bookmarklets, arrastre el enlace a su barra\n" -"de favoritos, o pulse con el botón derecho el enlace y añádalo a sus " -"favoritos.\n" -"Ahora puede seleccionar el bookmarklet desde cualquier página en el sitio.\n" -"Tenga en cuenta que algunos de estos bookmarklets precisan que esté viendo\n" -"el sitio desde un equipo señalado como \"interno\" (hable\n" -"con su administrador de sistemas si no está seguro de si el suyo lo es).\n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentación de esta página" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Le lleva desde cualquier página a la documentación de la vista que la genera." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Mostrar ID de objeto" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Muestra el tipo de contenido e ID unívoco de las páginas que representan un " -"único objeto." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Editar este objeto (ventana actual)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Le lleva a la página de administración de páginas que representan un único " -"objeto." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Editar este objeto (nueva ventana)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Ãdem, pero abre la página de administración en una nueva ventana." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo deleted file mode 100644 index 194ab0423..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po deleted file mode 100644 index 006629fea..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/es_MX/LC_MESSAGES/django.po +++ /dev/null @@ -1,148 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-14 22:27+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Spanish (Mexican) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: es_MX\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "etiqueta:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtro:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "ver:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplicación %r no encontrada" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Modelo %(model_name)r no encontrado en aplicación %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "el objeto `%(app_label)s.%(data_type)s` relacionado" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modelo:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "objetos `%(app_label)s.%(object_name)s` relacionados" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "todos los %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "número de %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Campos en objetos %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s no parece ser un objeto urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Inicio" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentación" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Bookmarklets de documentación" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Para instalar bookmarklets, arrastre el enlace a su barra " -"de favoritos, o pulse con el botón derecho el enlace y añádalo a sus " -"favoritos. Ahora puede seleccionar el bookmarklet desde cualquier página en " -"el sitio. Tenga en cuenta que algunos de estos bookmarklets necesitan que " -"esté viendo el sitio desde un equipo señalado como \"interno\" (hable con su " -"administrador de sistemas si no está seguro de si el suyo lo es).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentación de esta página" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Le lleva desde cualquier página a la documentación de la vista que la genera." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Mostrar ID de objeto" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Muestra el tipo de contenido e ID único de las páginas que representan un " -"único objeto." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Editar este objeto (ventana actual)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Le lleva a la página de administración de páginas que representan un único " -"objeto." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Editar este objeto (nueva ventana)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" -"Como el anterior, pero abre la página de administración en una ventana nueva" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo deleted file mode 100644 index 93d84db04..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.po deleted file mode 100644 index 696e9edc5..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/et/LC_MESSAGES/django.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Estonian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: et\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "lipik:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtreeri:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "vaade:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Rakendust %r ei leitud" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Mudelit %(model_name)r ei leitud rakendusest %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "seotud `%(app_label)s.%(data_type)s` objekt" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "mudel:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "seotud `%(app_label)s.%(object_name)s` objektid" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "kõik %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s arv" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Objekti %s väljad" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ei tundu olevat urlpattern objekt" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Kodu" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentatsioon" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Järjehoidjandid" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokumentatsiooni järjehoidjandid" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Järjehoidjandite paigaldamiseks lisa link " -"järjehoidjatesse.\n" -"Seejärel võite järjehoidjandi aktiveerida suvaliselt lehelt saidil. Mõned " -"järgnevatest\n" -"järjehoidjanditest eeldavad, et külastate saiti arvutist, mis kuulub " -"\"sisemiste\" arvutite nimekirja.\n" -"(konsulteerige süsteemiadministraatoriga, kui te ei tea, mida tähendab " -"\"sisemine\")

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Selle lehekülje dokumentatsioon" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Suunab teid suvalisel lehel asudes selle vaate dokumentatsioonile, mis antud " -"lehe genereerib." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Näita objekti ID-d" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Näitab sisutüüpi ning unikaalset ID'd lehtedel, mis esitavad mingit kindlat " -"objekti." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Muuda seda objekti (samas aknas)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Suunab administreeimislehele lehtedelt, mis esitavad mingit kindlat objekti." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Muuda seda objekti (uues aknas)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Sama, mis üleval, kuid avab admin. lehe uues aknas." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo deleted file mode 100644 index a9f13ca6e..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po deleted file mode 100644 index c4426d90c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/eu/LC_MESSAGES/django.po +++ /dev/null @@ -1,146 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: aitzol \n" -"Language-Team: Basque \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: eu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "etiketa:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtroa:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "bista:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "%r aplikazio ez da aurkitu" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "%(model_name)r modeloa ez da aurkitu %(app_label)r aplikazioan" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "erlazionatutako `%(app_label)s.%(data_type)s` objektua" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modeloa:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "erlazionatutako `%(app_label)s.%(object_name)s` objektuak" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "%s dena" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s zenbakia" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s objetuaren eremuak" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ez dirudi url heredu objetua" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Hasiera" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentazioa" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Markadoreak" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokumentazio markadoreak" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Markadoreak instalatzeko eraman linka zure erreminta " -"panelera (toolbar), edo eskuineko botoiarekin klik egin eta gehitu erreminta " -"panelera. Kontuan izan, markadore hauetako batzuk, exekutatzen ari diren " -"ordenagailua 'barneko' gisa markatua egotea behar dutela (hitzagin zure " -"sistema kudeatzailearekin zure ordenagailua 'barnekoa' den edo ez " -"argitzeko)\n" -".

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Web orri honen dokumentazioa" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Edozein orritik, orria sortzen duen bistaren dokumentaziora eramango zaitu." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Objetuaren ID erakutsi" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Objetu bakarra erakusten duten orrietan, eduki mota (content-type) eta " -"orriaren ID bakarra erakutsi, ." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Objetu hau aldatu ( leiho honetan)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "Objetu bakarra erakusten orrietan, adminiztrazio gunera joan." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Objetu hau aldatu (leiho berrian)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Goian bezala, baina kudeaketa guena leiho berri batean irekiko da." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo deleted file mode 100644 index fc26abab2..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po deleted file mode 100644 index 4c87e4a99..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fa/LC_MESSAGES/django.po +++ /dev/null @@ -1,137 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Persian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "برچسب:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "Ùیلتر" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "نمایش:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "برنامهٔ %r یاÙت نشد" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "مدل %(model_name)r در برنامهٔ %(app_label)r یاÙت نشد" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "شیء «%(app_label)s.%(data_type)s» مرتبط" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "مدل:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "اشیاء «%(app_label)s.%(object_name)s» مرتبط" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "همهٔ %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "تعداد %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Ùیلدهای شیء %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "به نظر نمی رسد %s یک شیء از نوع urlpattern باشد" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "آغازه" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "مستندات" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "مستندات این صÙحه" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"شما را از هر صÙحه‌ای Ú©Ù‡ باشید به مستندات نمایی Ú©Ù‡ صÙحه را ایجاد کرده می‌برد" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "نمایش مشخصهٔ شیء" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"نمایش محتوا Ùˆ مشخصهٔ منحصر به Ùرد برای صÙحاتی Ú©Ù‡ یک شیء را نمایش می‌دهند." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "ویرایش این شیء (پنجرهٔ کنونی)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "پرش به صÙحهٔ مدیر برای صÙحاتی Ú©Ù‡ یک شیء را نمایش می‌دهند." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "ویرایش این شیء (پنجرهٔ جدید)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "مانند بالا، اما صÙحهٔ مدیر را در پنجرهٔ جدیدی باز می‌کند." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo deleted file mode 100644 index 7cf99e7f6..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po deleted file mode 100644 index 00fa6e116..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fi/LC_MESSAGES/django.po +++ /dev/null @@ -1,146 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Finnish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tagi:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "suodatin:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "näkymä:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Sovellusta %r ei löydy" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Sovelluksesta %(app_label)r ei löydy mallia %(model_name)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "tähän liittyvä `%(app_label)s.%(data_type)s`-kohde" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "malli:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "tähän liittyvät `%(app_label)s.%(object_name)s`-kohteet" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "kaikki %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s-kohteiden lukumäärä" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s-kohteiden kentät" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ei näytä olevan urlpattern-olio" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Etusivu" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Ohjeita" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Kirjanmerkkiset" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Ohjeiden kirjanmerkkiset" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Asenna kirjanmerkkinen raahaamalla linkki kirjanmerkkien " -"työkalupalkkiin tai napsauttamalla linkkiä oikeanpuoleisella hiiren " -"painikkeella ja valitsemalla kirjanmerkkeihin lisäämisen. Sen jälkeen voit " -"valita kirjanmerkkisen miltä tahansa sivuston sivulta. Huomaa, että jotkin " -"näistä kirjanmerkkisistä toimivat vain, jos selaat sivustoa \"paikalliseksi" -"\" määritellyltä tietokoneelta (kysy lisätietoja verkkonne ylläpitäjältä).\n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Tämän sivun ohjeita" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "Näyttää ohjeet, jotka koskevat ko. sivun luonutta näkymää." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Näytä kohteen tunniste" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Näyttää yksittäistä kohdetta vastaavilla sivuilla kohteen tyypin ja " -"tunnisteen." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Muokkaa tätä kohdetta (tässä ikkunassa)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Siirtyy yksittäistä kohdetta vastaavalta sivulta kohteen ylläpitosivulle." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Muokkaa tätä kohdetta (uudessa ikkunassa)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Kuten yllä, mutta avaa ylläpitosivun uuteen ikkunaan." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo deleted file mode 100644 index 1c7471369..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po deleted file mode 100644 index b9c4b48ad..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fr/LC_MESSAGES/django.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: French \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "mot-clé :" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtre :" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "vue :" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "L'application %r n'a pas été trouvée" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" -"Le modèle %(model_name)r n'a pas été trouvé dans l'application %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "l'objet « %(app_label)s.%(data_type)s » en relation" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modèle :" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "les objets « %(app_label)s.%(object_name)s » en relation" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "tous les %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "nombre de %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Champs sur les objets %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ne semble pas être un objet urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Accueil" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentation" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Signets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Documentation des signets" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Pour installer des signets, faites glisser le lien vers " -"votre barre \n" -"de marques-pages, ou effectuez un clic droit dessus et ajoutez-le.\n" -"Maintenant, vous pouvez le sélectionner depuis n'importe quelle page\n" -"du site. Notez que certains d'entre eux nécessitent que vous visionniez\n" -"le site depuis un ordinateur dit « interne » (contactez votre administrateur\n" -"système si vous n'êtes pas sûr que votre ordinateur le soit).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentation pour cette page" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Vous envoie de n'importe quelle page vers la documentation de la vue qui a " -"généré cette page." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Afficher l'identifiant de l'objet" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Affiche le content-type et l'identifiant unique pour les pages qui " -"représentent un objet unique." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Modifier cet objet (fenêtre actuelle)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "Renvoie à la page d'administration qui représente un objet seul." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Modifier cet objet (nouvelle fenêtre)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" -"Comme ci-dessus, mais ouvre la page d'administration dans une nouvelle " -"fenêtre." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fy_NL/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/fy_NL/LC_MESSAGES/django.mo deleted file mode 100644 index 82784d752..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fy_NL/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fy_NL/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/fy_NL/LC_MESSAGES/django.po deleted file mode 100644 index bca5725cb..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/fy_NL/LC_MESSAGES/django.po +++ /dev/null @@ -1,135 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-15 15:27+0000\n" -"Last-Translator: Django team\n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: fy_NL\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo deleted file mode 100644 index f2e8fd179..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po deleted file mode 100644 index 9ed062b1c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ga/LC_MESSAGES/django.po +++ /dev/null @@ -1,151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Irish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ga\n" -"Plural-Forms: nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : " -"4)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "clib:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "scag:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "radharc:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Ní bhfuarthas feidhmchlár %r " - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Ní bhfuarthas samhail %(model_name)r i bhfeidhmclár %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "An oibiacht gaolmhara `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "samhail:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "Oibiachtí gaolmhara `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "gach %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "líon %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Réimse ar oibiachtí %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "Feiceann sé nach bhfuil %s oibiacht urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Baile" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Doiciméadúchán" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Leabharmharcín" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Leabharmharcín doiciméadúchán" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Chun leabharmarcín a suitéal, Tarraing an nasc go dtí do " -"barra uirlisí leabhairmairc\n" -", nó deaschliceáil and nasc agus cuir leis do leabharmairc. Anois is " -"féidir\n" -"leat an leabharmarcín a roghnaigh ón aon leathanach ar an suíomh. Bí " -"cúramach go dteastaíonn cuid de na leabharmarcín go bhfuil tú ag féachaint " -"ar an suíomh ó ríomhaire inmheánach\n" -"(leabhar le do riarthóir córais muna bhfuil tú cinnte).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Doiciméadúchán le hadhaigh an leathanach seo" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Tógann se tusa ón aon leathanach go dtí an doiciméadúchán le hadhaigh an " -"radharc a rinne an leathanach." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Taispéain oibiacht ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Taispéain an content-type agus ID uathúil le leathanaigh le hadhaigh " -"oibiacht amháin." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Cuir in eagar an oibiacht seo (fuinneog láthair)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Léimeann go dtí an leathanach riaracháin le leathainaigh le hadhaigh " -"oibiacht amháin." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Cuir in eagar an oibiacht seo (fuinneog nua)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Mar thuas, ach osclaíonn sé an leathanach riarachán if fuinneog nua" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo deleted file mode 100644 index 62ad1c16a..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po deleted file mode 100644 index 9eda8e95a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/gl/LC_MESSAGES/django.po +++ /dev/null @@ -1,147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:13-0400\n" -"PO-Revision-Date: 2011-03-08 18:57+0000\n" -"Last-Translator: fonso \n" -"Language-Team: Galician \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: gl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "etiqueta:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtro:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "vista:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Non se atopou a aplicación %r" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "O modelo %(model_name)r non se atopou na aplicación %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "o obxecto relacionado `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modelo:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "os obxectos relacionados `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "todos os %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "número de %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Campos dos obxectos %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s non semella ser un obxecto urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Inicio" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentación" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Bookmarklets de documentación" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Para instalar bookmarklets, arrastre a ligazón á súa\n" -"barra de favoritos ou marcadores, ou faga clic co botón dereito\n" -"e engádao aos marcadores. Agora pode usar o bookmarklet dende\n" -" calquera páxina do sitio web. Teña en conta que algúns destes\n" -"bookmarklets precisan que estea a visitar o sitio dende un ordenador\n" -"designado coma \"interno\" (fale co administrador do sistema se\n" -"non está seguro de que o seu ordenador é \"interno\" .

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentación para esta páxina" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "Salta á documentación para a vista que xera a páxina." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Amosar ID do obxecto" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Amosa o tipo de contido e a ID única para páxinas que representan un obxecto " -"determinado." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Editar este obxecto (nesta fiestra)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Salta á páxina de administración para páxina que representan un obxecto " -"determinado." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Editar este obxecto (nunha nova fiestra)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Como enriba, pero abre a páxina de administración nunha nova fiestra." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo deleted file mode 100644 index 33bf45d9d..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.po deleted file mode 100644 index fda253991..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/he/LC_MESSAGES/django.po +++ /dev/null @@ -1,142 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Hebrew <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: he\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "תג:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "סינון:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "×”Ö¾view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "×™×™×©×•× %r ×œ× × ×ž×¦×" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "מודל %(model_name)r ×œ× × ×ž×¦× ×‘×™×™×©×•× %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "×וביקטי `%(app_label)s.%(data_type)s` קשורי×" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "מודל:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "×ובייקטי `%(app_label)s.%(object_name)s` קשורי×" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "כל %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "מספר %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "שדות ב×ובייקטי %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "×œ× × ×¨××” ש-%s ×”×•× ×ובייקט urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "דף הבית" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "תיעוד" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "ייסומניות" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "ייסומוניות תיעוד" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              כדי להתקין ייסומניות, יש לגרור ×ת הקישור לסרגל הסימניות\n" -"שלך, ×ו קליק ימני והוספה לסימניות. כעת ניתן\n" -"לבחור ×ת הייסומניה מכל עמוד ב×תר. יש ×œ×©×™× ×œ×‘ ×›×™ חלק מהייסומניות\n" -"ניתנות לצפיה רק ממחשב שמסווג\n" -"×›\"פנימי\" (יש לדבר ×¢× ×ž× ×”×œ המערכת שלך ×× ×ינך בטוח/×”\n" -"שהמחשב מסווג ×›×›×–×”).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "תיעוד לדף ×–×”" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "מקפיץ ×ותך מכל עמוד לתיעוד התצוגה שייצרה ×ותו." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "הצג מזהה ×ובייקט" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "מציג ×ת סוג התוכן והמזהה הייחודי ×œ×¢×ž×•×“×™× ×”×ž×™×™×¦×’×™× ×ובייקט בודד." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "עריכת ×ובייקט ×–×” (בחלון הנוכחי)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "קופץ לעמוד הניהול ×œ×¢×ž×•×“×™× ×שר ×ž×™×™×¦×’×™× ××•×‘×™×™×§×˜×™× ×‘×•×“×“." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "עריכת ×ובייקט ×–×” (בחלון חדש)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "×›× \"ל, ×ך דף הניהול ייפתח בחלון חדש." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo deleted file mode 100644 index bf25b2d5a..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po deleted file mode 100644 index ca4a2d742..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hi/LC_MESSAGES/django.po +++ /dev/null @@ -1,135 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Hindi \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hi\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "टैग:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "छनà¥à¤¨à¥€:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "दृषà¥à¤Ÿà¤¿:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "%r अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— लापता है" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "%(model_name)r मॉडल %(app_label)r अनà¥à¤ªà¥à¤°à¤¯à¥‹à¤— में लापता है" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "`%(app_label)s.%(data_type)s` संबंधित वसà¥à¤¤à¥" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "मॉडल :" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "`%(app_label)s.%(object_name)s` संबंधित वसà¥à¤¤à¥" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "सभी %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s संखà¥à¤¯à¤¾" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s वसà¥à¤¤à¥ पर कà¥à¤·à¥‡à¤¤à¥à¤°" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s सही यू.आऱ.à¤à¤² पà¥à¤°à¤¤à¤¿à¤°à¥‚प वसà¥à¤¤à¥ नहीं है" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "गृह" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "दसà¥à¤¤à¤¾à¤µà¥‡à¤œà¤¼à¥€à¤•à¤°à¤£" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "बà¥à¤•à¤®à¤¾à¤°à¥à¤•à¤²à¥‡à¤Ÿà¥à¤¸" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "पà¥à¤°à¤²à¥‡à¤–न बà¥à¤•à¤®à¤¾à¤°à¥à¤•à¤²à¥‡à¤Ÿà¥à¤¸" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "इस पृषà¥à¤  की पà¥à¤°à¤²à¥‡à¤–न" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "वसà¥à¤¤à¥ आइ.डी दिखाओ" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "इस वसà¥à¤¤à¥ को संपादन करें (इस खिडकी में)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "इस वसà¥à¤¤à¥ को संपादन करें (नये खिडकी में)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo deleted file mode 100644 index 15c077426..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po deleted file mode 100644 index bc38831ab..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hr/LC_MESSAGES/django.po +++ /dev/null @@ -1,152 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:04+0100\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Croatian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hr\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" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "prikaz:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplikacija %r nije pronaÄ‘ena" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Model %(model_name)r nije pronaÄ‘en u aplikaciji %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "povezani `%(app_label)s.%(data_type)s` objekt" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "povezani `%(app_label)s.%(object_name)s` objekti" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "svi %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "broj %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Polja na %s objektima" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "izgleda da %s nije urlpattern objekt" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "PoÄetna" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentacija" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokumentacija bookmarklets-a" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Da bi instalirali bookmarklet, povucite link na svoj " -"bookmarks\n" -"toolbar, ili desnim klikom na link dodajte u svoje bookmarke. Sada možete\n" -"selektirati bookmarklet sa bilo koje stranice. Zapamtite da neki " -"bookmarkleti\n" -"zahtjevaju da gledate stranice sa raÄunala oznaÄenog\n" -"kao \"internal\" (razgovarajte sa svojim sistem administratorom ako niste " -"sigurni\n" -"je li vaÅ¡e raÄunalo \"internal\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentacija za ovu stranicu" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Preusmjeri te sa bilo koje stranice na dokumentaciju za taj prikaz (view) " -"koji generira stranicu." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Prikaži ID objekta" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Prikazuje tip sadržaja (content-type) i jedinstveni ID za stranice koje " -"predstavljaju pojedinaÄan objekt." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Uredi objekt (u trenutnom prozoru)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Preusmjeri na admin stranicu za stranice koje predstavljaju pojedinaÄan " -"objekt." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Uredi objekt (u novom prozoru)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Isto kao prethodno, ali otvara admin stranicu u novom prozoru." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo deleted file mode 100644 index b43f0be85..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po deleted file mode 100644 index 5b8446bbd..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/hu/LC_MESSAGES/django.po +++ /dev/null @@ -1,147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Hungarian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: hu\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "címke:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "szűrÅ‘:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "nézet:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "%r alkalmazás nem található" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" -"%(model_name)r modell nem található a következÅ‘ alkalmazásban: %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "a kapcsolódó '%(app_label)s.%(data_type)s' objektum" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modell:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "kapcsolódó '%(app_label)s.%(object_name)s' objektumok" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "minden %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s mennyisége" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "MezÅ‘k %s objektumokban" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s nem tűnik egy urlpattern objektumnak." - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "KezdÅ‘lap" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentáció" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "KönyvjelzÅ‘k" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokumentum könyvjelzÅ‘k" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              A könyvjelzők felvételéhez húzza a könyvjelzők linkjét az " -"eszköztárra, vagy kattintson rájuk jobb egérgombbal és úgy adja hozzá. " -"Ezután \n" -"már ki tudja választani a könyvjelzőt a honlap bármely oldaláról. A " -"könyvjelzők között néhány oldal csak \"belső\" gépekről nézhető meg.\n" -"(Kérdezze meg rendszergazdáját, hogy az Ön gépe \"belső\" gép-e.).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Az oldal dokumentációja" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Bármely oldalról annak a nézetnek a dokumentációjára ugrik, amely a kérdéses " -"oldalt generálta." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Az objektum ID mutatása" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Az objektum által reprezentált oldalak 'content-type' és 'unique ID' " -"értékeit mutatja." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Objektum szerkesztése (aktuális ablakban)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "Az objektumhoz tartozó oldalak adminisztrációjához ugrik." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Objektum szerkesztése (új ablakban)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Mint fentebb, de az adminisztrációs oldalt új ablakban nyitja meg." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo deleted file mode 100644 index 467b3680f..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.po deleted file mode 100644 index 91842fb60..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/id/LC_MESSAGES/django.po +++ /dev/null @@ -1,147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: rodin \n" -"Language-Team: Indonesian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: id\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplikasi %r tidak ditemukan" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Model %(model_name)r tidak ditemukan di aplikasi %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "objek `%(app_label)s.%(data_type)s` yang terkait" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "obyek `%(app_label)s.%(object_name)s` yang terkait" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "semua %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "jumlah %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Bidang dalam objek %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s bukan berupa objek urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Beranda" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentasi" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklet" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Bookmarklet dokumentasi" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Untuk memasang bookmarklet, seret tautan ini ke bilah\n" -"markah Anda atau klik kanan pada tautan tersebut kemudian tambahkan ke\n" -"markah Anda. Setelah itu Anda dapat memilih bookmarklet dari laman apapun\n" -"pada situs. Jangan lupa, beberapa bookmarklet ini hanya bisa digunakan\n" -"dari komputer yang terdaftar sebagai \"internal\" (hubungi administrator\n" -"sistem Anda apabila tidak yakin apakah komputer Anda termasuk komputer\n" -"\"internal\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentasi untuk laman ini" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Buka dari laman apa saja ke laman dokumentasi untuk view yang menghasilkan " -"laman tersebut." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Tampilkan ID objek" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Tampilkan tipe-konten dan ID unik untuk laman yang mewakili sebuah objek " -"tunggal." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Edit objek ini (pada jendela ini)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "Buka laman admin pada laman yang mewakili sebuah objek tunggal." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Edit objek ini (pada jendela baru)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Sama seperti di atas, tetapi laman halaman admin di jendela baru." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo deleted file mode 100644 index 52d3e4156..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.po deleted file mode 100644 index 50ad991f4..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/is/LC_MESSAGES/django.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Icelandic \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "merki:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "sía:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "skoða:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Forrit %r fannst ekki" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Líkanið %(model_name)r finnst ekki í forritinu %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "tengdi `%(app_label)s.%(data_type)s` hluturinn" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "líkan:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "tengdir `%(app_label)s.%(object_name)s` hlutir" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "allt %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "fjöldi af %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Svæði í %s hlutnum" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s virðist ekki vera urlpattern hlutur" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Heim" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Skjölun" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bókamerklar" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Skjölunarbókamerklar" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Til að setja upp bókamerkil (Bookmarklet) þarftu að draga " -"tengilinn\n" -"í bókamerkjareinina þína eða hægrismella á tengilinn og bæta honum við " -"bókamerkin þín\n" -"Nú getur þú notað bókamerkilinn frá hvaða síðu sem er innan vefjarins. " -"Athugaðu að sumir\n" -"þessara bókamerkla krefjast þess að þú sért að skoða vefinn frá tölvu sem " -"er\n" -"skráð sem \"internal\" (hafðu samband við kerfisstjórann ef þú ert óviss " -"hvort tölvan þín er \"internal\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Skjölun þessarar síðu" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Sendir þig af hvaða síðu sem er á skjölun þess framsetningarlags sem myndar " -"hana." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Sýna kenni hlutar" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "Sýnir efnistag og sérkenni síða sem gefa tiltekna mynd af stökum hlut." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Breyta þessum hlut (í þessum glugga)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Stekkur á stjórnunarsíðuna fyrir þær síður sem gefa tiltekna mynd af stökum " -"hlut." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Breyta þessum hlut (nýr gluggi)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Eins og að ofan en opnar stjórnunarsíðuna í nýjum glugga." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo deleted file mode 100644 index b20e0a15d..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.po deleted file mode 100644 index 1efbb9296..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/it/LC_MESSAGES/django.po +++ /dev/null @@ -1,152 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-08 17:16+0000\n" -"Last-Translator: teknico \n" -"Language-Team: Italian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: it\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtro:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Appl. %r non trovata" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Modello %(model_name)r non trovato nell'appl. %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "l'oggetto `%(app_label)s.%(data_type)s` collegato" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modello:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "oggetti `%(app_label)s.%(object_name)s` collegati" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "tutti %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "numero di %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Campi sugli oggetti %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s non sembra essere un oggetto urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Pagina iniziale" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentazione" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklet" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Bookmarklet alla documentazione" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Per installare i bookmarklet, trascina il link sulla " -"barra \n" -"dei bookmark, o clicca il link con il tasto destro e aggiungilo ai " -"bookmark.\n" -"Potrai poi scegliere un bookmarklet in qualsiasi pagina del sito.\n" -"Nota che alcuni di questi bookmarklet richiedono l'accesso al sito tramite " -"un\n" -"computer designato come \"interno\" (chiedi al tuo amministratore di \n" -"sistema se non sei sicuro che il tuo computer sia \"interno\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentazione per questa pagina" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Porta da qualsiasi pagina alla documentazione della view che genera quella " -"pagina." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Mostra l'ID dell'oggetto" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Mostra il content-type e l'ID univoco di pagine che rappresentano un singolo " -"oggetto." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Modifica quest'oggetto (nella finestra attuale)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Porta alla pagina amministrativa di pagine che rappresentano un singolo " -"oggetto." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Modifica quest'oggetto (in una nuova finestra)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" -"Come sopra, ma apre la pagina di amministrazione in una nuova finestra." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo deleted file mode 100644 index a3bffa4a7..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po deleted file mode 100644 index a00ad5784..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ja/LC_MESSAGES/django.po +++ /dev/null @@ -1,146 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Japanese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ja\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "ã‚¿ã‚°" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "フィルタ" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "ビュー" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "アプリケーション %r ãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" -"モデル %(model_name)r ㌠%(app_label)r アプリケーションã«è¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "`%(app_label)s.%(data_type)s` (関連オブジェクト)" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "モデル :" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "`%(app_label)s.%(object_name)s` (関連オブジェクト)" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "å…¨ã¦ã® %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s ã®æ•°" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s ã®ãƒ•ã‚£ãƒ¼ãƒ«ãƒ‰" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ã¯urlpatternオブジェクトã§ã¯ç„¡ã„よã†ã§ã™" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "ホーム" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "ドキュメント" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "ブックマークレット" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "ドキュメントã¸ã®ãƒ–ックマークレット" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              ブックマークレットをインストールã™ã‚‹ã«ã¯ã€ãƒªãƒ³ã‚¯ã‚’ブック" -"マークツールãƒãƒ¼ã«ãƒ‰ãƒ©ãƒƒã‚°ã™ã‚‹ã‹ã€\n" -"リンクをå³ã‚¯ãƒªãƒƒã‚¯ã—ã¦ãƒ–ックマークã«è¿½åŠ ã—ã¦ãã ã•ã„。ã“ã‚Œã§\n" -"サイトã®ã©ã®ãƒšãƒ¼ã‚¸ã‹ã‚‰ã§ã‚‚ブックマークレットをé¸æŠžå¯èƒ½ã«ãªã‚Šã¾ã—ãŸã€‚\n" -"ブックマークレットã«ã‚ˆã£ã¦ã¯ã€å†…部ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã«ã‚るコンピュータã‹ã‚‰ã“ã®ã‚µã‚¤" -"トを\n" -"å‚ç…§ã—ã¦ã„ãªã‘ã‚Œã°ãªã‚‰ãªã„ã“ã¨ãŒã‚ã‚Šã¾ã™ã€‚内部ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã«ã‚ã‚‹ã‹ã©ã†ã‹ä¸æ˜Ž" -"ãªå ´åˆã¯ã€ã‚·ã‚¹ãƒ†ãƒ ç®¡ç†è€…ã«ç¢ºèªã—ã¦ãã ã•ã„。

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "ã“ã®ãƒšãƒ¼ã‚¸ã®ãƒ‰ã‚­ãƒ¥ãƒ¡ãƒ³ãƒˆ" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "å„ページã‹ã‚‰ã€ãƒšãƒ¼ã‚¸ã‚’生æˆã—ãŸãƒ“ューã®ãƒ‰ã‚­ãƒ¥ãƒ¡ãƒ³ãƒˆã«ã‚¸ãƒ£ãƒ³ãƒ—ã—ã¾ã™ã€‚" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "オブジェクト ID を表示" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"å˜ä¸€ã®ã‚ªãƒ–ジェクトを表示ã™ã‚‹ãƒšãƒ¼ã‚¸ã®ã‚³ãƒ³ãƒ†ãƒ³ãƒ„タイプã¨ä¸€æ„㪠IDを表示ã—ã¾ã™ã€‚" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "オブジェクトを (ç¾åœ¨ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã§) 編集" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "å˜ä¸€ã®ã‚ªãƒ–ジェクトを表示ã™ã‚‹ãƒšãƒ¼ã‚¸ã®ç®¡ç†ãƒšãƒ¼ã‚¸ã¸ã‚¸ãƒ£ãƒ³ãƒ—ã—ã¾ã™ã€‚" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "オブジェクトを (æ–°ã—ã„ウィンドウã§) 編集" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "上ã¨åŒã˜ã§ã™ãŒã€æ–°ã—ã„ウィンドウã§ç®¡ç†ãƒšãƒ¼ã‚¸ã‚’é–‹ãã¾ã™ã€‚" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo deleted file mode 100644 index 29c3ec75f..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po deleted file mode 100644 index 2e8cc5d05..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ka/LC_MESSAGES/django.po +++ /dev/null @@ -1,147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Georgian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ka\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "ტეგი:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "ფილტრი:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "წáƒáƒ áƒ›áƒáƒ“გენáƒ:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "áƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒ %r ვერ მáƒáƒ˜áƒ«áƒ”ბნáƒ" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "მáƒáƒ“ელი %(model_name)r ვერ მáƒáƒ˜áƒ«áƒ”ბნრáƒáƒžáƒšáƒ˜áƒ™áƒáƒªáƒ˜áƒáƒ¨áƒ˜ %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "`%(app_label)s.%(data_type)s` დáƒáƒ™áƒáƒ•áƒ¨áƒ˜áƒ áƒ”ბული áƒáƒ‘იექტი" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "მáƒáƒ“ელი:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "`%(app_label)s.%(object_name)s` დáƒáƒ™áƒáƒ•áƒ¨áƒ˜áƒ áƒ”ბული áƒáƒ‘იექტები" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "ყველრ%s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s - რáƒáƒáƒ“ენáƒáƒ‘áƒ" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s áƒáƒ‘იექტების ველები" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s áƒáƒ  áƒáƒ áƒ˜áƒ¡ urlpattern-ის შესáƒáƒ‘áƒáƒ›áƒ˜áƒ¡áƒ˜ áƒáƒ‘იექტი" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "სáƒáƒ¬áƒ§áƒ˜áƒ¡áƒ˜ გვერდი" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "დáƒáƒ™áƒ£áƒ›áƒ”ნტáƒáƒªáƒ˜áƒ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "სáƒáƒœáƒ˜áƒ¨áƒœáƒ”ბი" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "დáƒáƒ™áƒ£áƒ›áƒ”ნტáƒáƒªáƒ˜áƒ˜áƒ¡ სáƒáƒœáƒ˜áƒ¨áƒœáƒ”ბი" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              სáƒáƒœáƒ˜áƒ¨áƒœáƒ”ბის დáƒáƒ¡áƒáƒ§áƒ”ნებლáƒáƒ“ გáƒáƒ“áƒáƒáƒ—რიეთ ბმული თქვენი " -"სáƒáƒœáƒ˜áƒ¨áƒœáƒ”ბის\n" -"პáƒáƒœáƒ”ლზე, áƒáƒœ დáƒáƒáƒ¬áƒ™áƒáƒžáƒ”თ ბმულზე მáƒáƒ áƒ¯áƒ•áƒ”ნრღილáƒáƒ™áƒ˜áƒ— დრდáƒáƒáƒ›áƒáƒ¢áƒ”თ იგი სáƒáƒœáƒ˜áƒ¨áƒœáƒ”ბში.\n" -"áƒáƒ›áƒ˜áƒ¡ შემდეგ თქვენ შეძლებთ სáƒáƒœáƒ˜áƒ¨áƒœáƒ˜áƒ¡ áƒáƒ áƒ©áƒ”ვáƒáƒ¡ სáƒáƒ˜áƒ¢áƒ˜áƒ¡ ნებისმიერი გვერდიდáƒáƒœ.\n" -"გáƒáƒ˜áƒ—ვáƒáƒšáƒ˜áƒ¡áƒ¬áƒ˜áƒœáƒ”თ, რáƒáƒ› ზáƒáƒ’იერთი სáƒáƒœáƒ˜áƒ¨áƒœáƒ˜áƒ¡ მáƒáƒ®áƒ›áƒáƒ áƒ”ბისáƒáƒ—ვის სáƒáƒ­áƒ˜áƒ áƒáƒ, რáƒáƒ› თქვენ\n" -"იყáƒáƒ— შესული áƒáƒ› სáƒáƒ˜áƒ¢áƒ–ე ე.წ. \"შიდáƒ\" კáƒáƒ›áƒžáƒ˜áƒ£áƒ¢áƒ”რიდáƒáƒœ (შეუთáƒáƒœáƒ®áƒ›áƒ“ით თქვენს\n" -"áƒáƒ“მინისტრáƒáƒ¢áƒáƒ áƒ¡, თუ áƒáƒ  ხáƒáƒ áƒ— დáƒáƒ áƒ¬áƒ›áƒ£áƒœáƒ”ბული, რáƒáƒ› თქვენი კáƒáƒ›áƒžáƒ˜áƒ£áƒ¢áƒ”რი áƒáƒ áƒ˜áƒ¡\n" -"\"შიდáƒ\" კáƒáƒ›áƒžáƒ˜áƒ£áƒ¢áƒ”რი).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "áƒáƒ› გვერდის დáƒáƒ™áƒ£áƒ›áƒ”ნტáƒáƒªáƒ˜áƒ" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"გáƒáƒ“áƒáƒ¡áƒ•áƒšáƒ ნებისმიერი გვერდიდáƒáƒœ იმ წáƒáƒ áƒ›áƒáƒ“გენის დáƒáƒ™áƒ£áƒ›áƒ”ნტáƒáƒªáƒ˜áƒáƒ–ე, რáƒáƒ›áƒ”ლიც áƒáƒ› " -"გვერდს áƒáƒ’ენერირებს." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "áƒáƒ‘იექტის ID-ის ჩვენებáƒ" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"ერთი áƒáƒ‘იექტის áƒáƒ›áƒ¡áƒáƒ®áƒ•áƒ”ლი გვერდის content-type-ის დრუნიკáƒáƒšáƒ£áƒ áƒ˜ ID-ის ჩვენებáƒ." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "შევცვáƒáƒšáƒáƒ— ეს áƒáƒ‘იექტი (იმáƒáƒ•áƒ” ფáƒáƒœáƒ¯áƒáƒ áƒáƒ¨áƒ˜)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "ერთი áƒáƒ‘იექტის áƒáƒ›áƒ¡áƒáƒ®áƒ•áƒ”ლი გვერდების áƒáƒ“მინისტრირებáƒáƒ–ე გáƒáƒ“áƒáƒ¡áƒ•áƒšáƒ." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "შევცვáƒáƒšáƒáƒ— ეს áƒáƒ‘იექტი (áƒáƒ®áƒáƒš ფáƒáƒœáƒ¯áƒáƒ áƒáƒ¨áƒ˜)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "იგივე, áƒáƒ¦áƒáƒœáƒ“ ხსნის áƒáƒ“მინისტრირების გვერდს áƒáƒ®áƒáƒš ფáƒáƒœáƒ¯áƒáƒ áƒáƒ¨áƒ˜." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo deleted file mode 100644 index 7387fbcc6..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.po deleted file mode 100644 index 0fce3e72a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/km/LC_MESSAGES/django.po +++ /dev/null @@ -1,142 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: English \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: km\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "ប្រភáŸáž‘:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "ពាក្យស្វែងរក" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "មើល" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "ស្វែងរក App %r មិនឃើញ ។" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "ទាំងអស់ %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "ចំនួន​នៃ​%s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "ទិន្ននáŸáž™áž¢áŸ†áž–ី %s កម្មវិធី" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ហាក់បីដូចជា URL ដែល​ážáŸ’រឹមážáŸ’រូវទáŸ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "áž‚áŸáž áž‘ំពáŸážš" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "ឯកសារ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "កំរងចំណាំ" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "កំរងចំណាំអំពីឯកសារ" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              ដើម្បីážáŸ†áž›áž¾áž„កំរងចំណាំ សូមទាញយកអážáŸ’ážáž”ទភ្ជាប់ទៅ​កាន់​" -"របាឧបករណáŸÂ áž¬áž€áŸáž…ុចážáž¶áž„ស្ážáž¶áŸ†áž›áž¾áž¢ážáŸ’ážáž”ទភ្ជាប់ហើយ​បញ្ជូលទៅក្នុងកំរងចំណាំរបស់លោកអ្នក។

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "ឯកសារសំរាប់ទំពáŸážšáž“áŸáŸ‡" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Jumps you from any page to the documentation for the view that generates " -"that page." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "បង្ហាញលáŸážážŸáŸ†áž‚ាល់កម្មវិធី" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Shows the content-type and unique ID for pages that represent a single " -"object." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "កែប្រែកម្មវិធីនáŸáŸ‡(វីនដូវកំពុងប្រើ)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "បង្វែរទៅកាន់​ ទំពáŸážšáž‚្រប់គ្រង សំរាប់ទំពáŸážšážŽáž¶ážŠáŸ‚áž›ážáŸ†ážŽáž¶áž„អោយកម្មវិធីážáŸ‚មួយ។" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "កែប្រែកម្មវិធីនáŸáŸ‡(វីនដូវážáŸ’មី)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "ដូចážáž¶áž„លើ ážáŸ‚បើកនៅទំពáŸážšážœáž¸áž“ដូវážáŸ’មី" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo deleted file mode 100644 index 75f4b565f..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po deleted file mode 100644 index 4417194c8..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/kn/LC_MESSAGES/django.po +++ /dev/null @@ -1,146 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Kannada \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: kn\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "ಟà³à²¯à²¾à²—à³:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "ಸೋಸಕ:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "ನೋಟ:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "%r ಅನà³à²µà²¯à²¾à²‚ಶ ಸಿಗಲಿಲà³à²²" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "ಮಾಡೆಲà³:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "ಎಲà³à²²à²¾ %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s ಗಳ ಸಂಖà³à²¯à³†" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s ವಸà³à²¤à³à²—ಳ ಅಂಶಗಳà³" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s URL ಸà³à²µà²°à³‚ಪದà³à²¦à²¾à²—ಿ ತೋರà³à²µà²¦à²¿à²²à³à²²." - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "ಪà³à²°à²¾à²°à²‚ಭಸà³à²¥à²³(ಮನೆ)" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "ವಿವರಮಾಹಿತಿ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "ಚಿಕà³à²• ಪà³à²Ÿà²—à³à²°à³à²¤à³à²—ಳà³" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "ಮಾಹಿತಿಯ ಚಿಕà³à²• ಪà³à²Ÿà²—à³à²°à³à²¤à³à²—ಳà³" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              ಸಣà³à²£à³à²ªà³à²Ÿà²—à³à²°à³à²¤à³à²—ಳನà³à²¨à³ ಅನà³à²¸à³à²¥à²¾à²ªà²¿à²¸à²²à³ ಕೊಂಡಿಯನà³à²¨à³ ಪà³à²Ÿà²—à³à²°à³à²¤à³ ಉಪಕರಣಪಟà³à²Ÿà²¿" -"(ಟೂಲೠಬಾರà³)ಕಡೆಗೆ ಎಳೆದೊಯà³à²¯à²¿à²°à²¿,\n" -" ಅಥವಾ ಕೊಂಡಿಯ ಮೇಲೆ ಮೂಷಿಕ(ಮೌಸà³)ದ ಬಲಬಟನà³à²¨à²¨à³à²¨à³ ಒತà³à²¤à²¿ ಪà³à²Ÿà²—à³à²°à³à²¤à³à²—ಳಿಗೆ ಸೇರಿಸಿಕೊಳà³à²³à²¿. ಈಗ \n" -" ನೀವೠಸಣà³à²£à²ªà³à²Ÿà²—à³à²°à³à²¤à³à²—ಳನà³à²¨à³ ತಾಣದ ಯಾವ ಪà³à²Ÿà²¦à²¿à²‚ದ ಬೇಕಾದರೂ ಆಯà³à²•à³†à²®à²¾à²¡à²¿à²•à³Šà²³à³à²³à²¬à²¹à³à²¦à³.\n" -"ನೆನಪಿರಲಿ, ಕೆಲವೠಸಣà³à²£à²ªà³à²Ÿà²—à³à²°à³à²¤à³à²—ಳಿಗೆ ನೀವೠಈ ತಾಣವನà³à²¨à³ ಆಂತರಿಕ (\"internal\") ಎಂದೠ" -"ಸೂಚಿತವಾಗಿರà³à²µ ಗಣಕದಿಂದ ವೀಕà³à²·à²¿à²¸à²¬à³‡à²•à²¾à²—à³à²¤à³à²¤à²¦à³†.\n" -"( ನಿಮà³à²® ಗಣಕವೠ\"internal\" ಹೌದೇ ಅಲà³à²²à²µà³‡ ಎಂದೠಗೊತà³à²¤à²¿à²²à³à²²à²¦à²¿à²¦à³à²¦à²°à³† , ಗಣಕದ ಆಡಳಿತಗಾರರನà³à²¨à³ " -"ಕೇಳಿರಿ).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "ಈ ಪà³à²Ÿà²¦ ಬಗೆಗಿನ ಮಾಹಿತಿ" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"ನಿಮà³à²®à²¨à³à²¨à³ ಯಾವà³à²¦à³‡ ಪà³à²Ÿà²¦à²¿à²‚ದ ಆ ಪà³à²Ÿà²µà²¨à³à²¨à³ ಸೃಷà³à²Ÿà²¿à²¸à³à²µ ನೋಟದ ಮಾಹಿತಿಪà³à²Ÿà²•à³à²•à³† ಕೊಂಡೊಯà³à²¯à³à²µà²¦à³" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "ವಸà³à²¤à³à²µà²¿à²¨ à²à²¡à²¿ ತೋರಿಸಿ" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"à²à²•à³ˆà²• ವಸà³à²¤à³à²µà²¨à³à²¨à³ ಪà³à²°à²¤à²¿à²¨à²¿à²§à²¿à²¸à³à²µ ಪà³à²Ÿà²—ಳ ವಿಶಿಷà³à²  à²à²¡à²¿ ಮತà³à²¤à³ ಒಳವಿಷಯಬಗೆಯನà³à²¨à³ ತೋರಿಸà³à²¤à³à²¤à²¦à³†." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "ಈ ವಸà³à²¤à³à²µà²¨à³à²¨à³ ಬದಲಿಸಿ(ಈಗಿನ ಕಿಟಕಿಯಲà³à²²à²¿)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "à²à²•à³ˆà²• ವಸà³à²¤à³à²µà²¨à³à²¨à³ ಪà³à²°à²¤à²¿à²¨à²¿à²§à²¿à²¸à³à²µ ಪà³à²Ÿà²—ಳಿಗಾಗಿ ಆಡಳಿತಪà³à²Ÿà²•à³à²•à³† ಒಯà³à²¯à³à²¤à³à²¤à²¦à³†" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "ಈ ವಸà³à²¤à³à²µà²¨à³à²¨à³ ಬದಲಿಸಿ(ಹೊಸ ಕಿಟಕಿಯಲà³à²²à²¿)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "ಮೇಲಿನಂತೆ, ಆದರೆ ಆಡಳಿತಪà³à²Ÿà²µà²¨à³à²¨à³ ಹೊಸ ಕಿಟಕಿಯಲà³à²²à²¿ ತೆರೆಯà³à²µà²¦à³." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo deleted file mode 100644 index d6ec7e8ef..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po deleted file mode 100644 index 97afc0683..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ko/LC_MESSAGES/django.po +++ /dev/null @@ -1,144 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Korean \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ko\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "태그:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "í•„í„°:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "ë·°:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "어플리케ì´ì…˜ %r (ì´)ê°€ 없습니다." - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "ëª¨ë¸ %(model_name)r (ì´)ê°€ 어플리케ì´ì…˜ %(app_label)r ì— ì—†ìŠµë‹ˆë‹¤." - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "`%(app_label)s.%(data_type)s` 관련 오브ì íŠ¸" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "모ë¸:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "`%(app_label)s.%(object_name)s` 관련 오브ì íŠ¸(들)" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "모든 %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s ì˜ ìˆ˜" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s 오브ì íŠ¸ì˜ í•„ë“œ" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s (ì€)는 url íŒ¨í„´ì˜ ì˜¤ë¸Œì íŠ¸ê°€ 아닙니다." - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "홈" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "문서" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "ë¶ë§ˆí¬ë¦¿" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "문서 ë¶ë§ˆí¬ë¦¿" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              ë¶ë§ˆí¬ë¦¿ì„ 설치하시려면 ë§í¬ë¥¼ ë¶ë§ˆí¬ 툴바로 드래그 하거" -"나,\n" -"오른쪽 í´ë¦­ìœ¼ë¡œ 해당 ë§í¬ë¥¼ ë¶ë§ˆí¬ì— 추가하세요.\n" -"ì´ì œ 사ì´íŠ¸ ë‚´ì˜ ëª¨ë“  페ì´ì§€ì—ì„œ ë¶ë§ˆí¬ë¦¿ ì„ íƒì´ 가능합니다.\n" -"ë¶ë§ˆí¬ë¦¿ì— ë”°ë¼ ë‚´ë¶€ ë„¤íŠ¸ì›Œí¬ ìƒì˜ 컴퓨터로부터 ì´ ì‚¬ì´íŠ¸ë¥¼ 참조해야하는 경우" -"ê°€ 있습니다.\n" -"(내부 네트워í¬ê°€ 있는지 불명확한 경우 시스템 관리ìžì—게 확ì¸í•˜ì‹œê¸° ë°”ëžë‹ˆë‹¤.)" -"

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "ì´ íŽ˜ì´ì§€ì˜ 문서" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "ê° íŽ˜ì´ì§€ë¡œì—ì„œ 해당 페ì´ì§€ë¥¼ ìƒì„±í•œ ë·°ì˜ ë¬¸ì„œë¡œ 갑니다." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "오브ì íŠ¸ ì•„ì´ë”” 표시" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "ë‹¨ì¼ ì˜¤ë¸Œì íŠ¸ 페ì´ì§€ì˜ 고유 ì•„ì´ë””와 컨í…츠 íƒ€ìž…ì„ í‘œì‹œí•©ë‹ˆë‹¤." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "오브ì íŠ¸ 편집(현재 ì°½)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "ë‹¨ì¼ ì˜¤ë¸Œì íŠ¸ 페ì´ì§€ì˜ 관리 페ì´ì§€ë¡œ ì´ë™" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "오브ì íŠ¸ 편집(새로운 ì°½)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "위와 ë™ì¼í•˜ë©°, 새로운 ì°½ì—ì„œ 관리 페ì´ì§€ë¥¼ 엽니다." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo deleted file mode 100644 index 6d27e51ff..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po deleted file mode 100644 index 2723dafb6..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/lt/LC_MESSAGES/django.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-06 09:22+0000\n" -"Last-Translator: lauris \n" -"Language-Team: Lithuanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lt\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%" -"100<10 || n%100>=20) ? 1 : 2)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "žyme:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtras:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "vaizdas:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Programa %r nerasta" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Modelis %(model_name)r programoje %(app_label)r nerastas" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "susijÄ™s `%(app_label)s.%(data_type)s` objektas" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modelis:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "susijÄ™`%(app_label)s.%(object_name)s` objektai" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "visi %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s skaiÄius" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Objekto %s laukai" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s neatrodo kaip urlpattern objektas" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Pradinis" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentacija" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Greitosios žymÄ—s" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Doumentacijos greitosios žymÄ—s" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Greitųjų žymių įdiegimui, nutempkite nuorodą į greitųjų " -"žymių\n" -"juostą, arba spauskite dešinį pelės klavišą ir pridėkite prie greitųjų " -"žymių. Dabar galite\n" -"pasirinkti greitąją žymę iš bet kurio saito puslapio. Pastebėjimas, kad " -"keletas iš šių\n" -"greitųjų žymių reikalauja, kad saitas būtų žiūrimas iš vidinio kompiuterio \n" -"(pasitarkite su administratorium, jei nežinai ar tavo kompiuteris yra " -"vidinis).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Å io puslapio dokumentacija" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Pereina iÅ¡ bet kurio puslapio į jo view funkcijos dokumentacijÄ…, kuri " -"sukÅ«ria tÄ… puslapį" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Parodyti objekto ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Parodyti content-type ir unikalų puslapių ID, kuris parodo vienÄ… objektÄ…." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Redaguoti šį objektÄ… (einamajame lange)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "Pereina į administravimo puslapį, kuris parodo vienÄ… objektÄ…." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Redaguoti šį objektÄ… (naujame lange)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Kaip ir virÅ¡uje, bet administravimo puslapį atidaro naujame lange." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo deleted file mode 100644 index 9531a4dc1..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po deleted file mode 100644 index 289ab95f7..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/lv/LC_MESSAGES/django.po +++ /dev/null @@ -1,147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Latvian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: lv\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " -"2)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tags:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtrs:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "skats:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Lietotne %r netika atrasta" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Modelis %(model_name)r lietotnÄ“ %(app_label)r nav atrasts" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "saistÄ«tais `%(app_label)s.%(data_type)s` objekts" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modelis:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "saistÄ«tie `%(app_label)s.%(object_name)s` objekti" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "visi %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s skaits" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Lauki %s objektiem" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s nav urlpattern objekts" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "SÄkums" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "DokumentÄcija" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "GrÄmatzÄ«mes" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "DokumentÄcijas grÄmatzÄ«mes" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Lai uzstÄdÄ«tu grÄmatzÄ«mes, aizvelciet saiti uz pÄrlÅ«ka " -"grÄmatzÄ«mju\n" -"rÄ«kjoslu vai arÄ« veiciet labo klikÅ¡Ä·i un pievienojiet to savÄm grÄmatzÄ«mÄ“m. " -"Tagad varat \n" -"izvÄ“lÄ“ties grÄmatzÄ«mi no jebkuras lapas Å¡ajÄ mÄjaslapÄ. IevÄ“rojiet, ka, lai " -"lietotu dažas no Å¡Ä«m\n" -"grÄmatzÄ«mÄ“m, jums jÄlieto dators, kura IP adrese reÄ£istrÄ“ta kÄ \"iekÅ¡Ä“ja\"\n" -"(ja ir neskaidrÄ«bas, vai dators ir \"iekÅ¡Ä“jais\", runÄjiet ar sistÄ“mas " -"administratoru).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "DokumentÄcija Å¡ai lapai" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"PÄrvieto no jebkuras lapas uz tÄ skata dokumentÄciju, kas Ä£enerÄ“ Å¡o lapu." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "ParÄdÄ«t objekta ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "ParÄda content-type un unikÄlo ID lapÄm, kas atbilst vienam objektam." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Labot Å¡o objektu (paÅ¡reizÄ“jÄ logÄ)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "PÄrvieto uz admininstrÄcijas lapu tÄm lapÄm, kas attÄ“lo vienu objektu." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Labot Å¡o objektu (jaunÄ logÄ)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "TÄpat kÄ augstÄk, tikai atver administrÄcijas lapu jaunÄ logÄ." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo deleted file mode 100644 index 1f308c9e4..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po deleted file mode 100644 index db55654ec..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/mk/LC_MESSAGES/django.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Macedonian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mk\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "таг:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "филтер:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "поглед:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Ðе е најдена апликацијата %r" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Моделот %(model_name)r не е најден во апликацијата %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "поврзаниот `%(app_label)s.%(data_type)s` објект" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "модел:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "поврзани `%(app_label)s.%(object_name)s` објекти" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "Ñите %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "број на %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Полиња на %s објекти" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s не изгледа дека е url објект" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Дома" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Документација" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Обележувачи" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Обележувачи на документација" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              За да инÑталирате обележувачи, влечете ја врÑката до " -"вашата\n" -"лента Ñо алатки, или кликнете Ñо деÑното копче и додадете го во вашите \n" -"обележувачи. Сега може да го изберете обележувачот од било која Ñтраница " -"на \n" -"Ñајтот. Имајте на ум дека за некои од овие обележувачи е потребно да го " -"гледате \n" -"Ñајтот од компјутер кој е означен како „внатрешен“ (разговарајте Ñо вашиот \n" -"админиÑтратор ако не Ñте Ñигурни).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Документација за оваа Ñтраница" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Ве ноÑи од било која Ñтраница од документацијата до погледот кој ја генерира " -"таа Ñтраница." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Прикажи идентификационен број на објектот" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Го прикажува типот на Ñодржината и уникатниот идентификационен број за " -"Ñтраници кои претÑтавуваат единечен објект." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Уреди го овој објект (во овој прозорец)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Скокнува до админ Ñтраницата за Ñтраници кои претÑтавуваат единечен објект." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Уреди го овој објект (во нов прозорец)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Како погоре, но ја отвара админ Ñтраницата во нов прозорец." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo deleted file mode 100644 index 75b18ca04..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po deleted file mode 100644 index 3a200c674..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ml/LC_MESSAGES/django.po +++ /dev/null @@ -1,145 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Malayalam \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ml\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "ടാഗàµ:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "à´…à´°à´¿à´ªàµà´ª:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "à´µàµà´¯àµ‚" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "%r à´Žà´¨àµà´¨ App à´•à´£àµà´Ÿà´¿à´²àµà´²." - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "%(app_label)r à´Žà´¨àµà´¨ Appà´²àµâ€ %(model_name)r à´Žà´¨àµà´¨ മാതàµà´°àµà´• à´•à´£àµà´Ÿà´¿à´²àµà´²." - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "ബനàµà´§à´ªàµà´ªàµ†à´Ÿàµà´Ÿ `%(app_label)s.%(data_type)s` വസàµà´¤àµ" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "മാതàµà´°àµà´•:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "ബനàµà´§à´ªàµà´ªàµ†à´Ÿàµà´Ÿ `%(app_label)s.%(object_name)s` വസàµà´¤àµà´•àµà´•à´³àµâ€" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "%s à´Žà´²àµà´²à´¾à´‚" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%sà´¨àµà´±àµ† à´Žà´£àµà´£à´‚" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s വസàµà´¤àµà´•àµà´•à´³à´¿à´²àµ† വിവരങàµà´™à´³àµâ€" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s വിലാസ മാതàµà´°àµà´• (urlpattern object) ആണെനàµà´¨àµ തോനàµà´¨àµà´¨àµà´¨à´¿à´²àµà´²." - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "പൂമàµà´–à´‚" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "സഹായകàµà´•àµà´±à´¿à´ªàµà´ªàµà´•à´³àµâ€" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "à´¬àµà´•àµà´•àµ മാരàµâ€à´•àµà´•àµà´•à´³àµâ€" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "സഹായകàµà´•àµà´±à´¿à´ªàµà´ªàµà´•à´³àµà´Ÿàµ† à´¬àµà´•àµà´•àµà´®à´¾à´°àµâ€à´•àµà´•àµà´•à´³àµâ€" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              à´¬àµà´•àµà´•àµà´®à´¾à´°àµâ€à´•àµà´•àµà´²àµ†à´±àµà´±àµà´•à´³àµâ€ ഇനàµâ€à´¸àµà´±àµà´±à´¾à´³àµâ€ ചെയàµà´¯à´¾à´¨àµâ€, ലിങàµà´•à´¿à´¨àµ† നിങàµà´™à´³àµà´Ÿàµ† à´¬àµà´•àµà´•àµà´®à´¾à´°àµâ€à´•àµ " -"ടൂളàµâ€à´¬à´¾à´±à´¿à´²àµ‡à´•àµà´•àµ \n" -"വലിചàµà´šà´¿à´Ÿàµà´•à´¯àµ‹, ലിങàµà´•à´¿à´¨àµâ€à´®àµ‡à´²àµâ€ റൈറàµà´±àµà´•àµà´³à´¿à´•àµ ചെയàµà´¤àµ à´¬àµà´•àµà´•àµà´®à´¾à´°àµâ€à´•àµà´•à´¾à´¯à´¿ ചേരàµâ€à´•àµà´•àµà´•à´¯àµ‹ ചെയàµà´¯àµà´•. ഇനി സൈറàµà´±à´¿à´²àµ† " -"à´à´¤àµ പേജിലàµâ€ നിനàµà´¨àµà´‚\n" -" à´ˆ à´¬àµà´•àµà´•àµà´®à´¾à´°àµà´•àµ തെരഞàµà´žàµ†à´Ÿàµà´•àµà´•à´¾à´‚. à´šà´¿à´² à´¬àµà´•àµà´•àµà´®à´¾à´°àµâ€à´•àµà´•àµà´•à´³àµâ€ ഇനàµà´±àµ‡à´£à´²àµâ€ ആയ à´•à´®àµà´ªàµà´¯àµ‚à´Ÿàµà´Ÿà´±à´¿à´²àµâ€ നിനàµà´¨àµ‡ ലഭàµà´¯à´®à´¾à´µàµ‚ à´Žà´¨àµà´¨àµ " -"à´¶àµà´°à´¦àµà´§à´¿à´•àµà´•à´£à´‚.\n" -"നിങàµà´™à´³àµà´Ÿàµ† à´•à´‚à´ªàµà´¯àµ‚à´Ÿàµà´Ÿà´°àµâ€ à´…à´¤àµà´¤à´°à´¤àµà´¤à´¿à´²àµâ€ പെടàµà´Ÿà´¤à´¾à´£àµ‹ à´Žà´¨àµà´¨à´±à´¿à´¯à´¾à´¨àµâ€ സിസàµà´±àµà´±à´‚ à´…à´¡àµà´®à´¿à´¨à´¿à´¸àµà´Ÿàµà´°àµ‡à´Ÿàµà´Ÿà´±àµ† ബനàµà´§à´ªàµà´ªàµ†à´Ÿàµà´•.\n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "à´ˆ പേജിനàµà´±àµ† സഹായകàµà´•àµà´±à´¿à´ªàµà´ªàµà´•à´³àµâ€" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "à´à´¤àµ പേജിലàµâ€ നിനàµà´¨àµà´‚ അതിനàµà´±àµ† ഉദàµà´­à´µà´®à´¾à´¯ à´µàµà´¯àµ‚വിനàµà´±àµ† സഹായകàµà´•àµà´±à´¿à´ªàµà´ªà´¿à´²àµ‡à´•àµà´•àµ ചാടാനàµâ€" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "വസàµà´¤àµà´µà´¿à´¨àµà´±àµ† à´à´¡à´¿ കാണികàµà´•àµà´•." - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"à´’à´±àµà´± വസàµà´¤àµà´µà´¿à´¨àµ† à´ªàµà´°à´¤à´¿à´¨à´¿à´§àµ€à´•à´°à´¿à´•àµà´•àµà´¨àµà´¨ പേജàµà´•à´³àµà´Ÿàµ† ഉളàµà´³à´Ÿà´•àµà´•à´¤àµà´¤à´¿à´¨àµà´±àµ† തരവàµà´‚ തനതായ IDà´¯àµà´‚ കാണികàµà´•àµà´¨àµà´¨àµ." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "à´ˆ വസàµà´¤àµà´µà´¿à´²àµ മാറàµà´±à´‚ വരàµà´¤àµà´¤àµà´• (ഇതേ വിനàµâ€à´¡àµ‹)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "à´’à´±àµà´± വസàµà´¤àµà´µà´¿à´¨àµ† à´ªàµà´°à´¤à´¿à´¨à´¿à´§àµ€à´•à´°à´¿à´•àµà´•àµà´¨àµà´¨ പേജàµà´•à´³àµâ€à´•àµà´•àµà´³àµà´³ à´…à´¡àµà´®à´¿à´¨àµâ€ പേജിലേകàµà´•àµ ചാടàµà´¨àµà´¨àµ." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "à´ˆ വസàµà´¤àµà´µà´¿à´²àµ മാറàµà´±à´‚ വരàµà´¤àµà´¤àµà´• (à´ªàµà´¤à´¿à´¯ വിനàµâ€à´¡àµ‹)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "à´®àµà´•à´³à´¿à´²àµ‡à´¤àµ പോലെ, പകàµà´·àµ†, à´…à´¡àµà´®à´¿à´¨àµâ€ പേജൠപàµà´¤à´¿à´¯ വിനàµà´¡àµ‹à´µà´¿à´²à´¾à´£àµ à´¤àµà´±à´•àµà´•àµà´•." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo deleted file mode 100644 index 8fd85fb95..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po deleted file mode 100644 index 1ec55405a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/mn/LC_MESSAGES/django.po +++ /dev/null @@ -1,147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Ankhbayar \n" -"Language-Team: Mongolian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: mn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "шошго:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "шүүлтүүр:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "харах:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "%r програм олдÑонгүй" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr " %(app_label)r програмд %(model_name)r модел олдÑонгүй" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "холбогдох `%(app_label)s.%(data_type)s`объект" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "модел:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "холбогдох `%(app_label)s.%(object_name)s` объектууд" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "бүх %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s-ийн тоо" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr " %s объектийн нөхөх Ñ…ÑÑгүүд" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s нь url Ñ…ÑлбÑрийн объект биш байна" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Ðдмин ÑхлÑл" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Баримтжуулалт" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklet-ууд" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Ðœookmarklet-уудын баримтжуулалт" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Bookmarklet Ñуулгахын тулд холбооÑыг bookmark-ийн\n" -" Ñ…ÑÑ€ÑгÑлийн мөрт аваачих буюу холбооÑон дÑÑÑ€ хулганы баруун\n" -" товчлуураар дарж bookmark-даа нÑмнÑ. ИнгÑÑнÑÑÑ€ та Ñайтын аль ч\n" -" хуудаÑÐ½Ð°Ð°Ñ bookmarklet-ÑÑ Ñонгох боломжтой болно. Зарим\n" -" bookmarklet-ийн хувьд та \"дотоод\" гÑж тодорхойлогдÑон компьютерÑÑÑ\n" -" Ñайт руу орох шаардлагатай болдог (компьютер тань \"дотоод\" мөн\n" -" ÑÑÑхийг мÑдÑхгүй байгаа бол ÑиÑтемийн удирдлагааÑаа аÑууна уу).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Ð­Ð½Ñ Ñ…ÑƒÑƒÐ´Ð°Ñны баримтжуулалт" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Таныг Ñмар ч хамаагүй хуудаÑÐ½Ð°Ð°Ñ Ñ‚ÑƒÑ…Ð°Ð¹Ð½ хуудÑыг гаргаж байгаа " -"баримтжуулалтанд аваачна." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Объектийн ID-ийг харуулах" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"ÐÑг объект харуулж буй хуудаÑнуудын агуулгын төрөл болоод давтагдахгүй ID-" -"ийг харуулна." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Ð­Ð½Ñ Ð¾Ð±ÑŠÐµÐºÑ‚Ð¸Ð¹Ð³ заÑварлах (одоо Ñ…ÑÑ€ÑглÑж буй цонх)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "ÐÑг объект харуулж буй хуудаÑнуудын удирдлагын хуудÑанд аваачна." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Ð­Ð½Ñ Ð¾Ð±ÑŠÐµÐºÑ‚Ð¸Ð¹Ð³ заÑварлах (ÑˆÐ¸Ð½Ñ Ñ†Ð¾Ð½Ñ…)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "ДÑÑрхийн нÑгÑн адил ч удирдлагын хуудÑыг ÑˆÐ¸Ð½Ñ Ñ†Ð¾Ð½Ñ…Ð¾Ð½Ð´ нÑÑнÑ." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo deleted file mode 100644 index 126419a1c..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po deleted file mode 100644 index a3f921af0..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nb/LC_MESSAGES/django.po +++ /dev/null @@ -1,147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Norwegian BokmÃ¥l <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nb\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Fant ikke applikasjonen %r" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Fant ikke modellen %(model_name)r i applikasjonen %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "det relaterte `%(app_label)s.%(data_type)s`-objektet" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modell:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "relaterte `%(app_label)s.%(object_name)s`-objekter" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "alle %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "antall %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Felter pÃ¥ %s-objekter" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ser ikke ut til Ã¥ være et urlpattern-objekt" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Hjem" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentasjon" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bokmerker" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokumentasjonsbokmerker" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              For å installere bokmerker, dra linken til verktøylinja\n" -"for bokmerker, eller høyreklikk og legg til i bokmerker. Nå kan du du velge\n" -"bokmerket fra hvilken som helst side på nettstedet. Noen av disse\n" -"bokmerkene krever at datamaskinen du bruker er markert som \"intern\"\n" -"(kontakt din systemadministrator hvis du er usikker på om maskinen din er " -"\"intern\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentasjon for denne siden" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Hopp fra hvilken som helst side til dokumentasjonen for visningsfunksjonen " -"som genererte den siden." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Vis objekt-ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Viser \"content-type\" og en unik ID for sider som representerer et enkelt " -"objekt." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Endre dette objektet (nåværende vindu)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Hopper til administrasjonssiden for sider som representerer et enkelt objekt." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Endre dette objektet (nytt vindu)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Samme som over, men åpner administrasjonssiden i et nytt vindu." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo deleted file mode 100644 index 55c484427..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po deleted file mode 100644 index 336fe714c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nl/LC_MESSAGES/django.po +++ /dev/null @@ -1,151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Dutch <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Toepassing %r niet gevonden" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Model %(model_name)r niet gevonden in toepassing %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "het gerelateerde `%(app_label)s.%(data_type)s` object" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "gerelateerde `%(app_label)s.%(object_name)s` objecten" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "alle %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "aantal %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Velden van %s objecten" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s lijkt geen urlpattern-object te zijn" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Voorpagina" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentatie" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Documentatie bookmarklets" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Om bookmarklets te installeren, sleep de link naar uw " -"bladwijzers\n" -"werkbalk, of rechtermuis klik op de link en voeg het toe aan de bladwijzer. " -"Nu kan\n" -"de bookmarklet vanuit elke pagina op de site worden gekozen. Let erop dat " -"het soms\n" -"noodzakelijk is dat de computer van waaruit de pagina wordt bekeken intern " -"is.\n" -"(Raadpleeg uw systeembeheerder of uw computer zich op het interne netwerk " -"bevind).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentatie voor deze pagina" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Springt vanuit elke pagina naar de documentatie voor de view die gegenereerd " -"wordt door die pagina." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Toon object-ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Toont het content-type en unieke ID voor pagina's die een enkel object " -"voorstellen." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Bewerk dit object (huidig venster)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Gaat naar de beheerpagina voor pagina's die een enkel object weergeven." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Bewerk dit object (nieuw venster)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Zoals hierboven, maar opent de beheerpagina in een nieuw venster." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo deleted file mode 100644 index 3f186e567..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po deleted file mode 100644 index 8f742bf56..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/nn/LC_MESSAGES/django.po +++ /dev/null @@ -1,148 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Norwegian Nynorsk \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Kunne ikkje finne applikasjonen %r" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" -"Kunne ikkje finne modellen %(model_name)r i applikasjonen %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "det relaterte `%(app_label)s.%(data_type)s`-objektet" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modell:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "relaterte `%(app_label)s.%(object_name)s`-objekt" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "alle %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "tal på %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Felt på %s-objekt" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ser ikkje ut til å vere eit urlpattern-objekt" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Heim" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentasjon" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bokmerke" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokumentasjonsbokmerke" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              For å installere bokmerke, dra linken til verktøylinja\n" -"for bokmerke, eller høgreklikk og legg til i bokmerke. No kan du du velge\n" -"bokmerket frå kva som helst side på nettstaden. Nokre av desse\n" -"bokmerka krevar at datamaskina du brukar er markert som \"intern\"\n" -"(kontakt systemadministratoren din dersom du er usikker på om maskina di er " -"\"intern\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentasjon for denne sida" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Hopp frå kva som helst side til dokumentasjonen for visingsfunksjonen som " -"genererte sida." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Vis objekt-ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Viser \"content-type\" og ein unik ID for sider som representerar eit enkelt " -"objekt." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Endre dette objektet (noverande vindauge)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Hoppar til administrasjonssida for sider som representerer eit enkelt objekt." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Endre dette objektet (nytt vindauge)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Samme som over, men opnar administrasjonssida i eit nytt vindauge." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/no/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/no/LC_MESSAGES/django.mo deleted file mode 100644 index 54e1595d4..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/no/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/no/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/no/LC_MESSAGES/django.po deleted file mode 100644 index d284bd722..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/no/LC_MESSAGES/django.po +++ /dev/null @@ -1,147 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Norwegian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: no\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Fant ikke applikasjonen %r" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Fant ikke modellen %(model_name)r i applikasjonen %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "det relaterte `%(app_label)s.%(data_type)s`-objektet" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modell:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "relaterte `%(app_label)s.%(object_name)s`-objekter" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "alle %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "antall %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Felter på %s-objekter" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ser ikke ut til å være et urlpattern-objekt" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Hjem" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentasjon" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bokmerker" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokumentasjonsbokmerker" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              For å installere bokmerker, dra linken til verktøylinja\n" -"for bokmerker, eller høyreklikk og legg til i bokmerker. Nå kan du du velge\n" -"bokmerket fra hvilken som helst side på nettstedet. Noen av disse\n" -"bokmerkene krever at datamaskinen du bruker er markert som \"intern\"\n" -"(kontakt din systemadministrator hvis du er usikker på om maskinen din er " -"\"intern\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentasjon for denne siden" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Hopp fra hvilken som helst side til dokumentasjonen for visningsfunksjonen " -"som genererte den siden." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Vis objekt-ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Viser \"content-type\" og en unik ID for sider som representerer et enkelt " -"objekt." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Endre dette objektet (nÃ¥værende vindu)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Hopper til administrasjonssiden for sider som representerer et enkelt objekt." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Endre dette objektet (nytt vindu)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Samme som over, men Ã¥pner administrasjonssiden i et nytt vindu." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo deleted file mode 100644 index 6360a66c0..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po deleted file mode 100644 index e922842b4..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pa/LC_MESSAGES/django.po +++ /dev/null @@ -1,135 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Panjabi (Punjabi) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pa\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "ਟੈਗ:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "ਫਿਲਟਰ:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "ਵੇਖੋ:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "à¨à¨ªà¨²à©€à¨•à©‡à¨¸à¨¼à¨¨ %r ਨਹੀਂ ਲੱਭੀ" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "ਮਾਡਲ:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "ਸਬੰਧਿਤ `%(app_label)s.%(object_name)s` ਆਬਜੈਕਟ" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "ਸਭ %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s ਦੀ ਗਿਣਤੀ" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s ਆਬਜੈਕਟ ਉੱਤੇ ਖੇਤਰ" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "ਘਰ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "ਡੌਕੂਮੈਂਟੇਸ਼ਨ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "ਬà©à©±à¨•à¨®à¨¾à¨°à¨•à¨²à¨¿à¨Ÿ" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "ਡੌਕੂਮੈਟੇਸ਼ਨ ਬà©à©±à¨•à¨®à¨¾à¨°à¨•à¨²à¨¿à¨Ÿ" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "ਇਹ ਸਫ਼ੇ ਲਈ ਡੌਕੂਮੈਂਟੇਸ਼ਨ" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "ਆਬਜੈਕਟ ID ਵੇਖੋ" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "ਇਹ ਆਬਜੈਕਟ ਸੋਧੋ (ਮੌਜੂਦਾ ਵਿੰਡੋ)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "ਇਹ ਆਬਜੈਕਟ ਸੋਧੋ (ਨਵੀਂ ਵਿੰਡੋ)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo deleted file mode 100644 index 6e263d40d..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po deleted file mode 100644 index 672a1d18c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pl/LC_MESSAGES/django.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Polish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtr:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "widok:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplikacja %r nie została znaleziona" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Model %(model_name)r nie został znaleziony w aplikacji %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "powiązany obiekt `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "powiązane obiekty `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "wszystkie %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "liczba %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Pola obiektów %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s nie jest obiektem urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Początek" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentacja" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Zakładki" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Zakładki Dokumentacji" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Aby zainstalować skryptozakładki, przeciągnij łącze do " -"paska zakładek\n" -"lub kliknij prawym klawiszem na łączu i dodaj je do zakładek. Teraz możesz\n" -"wybrać skryptozakładkę na dowolnej stronie serwisu. Uwaga: niektóre z tych " -"skryptozakładek wymagają przeglądania serwisu z komputera\n" -"\"wewnętrznego\" (skontaktuj się z administratorem systemu, jeśli nie jesteś " -"pewien, czy ten komputer jest \"wewnętrznym\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentacja dla tej strony" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Przekierowuje z dowolnej strony do dokumentacji dla widoku, który ją " -"generuje." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Pokaż ID obiektu" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Pokazuje typ i unikalne ID dla stron, które reprezentują pojedynczy obiekt." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Edytuj ten obiekt (bieżące okno)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Przeskok do panelu administratora dla stron reprezentujących pojedynczy " -"obiekt." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Edytuj ten obiekt (nowe okno)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Jak wyżej, tyle że otwiera nowe okno." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo deleted file mode 100644 index 94d52aadd..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po deleted file mode 100644 index ab35c6bd5..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt/LC_MESSAGES/django.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-11 10:40+0000\n" -"Last-Translator: nmariz \n" -"Language-Team: Portuguese <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtro:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "A aplicação %r não encontrada" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "O Model %(model_name)r não foi encontrado na aplicação %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "o objeto `%(app_label)s.%(data_type)s` relacionado" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "os objetos `%(app_label)s.%(object_name)s` relacionados" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "todos %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "número de %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Campos nos objetos %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s não parece ser um objeto urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Início" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentação" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Documentação dos bookmarklets" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Para instalar bookmarklets, arraste o link para sua " -"barra \n" -"de bookmarks, ou clique com o lado direito do rato no link e adicione ao " -"seus bookmarks. Agora pode \n" -"seleccionar o bookmarklet de qualquer página no site. Note que alguns " -"destes \n" -"bookmarklets requerem que visualize o site de um computador designado \n" -"por \"internal\" (entre em contacto com o seu administrador de sistema se \n" -"não tiver a certeza se o seu computador é \"internal\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentação desta página" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Vai de qualquer página para a documentação da view que gera essa página." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Mostrar o ID do objeto" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Mostra o tipo de conteúdo e o ID único para as páginas que representam um " -"único objeto." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Editar este objeto (janela actual)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Vai para a página de admin para as páginas que representam um único objeto." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Editar este objeto (nova janela)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Tal como acima, mas abre a página de admin numa nova janela." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo deleted file mode 100644 index 157bdcce5..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po deleted file mode 100644 index cafa0be19..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/pt_BR/LC_MESSAGES/django.po +++ /dev/null @@ -1,146 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Portuguese (Brazilian) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtro:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplicação %r não encontrada" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Model %(model_name)r não encontrado na aplicação %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "o objeto `%(app_label)s.%(data_type)s` relacionado" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "objetos `%(app_label)s.%(object_name)s` relacionados" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "todos %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "número de %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Campos nos objetos %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s não aparenta ser um objeto urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Início" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentação" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Itens de bookmark" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Documentação de itens de bookmark" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Para instalar um item no bookmark, arraste o link para a \n" -"barra de ferramentas de bookmarks, ou clique com o botão direito no link e\n" -"adicione-o à barra de ferramentas. Agora você pode selecionar o item de\n" -"bookmark de qualquer página do site. Lembre-se que alguns desses itens\n" -"de bookmark requerem que você veja o site de um computador designado\n" -"como \"interno\" (converse com seu administrador de sistemas se você não\n" -"souber se seu computador é \"interno\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Documentação para esta página" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Leva você de qualquer página para a documentação da view que gera tal página." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Mostar ID de objeto" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Mostra o tipo de conteúdo e ID único para páginas que representam um objeto." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Editar este objeto (janela atual)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "Vai para a página de administração que representa um objeto." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Editar este objeto (nova janela)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Como acima, mas abre a página de administração em uma nova janela." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo deleted file mode 100644 index cd6f760f2..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po deleted file mode 100644 index 0f9fb52fb..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ro/LC_MESSAGES/django.po +++ /dev/null @@ -1,152 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-14 17:30+0000\n" -"Last-Translator: danniel \n" -"Language-Team: Romanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ro\n" -"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?" -"2:1))\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtru:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "cod de afișare:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Applicația %r negăsită" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Modelul %(model_name)r nu a fost găsit în aplicația %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "obiectul înrudit `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "obiectele înrudite `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "toate %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "numărul de %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Câmpuri în %s obiecte" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s nu pare a fi un obiect urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Acasă" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Documentație" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Semne de carte" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Semne de carte pentru documentație" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Pentru a instala semne de carte, trageți link-ul în bara " -"de\n" -"semne de carte, sau clic dreapta pe link și adaugați la semne de carte. Acum " -"puteți\n" -"selecta semnul de carte din orice pagina a sitului. Notați că unele dintre\n" -"aceste semne de carte sunt accesibile doar de pe un calculator desemnat ca\n" -"\"intern\" (luați legătura cu administratorul sistemului dumneavoastră în " -"caz că nu știți\n" -"dacă acest calculator este \"intern\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "DocumentaÈ›ie pentru pagina aceasta" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Vă trimite de la orice pagină către documentaÈ›ia pentru codul de afiÈ™are " -"care generează acea pagină." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Arată ID-ul obiectului" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Arată tipul de conÈ›inut È™i ID-ul unic pentru paginile ce reprezintă un " -"singur obiect." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Modifică acest obiect (în fereastra curentă)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Sare la pagina de administrare pentru pagini ce reprezintă un singur obiect." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Modifică acest obiect (într-o fereastra nouă)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" -"La fel ca mai sus, dar deschide pagina de administrare într-o fereastră nouă" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo deleted file mode 100644 index 49600901d..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po deleted file mode 100644 index 245e08da6..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ru/LC_MESSAGES/django.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-20 21:04+0100\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Russian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ru\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" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "метка:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "фильтр:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "view:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Приложение %r не найдено" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Модель %(model_name)r не найдена в приложении %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "завиÑимый `%(app_label)s.%(data_type)s` объект" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "модель:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "завиÑимые `%(app_label)s.%(object_name)s` объекты" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "вÑе %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "количеÑтво %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "ÐŸÐ¾Ð»Ñ Ð´Ð»Ñ %s объектов" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s не похож на объект urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Ðачало" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "ДокументациÑ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Закладки" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Закладки документации" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Ð”Ð»Ñ ÑƒÑтановки закладок перетащите ÑÑылку к Ñебе на панель\n" -"закладок или щелкните правой кнопкой мыши по ÑÑылке и добавьте ее в\n" -"закладки. Теперь у Ð²Ð°Ñ ÐµÑÑ‚ÑŒ возможноÑÑ‚ÑŒ выбрать закладку Ñ Ð»ÑŽÐ±Ð¾Ð¹ Ñтраницы\n" -"Ñайта. Обратите внимание: некоторые из Ñтих закладок требуют, чтобы вы\n" -"проÑматривали Ñайт Ñ ÐºÐ¾Ð¼Ð¿ÑŒÑŽÑ‚ÐµÑ€Ð°, определенного как \"внутренний\" (уточните\n" -"у Ñвоего ÑиÑтемного админиÑтратора, еÑли не уверены, ÑвлÑетÑÑ Ð»Ð¸ ваш\n" -"компьютер \"внутренним\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Ð”Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ñ Ð´Ð»Ñ Ð´Ð°Ð½Ð½Ð¾Ð¹ Ñтраницы" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"ПеренаправлÑет Ð²Ð°Ñ Ñ Ð»ÑŽÐ±Ð¾Ð¹ Ñтраницы к документации Ð´Ð»Ñ view, который " -"генерирует Ñту Ñтраницу." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Показать идентификатор объекта" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Показывает content-type и уникальный ID Ð´Ð»Ñ Ñтраниц, предÑтавлÑющих один " -"объект." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Редактировать данный объект (в текущем окне)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Перейдет на админиÑтративную Ñтраницу Ð´Ð»Ñ Ñтраниц, предÑтавлÑющих один " -"объект." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Редактировать данный объект (в новом окне)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "То же, что и выше, но откроет админиÑтративную Ñтраницу в новом окне." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo deleted file mode 100644 index f66ea2905..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po deleted file mode 100644 index 1ea500953..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sk/LC_MESSAGES/django.po +++ /dev/null @@ -1,148 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Slovak \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sk\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "znaÄka:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "pohľad:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplikácia %r nenájdená" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Model %(model_name)r sa nenachádza v aplikácii %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "súvisiaci objekt `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "súvisiace objekty `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "vÅ¡etky %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "poÄet %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Polia objektov %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s nevyzerá ako urlpattern objekt" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Domov" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentácia" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Záložky" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Záložky dokumentácie" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Ak chete nainÅ¡talovaÅ¥ záložky, pretiahnite odkaz do\n" -"nástrojovej liÅ¡ty so záložkami, alebo kliknite pravým tlaÄidlom myÅ¡i na " -"odkaz a pridajte ho do záložiek.\n" -"Následne môžete záložky použiÅ¥ na stránkach. Poznamenávame, že použitie " -"niektorých záložiek vyžaduje, aby bol váš poÄítaÄ \"interný\" (ak si nie ste " -"istý, že váš poÄítaÄ je \"interný\", oslovte svojho systémového správcu).\n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentácia k tejto stránke" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Nasmeruje vás z ľubovoľnej stránky do dokumentácie, kde je popísané, ako sa " -"táto stránka generuje." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "ZobraziÅ¥ identifikátor objektu" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Zobrazí content-type a jedineÄný identifikátor pre stránky, ktoré " -"reprezentujú samostatný objekt." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "UpraviÅ¥ tento objekt (aktuálne okno)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"SkoÄí na stránku správy pre stránky, ktoré reprezentujú samostatný objekt." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "UpraviÅ¥ tento objekt (nové okno)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Ako predtým, ale otvorí stránku správy v novom okne." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo deleted file mode 100644 index 7f8235877..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po deleted file mode 100644 index c3da2027d..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sl/LC_MESSAGES/django.po +++ /dev/null @@ -1,148 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Slovenian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sl\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" -"%100==4 ? 2 : 3)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "znaÄka:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "pogled:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplikacije %r ni mogoÄe najti" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Modela %(model_name)r ni v aplikaciji %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "povezani `%(app_label)s.%(data_type)s` objekt" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "povezani `%(app_label)s.%(object_name)s` objekti" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "vse %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "Å¡tevilo %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Polja na %s objektih" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ne izgleda veljaven urlpattern objekt" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Domov" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentacija" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Zaznamkice" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokumentacijske zaznamkice" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Za inÅ¡talacijo zaznamkic povleÄite povezavo v orodno " -"vrstico\n" -"z zaznamki, ali kliknite z desno miÅ¡kino tipko na povezavo in jo dodajte med " -"zaznamke. Zdaj lahko izberete zaznamkico s katerekoli strani tega spletnega " -"mesta. Opomba: nekatere izmed teh strani lahko gledate le z raÄunalnika, ki " -"je oznaÄen kot \"notranji\" (v kolikor niste prepriÄani, Äe je vaÅ¡ " -"raÄunalnik oznaÄen kot \"notranji\" se obrnite na sistemskega " -"administratorja).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentacija te strani" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Skok na stran z dokumentacijo za pogled (view), ki generira trenutno stran." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Pokaži ID objekta" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Pokaže content-type in unikatni ID za strani, ki predstavljajo en objekt." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Uredi objekt (v trenutnem oknu)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Skok na administracijsko stran za vse strani, ki predstavljajo en objekt." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Uredi ta objekt (v novem oknu)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Kot zgoraj, le da odpre administracijsko stran v novem oknu." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo deleted file mode 100644 index 930f53eb7..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po deleted file mode 100644 index 0d6bb43d8..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sq/LC_MESSAGES/django.po +++ /dev/null @@ -1,150 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Albanian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sq\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "etiketë:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtër:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "parje:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Nuk u gjet zbatimi %r" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Nuk u gjet modeli %(model_name)r në zbatimin %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "objekti i afërt `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "objektet e afërta `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "krejt %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "numër i %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Fusha te objektet %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s nuk duket të jetë një objekt urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Hyrje" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentim" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "\"Bookmarklet\"-e" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "\"Bookmarklet\"-e Dokumentimi" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Për instalim \"bookmarklet\"-esh, tërhiqeni lidhjen te " -"paneli juaj\n" -"i faqerojtësve, ose djathtas-klikoni dhe shtojeni te faqerojtësit tuaj. Tani " -"mundeni\n" -"të përzgjidhni \"bookmarklet\" nga cilado faqe e \"site\"-it. Kini parasysh " -"që disa prej\n" -"\"bookmarklet\"-eve kërkojnë që ju ta shihni \"site\"-in prej një kompjuteri " -"të specifikuar\n" -"si \"i brendshëm\" (sqarojeni me përgjegjësin e sistemit nëse nuk jeni i " -"sigurt\n" -"në është a jo \"i brendshëm\" kompjuteri juaj).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentim për këtë faqe" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Ju kalon nga cilado faqe te dokumenti që prodhon atë faqe, për ta parë." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Shfaq ID objekti" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Shfaq lloj lënde dhe ID unike për faqet që përfaqësojnë një objekt të vetëm." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Përpunojeni këtë objekt (dritarja e tanishme)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Kalon te faqja e përgjegjësit për faqet që përfaqësojnë një objekt të vetëm." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Përpunojeni këtë objekt (dritare e re)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Si më sipër, por hap faqen e përgjegjësit në një dritare të re." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo deleted file mode 100644 index 436b46b53..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po deleted file mode 100644 index 023962db6..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr/LC_MESSAGES/django.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Serbian \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr\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" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "таг:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "филтер:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "вју:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Ðпликација %r није пронађена" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Модел %(model_name)r није пронађен у апликацији %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "повезани објекти клаÑе `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "модел:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "клаÑе `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "Ñви повезани објекти %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "број повезаних објеката %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Поља у повезаним објектима %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s не изгледа као „urlpattern“ објекат" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Почетна" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Документација" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Букмарклети" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Букмарклети документације" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Да биÑте инÑталирали букмарклет, превуците линк до Ñвојих\n" -"букмаркова или кликните деÑним дугметом и додајте међу букмарке. Ðакон тога\n" -"букмарклетима можете приÑтупити Ñа Ñваке Ñтранице на Ñајту. Имајте на уму\n" -"да неки букмарклети захтевају да Ñајту приÑтупите Ñа рачунара који Ñу\n" -"означени као „интерни“ (питајте админиÑтратора вашег ÑиÑтема уколико ниÑте\n" -"Ñигурни да ли је ваш рачунар „интерни“).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Документација за ову Ñтраницу" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Води од било које Ñтранице до документаицје погледа који је генериÑао ту " -"Ñтраницу." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Прикажи ID објекта" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Приказује content-type и јединÑтвени ID за Ñтраницу која преÑтавља један " -"објекат." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Измени овај објекат (у овом прозору)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Води у админиÑтрациони Ñтраницу за Ñтранице које преÑтављају један објекат" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Измени овај објекат (нови прозор)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" -"ИÑто као претходни, али отвара админиÑтрациону Ñтраницу у новом прозору." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo deleted file mode 100644 index 51a0eda19..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po deleted file mode 100644 index 30a7f8fe2..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sr_Latn/LC_MESSAGES/django.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Serbian (Latin) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sr@latin\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" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tag:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "vju:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Aplikacija %r nije pronaÄ‘ena" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Model %(model_name)r nije pronaÄ‘en u aplikaciji %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "povezani objekti klase `%(app_label)s.%(data_type)s`" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "klase `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "svi povezani objekti %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "broj povezanih objekata %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Polja u povezanim objektima %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ne izgleda kao „urlpattern“ objekat" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "PoÄetna" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentacija" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bukmarkleti" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Bukmarkleti dokumentacije" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Da biste instalirali bukmarklet, prevucite link do svojih\n" -"bukmarkova ili kliknite desnim dugmetom i dodajte meÄ‘u bukmarke. Nakon toga\n" -"bukmarkletima možete pristupiti sa svake stranice na sajtu. Imajte na umu\n" -"da neki bukmarkleti zahtevaju da sajtu pristupite sa raÄunara koji su\n" -"oznaÄeni kao „interni“ (pitajte administratora vaÅ¡eg sistema ukoliko niste\n" -"sigurni da li je vaÅ¡ raÄunar „interni“).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentacija za ovu stranicu" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Vodi od bilo koje stranice do dokumentaicje pogleda koji je generisao tu " -"stranicu." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Prikaži ID objekta" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Prikazuje content-type i jedinstveni ID za stranicu koja prestavlja jedan " -"objekat." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Izmeni ovaj objekat (u ovom prozoru)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Vodi u administracioni stranicu za stranice koje prestavljaju jedan objekat" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Izmeni ovaj objekat (novi prozor)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" -"Isto kao prethodni, ali otvara administracionu stranicu u novom prozoru." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo deleted file mode 100644 index 56cda5089..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po deleted file mode 100644 index 4642ee71a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/sv/LC_MESSAGES/django.po +++ /dev/null @@ -1,149 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Swedish <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sv\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "tagg:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filter:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "vy:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Applikation %r hittades inte" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Modell %(model_name)r hittades inte i applikation %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "det relaterade `%(app_label)s.%(data_type)s`-objektet" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "modell:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "relaterade `%(app_label)s.%(object_name)s`-objekt" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "alla %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "antal %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "Fält på %s objekt" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s verkar inte vara ett urlpattern-objekt" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Hem" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokumentation" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Smarta bokmärken" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Smarta bokmärken för dokumentation" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              För att installera smarta bokmärken, dra länken till din\n" -"verktygsrad med bokmärken, eller högerklicka på länken och lägg till den\n" -"till dina bokmärken. Nu kan du välja det smarta bokmärket från alla sidor\n" -"på webbplatsen. Observera att några av dessa smarta bokmärken kräver att du " -"besöker\n" -"sidan från en dator som är \"intern\" (kontakta din systemadministratör\n" -"om du inte är säker på om din dator är \"intern\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Dokumentation för denna sida" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Förflyttar dig frÃ¥n valfri sida till dokumentationen för vyn som genererar " -"den sidan." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Visa objektets ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Visa innehÃ¥llstypen och det unika ID-numret för sidor som representerar ett " -"enskilt objekt." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Redigera detta objekt (aktuellt fönster)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Hoppar till administrationssidan för sidor som representerar ett enskilt " -"objekt." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Redigera detta objekt (nytt fönster)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Som ovan, men öppnar administrationssidan i ett nytt fönster." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo deleted file mode 100644 index 1a72e6bbc..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po deleted file mode 100644 index 4353837c6..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ta/LC_MESSAGES/django.po +++ /dev/null @@ -1,144 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Tamil \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ta\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "ஒடà¯à®Ÿà¯:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "வடிகடà¯à®Ÿà®¿:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "நோறà¯à®±à®®à®¿à®Ÿà¯:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "பகà¯à®•à®®à¯ %r இலà¯à®²à¯ˆ" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "மாதிரி:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "அனைதà¯à®¤à¯ %s " - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "எணà¯à®£à®¿à®•à¯à®•à¯ˆ %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "பà¯à®²à®¤à¯à®¤à®¿à®©à¯ %s பொரà¯à®³à¯" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s -ல௠urlpattern தோனà¯à®±à¯à®µà®¤à®¿à®²à¯à®²à¯ˆ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "வீடà¯" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "ஆவனமாகà¯à®•à®®à¯" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "பà¯à®¤à¯à®¤à®•à®•à¯à®•à¯à®±à®¿à®•à®³à¯" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "ஆவணமாகà¯à®•à®•à¯ கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®•à®³à¯" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              பà¯à®¤à¯à®¤à®• கà¯à®±à®¿à®¯à¯€à®Ÿà¯à®•à®³à¯ˆ நிறà¯à®µ இநà¯à®¤ இணைபà¯à®ªà®¿à®©à¯ˆ பà¯à®¤à¯à®¤à®•à®•à¯à®•à¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà¯à®ªà¯ \n" -"படà¯à®Ÿà¯ˆà®•à¯à®•à¯ இழà¯à®•à¯à®•à®µà¯à®®à¯. அலà¯à®²à®¤à¯ வலத௠கிளிக௠செயà¯à®¤à¯ பà¯à®¤à¯à®¤à®•à®•à¯à®•à¯à®±à®¿à®¯à¯€à®Ÿà¯à®•à®³à®¿à®²à¯ சேரà¯à®•à¯à®•à®µà¯à®®à¯. \n" -" இனி தளதà¯à®¤à®¿à®²à¯ எநà¯à®¤à®ªà¯ பகà¯à®•à®¤à¯à®¤à®¿à®²à¯ இரà¯à®¨à¯à®¤à¯à®®à¯ பà¯à®¤à¯à®¤à®•à®•à¯à®•à¯à®±à®¿à®¯à¯€à®Ÿà¯à®Ÿà®¿à®©à¯ˆ தேரà¯à®µà¯à®šà¯†à®¯à¯à®¯ à®®à¯à®Ÿà®¿à®¯à¯à®®à¯. \n" -" நீஙà¯à®•à®³à¯ இநà¯à®¤ தளதà¯à®¤à¯ˆ \"internal\" என கà¯à®±à®¿à®•à¯à®•à®ªà¯à®ªà®Ÿà¯à®Ÿ கணிணியில௠இரà¯à®¨à¯à®¤à¯ மடà¯à®Ÿà¯à®®à¯‡ \n" -" à®’à®°à¯à®šà®¿à®² பà¯à®¤à¯à®¤à®•à®•à¯à®•à¯à®±à®¿à®•à®³à¯ˆ செயலà¯à®ªà®Ÿà¯à®¤à¯à®¤à®®à¯à®Ÿà®¿à®¯à¯à®®à¯\n" -" உஙà¯à®•à®³à¯à®•à¯à®•à¯, கணிணி \"internal\" என உறà¯à®¤à®¿ செயà¯à®¯ கணிணிமேளாலரை அணà¯à®•à®µà¯à®®à¯.

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "இநà¯à®¤ பகà¯à®•à®¤à¯à®¤à®¿à®±à¯à®•à®¾à®© ஆவணமà¯" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"எநà¯à®¤ ஒர௠பகà¯à®•à®¤à¯à®¤à®¿à®²à®¿à®°à¯à®¨à¯à®¤à¯à®®à¯ ஆவணபà¯à®ªà®•à¯à®•à®¤à¯à®¤à¯ˆ பாரà¯à®µà¯ˆà®¯à®¿à®Ÿà¯à®¤à®²à¯, அநà¯à®¤ பகà¯à®•à®¤à¯à®¤à¯ˆ உரà¯à®µà®¾à®•à¯à®•à¯à®•à®¿à®±à®¤à¯." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "object ID-஠காடà¯à®Ÿà¯" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"ஒரே object-஠கà¯à®±à®¿à®•à¯à®•à¯à®®à¯ பகà¯à®•à®™à¯à®•à®³à®¿à®©à¯ பொரà¯à®³à®Ÿà®•à¯à®• வகை மறà¯à®±à¯à®®à¯ unique ID-஠காடà¯à®Ÿà¯à®•à®¿à®±à®¤à¯." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "இதை திரà¯à®¤à¯à®¤à¯à®• (தறà¯à®ªà¯‹à®¤à¯ˆà®¯ சாளரமà¯)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "ஒரே object-஠கà¯à®±à®¿à®•à¯à®•à¯à®®à¯ பகà¯à®•à®™à¯à®•à®³à¯ˆà®•à¯ காண மேலாளர௠பகà¯à®•à®¤à¯à®¤à®¿à®±à¯à®•à¯ செலà¯à®•." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "இதை திரà¯à®¤à¯à®¤à¯à®•. (பà¯à®¤à®¿à®¯ சாளரமà¯)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "மேளாலர௠பகà¯à®•à®¤à¯à®¤à¯ˆ à®®à¯à®©à¯à®ªà¯ கணà¯à®Ÿà®¤à¯à®ªà¯‹à®²à¯, ஆனால௠பà¯à®¤à®¿à®¯ சாளரதà¯à®¤à®¿à®²à¯ திறகà¯à®•à®¿à®±à®¤à¯." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo deleted file mode 100644 index 5a36040d7..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.po deleted file mode 100644 index 9c141a875..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/te/LC_MESSAGES/django.po +++ /dev/null @@ -1,135 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Telugu <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: te\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "టాగà±:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "వడపోత:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "దరà±à°¶à°¨à°‚:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "%rà°Žà°ªà±à°ªà± దొరకలేడà±" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "మొడలà±:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "సంబంధించిన `%(app_label)s.%(object_name)s` వసà±à°¤à±à°µà±à°²à±" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "ఆనà±à°¨à±€ %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s సంఖà±à°¯" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s వసà±à°¤à±à°µà±à°²à°²à±‹ ఫీలà±à°¡à±à°¸à± " - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "నివాసమà±" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "పతà±à°°à°¿à°•à±€à°•à°°à°£" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "à°ˆ పొరటà±à°•à± పతà±à°°à°¿à°•à±€à°•à°°à°£" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "వసà±à°¤à±à°µà± ఇడి చూడండి" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "వసà±à°¤à±à°µà± ని మారà±à°šà°‚à°¡à°¿ (à°ªà±à°°à°¸à±à°¤à±à°¤ విండొ)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "వసà±à°¤à±à°µà± ని మారà±à°šà°‚à°¡à°¿(కొతà±à°¤ విండొ) " - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo deleted file mode 100644 index 2ff333f62..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.po deleted file mode 100644 index 3622b155c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/th/LC_MESSAGES/django.po +++ /dev/null @@ -1,142 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Thai <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: th\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "ป้ายà¸à¸³à¸à¸±à¸š:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "ตัวà¸à¸£à¸­à¸‡:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "ดู:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "ไม่พบà¹à¸­à¸› %r " - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "ไม่พบโมเดล %(model_name)r ในà¹à¸­à¸› %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "ความสัมพันธ์`%(app_label)s.%(data_type)s` อ็อบเจ็à¸à¸•à¹Œ" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "โมเดล:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "ความสัมพันธ์`%(app_label)s.%(object_name)s` อ็อบเจ็à¸à¸•à¹Œ" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "ทั้งหมด %s " - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "จำนวนของ %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "ฟิลด์บน %s อ็อบเจ็à¸à¸•à¹Œ" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s ดูเหมือนจะไม่ใช่ urlpattern อ็อบเจ็à¸à¸•à¹Œ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "หน้าหลัà¸" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "เอà¸à¸ªà¸²à¸£à¸›à¸£à¸°à¸à¸­à¸š" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Bookmarklets" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Documentation bookmarklets" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              เพื่อติดตั้ง bookmarklets, ลาà¸à¸¥à¸´à¹‰à¸‡à¸à¹Œà¹„ปที่à¹à¸–บเครื่องมือบุ๊à¸à¸¡à¸²à¸£à¹Œà¸„\n" -", หรือคลิà¸à¸‚วาที่ลิ้งà¹à¸¥à¸°à¹€à¸žà¸´à¹ˆà¸¡à¹€à¸‚้าบุ๊à¸à¸¡à¸²à¸£à¹Œà¸„ของคุณ. ตอนนี้คุณสามารถ\n" -"เลือภbookmarklet จาà¸à¸«à¸™à¹‰à¸²à¹ƒà¸”ๆในเว็บไซต์. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "เอà¸à¸ªà¸²à¸£à¸ªà¸³à¸«à¸£à¸±à¸šà¸«à¸™à¹‰à¸²à¸™à¸µà¹‰" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "ย้ายจาà¸à¸—ุà¸à¸«à¸™à¹‰à¸²à¹„ปที่วิวที่สร้างหน้านั้นขึ้นมา" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "à¹à¸ªà¸”งอ็อบเจ็à¸à¸•à¹Œà¹„อดี" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "à¹à¸ªà¸”ง content-type à¹à¸¥à¸° unique ID เพื่อà¹à¸ªà¸”งอ็อบเจ็à¸à¸•à¹Œà¹€à¸žà¸µà¸¢à¸‡à¸­à¸¢à¹ˆà¸²à¸‡à¹€à¸”ียว." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "à¹à¸à¹‰à¹„ขออปเจ็à¸à¸™à¸µà¹‰ (ในหน้าต่างปัจจุบัน)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "ไปที่หน้าà¹à¸­à¸”มินเพื่อà¹à¸ªà¸”งอ็อบเจ็à¸à¸•à¹Œà¹€à¸žà¸µà¸¢à¸‡à¸­à¸¢à¹ˆà¸²à¸‡à¹€à¸”ียว." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "à¹à¸à¹‰à¹„ขออปเจ็à¸à¸™à¸µà¹‰ (หน้าใหม่)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "เหมือนด้านบน à¹à¸•à¹ˆà¹€à¸›à¸´à¸”หน้าต่างผู้ดูà¹à¸¥à¸£à¸°à¸šà¸šà¹ƒà¸™à¸«à¸™à¹‰à¸²à¸•à¹ˆà¸²à¸‡à¹ƒà¸«à¸¡à¹ˆ" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo deleted file mode 100644 index 1ed587ab4..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po deleted file mode 100644 index f00482887..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/tr/LC_MESSAGES/django.po +++ /dev/null @@ -1,144 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Turkish \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: tr\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "etiket:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "filtre:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "görünüm:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "%r uygulaması bulunamadı" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "%(app_label)r uygulamasında %(model_name)r modeli bulunamadı" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "Ä°lgili `%(app_label)s.%(data_type)s` nesnesi" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "model:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "ilgili `%(app_label)s.%(object_name)s` nesneleri" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "tüm %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s sayısı" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s nesnesindeki alanlar" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s geçerli bir adres kalıbı deÄŸil" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Anasayfa" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "Dokümantasyon" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Kısayollar" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Dokümantasyon kısayolları" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Kısayolları kullanabilmek için, bağlantıyı tarayıcınızdaki " -"araç\n" -"çubuğuna sürükleyin, ya da sağ tıklayıp sık kullanılan adresler listenize " -"ekleyin. \n" -"Bazı kısayollar, uygulamayı çalıştıran sunucu ile aynı adreste bulunan " -"istemciler \n" -"tarafından kullanılabilir.

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Bu sayfa için dokümantasyon" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "Sizi, bu sayfayı üreten betiÄŸin dokümantasyonuna yönlendirir." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Nesne numarasını göster" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Tek bir nesneyi temsil eden sayfaların içerik türünü ve numarasını gösterir." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Nesneyi düzenle (aynı pencerede)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "Tek bir nesneyi temsil eden sayfaların yönetim sayfasını gösterir." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Nesneyi düzenle (yeni pencerede)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Yukarıdaki gibi, ancak yönetim sayfasını yeni bir pencerede açar." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo deleted file mode 100644 index d048c4331..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po deleted file mode 100644 index 771926333..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/uk/LC_MESSAGES/django.po +++ /dev/null @@ -1,151 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Ukrainian <>\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: uk\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" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "тег:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "відфільтрувати:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "переглÑнути:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Прикладна ÑиÑтема(app) %r не знайдена" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Модель %(model_name)r не знайдено в прикладній ÑиÑтемі %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "пов'Ñзаний `%(app_label)s.%(data_type)s` об'єкт" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "модель:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "пов'Ñзані з `%(app_label)s.%(object_name)s` об'єкти" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "вÑÑ– %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "кількіÑÑ‚ÑŒ з %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "ÐŸÐ¾Ð»Ñ Ð¾Ð±'єктів %s" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s не Ñ” об'єктом urlpattern" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "Домівка" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "ДокументаціÑ" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "Інтерактивні закладки" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "Інтерактивні закладки документації" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              Щоб вÑтановити інтерактивні закладки, перетÑгніть лінк до\n" -"тулбару закладок, або клікніть правою кнопкою миші та додайте у\n" -"Ñвої закладки. Тепер ви можете обрати інтерактивні закладки з будь-Ñкої\n" -"Ñторінки Ñайту. Зауважте, що деÑкі з цих інтерактивних закладок на Ñайті\n" -"можуть переглÑдатиÑÑ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ з комп'ютера, що Ñ” в одній внутрішній мережі з \n" -"даним Ñайтом (запитайте у вашого ÑиÑтемного адмініÑтратора, Ñкщо ви не " -"впевнені,\n" -"що Ñайт Ñ– ваш комп'ютер Ñ” в одній внутрішній мережі).

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "Ð”Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð°Ñ†Ñ–Ñ Ð´Ð»Ñ Ñ†Ñ–Ñ”Ñ— Ñторінки" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" -"Перекидає Ð²Ð°Ñ Ð· будь-Ñкої Ñторінки в документацію Ð´Ð»Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ—, що " -"Ñгенерувала цю Ñторінку." - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Показати ID об'єкту" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" -"Показує content-type та унікальний ID Ð´Ð»Ñ Ñторінок, Ñкі ÑвлÑÑŽÑ‚ÑŒ Ñобою єдиний " -"об'єкт." - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Редагувати цей об'єкт (поточне вікно)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" -"Перекидає до адмініÑтраторÑької Ñторінки Ð´Ð»Ñ Ñторінок, що відображають " -"окремий об'єкт." - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Редагувати цей об'єкт (нове вікно)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "Як Ñ– вище, але відкриває Ñторінку адмініÑÑ‚Ñ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñƒ новому вікні." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo deleted file mode 100644 index 030d18744..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po deleted file mode 100644 index 2ca7b19ae..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/ur/LC_MESSAGES/django.po +++ /dev/null @@ -1,135 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-15 15:28+0000\n" -"Last-Translator: Django team\n" -"Language-Team: Urdu \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ur\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo deleted file mode 100644 index db1b1b3e5..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po deleted file mode 100644 index 9dba3f32a..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/vi/LC_MESSAGES/django.po +++ /dev/null @@ -1,135 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Vietnamese \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: vi\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "Nhãn:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "Lá»c:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "Xem:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "Ứng dụng %r không tìm thấy" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "Mẫu %(model_name)r không tìm thấy trong ứng dụng %(app_label)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "mẫu:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "liên quan tá»›i đối tượng `%(app_label)s.%(object_name)s`" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "Tất cả %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "số của %s" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "Hiện ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "Sá»­a lại đối tượng này (ở cá»­a sổ hiện tại)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "Sá»­a lại đối tượng này (trong cá»­a sổ má»›i)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "NhÆ° trên nhÆ°ng mở trang quản trị ở má»™t cá»­a sổ má»›i." diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_CN/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_CN/LC_MESSAGES/django.mo deleted file mode 100644 index 9e6e2b41e..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_CN/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_CN/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_CN/LC_MESSAGES/django.po deleted file mode 100644 index 2157ac709..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_CN/LC_MESSAGES/django.po +++ /dev/null @@ -1,141 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: Jannis \n" -"Language-Team: Chinese (China) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_CN\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "标签:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "过滤器:" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "视图:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "应用 %r 没有找到" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "在应用 %(app_label)r 里找ä¸åˆ°æ¨¡åž‹ %(model_name)r" - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "相关的 `%(app_label)s.%(data_type)s` 对象" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "模型:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "相关的 `%(app_label)s.%(object_name)s` 对象" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "所有 %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s çš„æ•°é‡" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s 对象的字段" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s 似乎ä¸æ˜¯ä¸€ä¸ª urlpattern 对象" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "首页" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "文档" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "书签" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "文档书签" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              为了安装书签,将链接拖到你的书签工具æ¡ï¼Œ\n" -"或者鼠标å³å‡»é“¾æŽ¥ï¼Œæ·»åŠ åˆ°ä½ çš„书签中。现在你å¯ä»¥ä»Žè¿™ä¸ªç«™\n" -"点的任何页é¢é€‰æ‹©ä¹¦ç­¾ã€‚注æ„,其中æŸäº›ä¹¦ç­¾è¦æ±‚你在一å°\n" -"被指定为\"内部\"的计算机上查看(如果ä¸ç¡®å®šä½ çš„计算机\n" -"是å¦ä¸º\"内部\"的,ä¸å¦¨è·Ÿä½ çš„系统管ç†å‘˜æ²Ÿé€šä¸€ä¸‹ï¼‰ã€‚

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "关于本页é¢çš„文档" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "从任何页é¢è·³è½¬åˆ°ç”Ÿæˆè¯¥é¡µé¢çš„ view 文档。" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "显示对象 ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "为那些展现å•ä¸ªå¯¹è±¡çš„页é¢ï¼Œæ˜¾ç¤º content-type 和唯一 ID。" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "编辑该对象(当å‰çª—å£)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "跳转到用于展现å•ä¸ªå¯¹è±¡çš„页é¢çš„管ç†é¡µã€‚" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "编辑该对象(新窗å£)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "åŒä¸Šï¼Œä½†åœ¨æ–°çª—å£ä¸­æ‰“开管ç†é¡µé¢ã€‚" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_TW/LC_MESSAGES/django.mo b/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_TW/LC_MESSAGES/django.mo deleted file mode 100644 index c7514cd5e..000000000 Binary files a/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_TW/LC_MESSAGES/django.mo and /dev/null differ diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_TW/LC_MESSAGES/django.po b/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_TW/LC_MESSAGES/django.po deleted file mode 100644 index bda7d79b3..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/locale/zh_TW/LC_MESSAGES/django.po +++ /dev/null @@ -1,140 +0,0 @@ -# This file is distributed under the same license as the Django package. -# -msgid "" -msgstr "" -"Project-Id-Version: Django\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-03-15 13:14-0400\n" -"PO-Revision-Date: 2011-03-04 18:37+0000\n" -"Last-Translator: quantum9876 \n" -"Language-Team: Chinese (Taiwan) \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: zh_TW\n" -"Plural-Forms: nplurals=1; plural=0\n" - -#: views.py:63 views.py:65 views.py:67 -msgid "tag:" -msgstr "標籤:" - -#: views.py:98 views.py:100 views.py:102 -msgid "filter:" -msgstr "éŽæ¿¾å™¨ï¼š" - -#: views.py:162 views.py:164 views.py:166 -msgid "view:" -msgstr "視圖:" - -#: views.py:194 -#, python-format -msgid "App %r not found" -msgstr "æ‡‰ç”¨ç¨‹å¼ %r 没有找到" - -#: views.py:201 -#, python-format -msgid "Model %(model_name)r not found in app %(app_label)r" -msgstr "未在%(app_label)r 找到模組 %(model_name)r " - -#: views.py:213 -#, python-format -msgid "the related `%(app_label)s.%(data_type)s` object" -msgstr "有關 `%(app_label)s.%(data_type)s` 的物件" - -#: views.py:213 views.py:232 views.py:237 views.py:251 views.py:265 -#: views.py:270 -msgid "model:" -msgstr "模型:" - -#: views.py:228 views.py:260 -#, python-format -msgid "related `%(app_label)s.%(object_name)s` objects" -msgstr "有關 `%(app_label)s.%(object_name)s` 的物件" - -#: views.py:232 views.py:265 -#, python-format -msgid "all %s" -msgstr "所有 %s" - -#: views.py:237 views.py:270 -#, python-format -msgid "number of %s" -msgstr "%s çš„æ•°é‡" - -#: views.py:275 -#, python-format -msgid "Fields on %s objects" -msgstr "%s 物件的欄ä½" - -#: views.py:365 -#, python-format -msgid "%s does not appear to be a urlpattern object" -msgstr "%s 似乎ä¸æ˜¯ä¸€å€‹ urlpattern 物件" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Home" -msgstr "首é " - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Documentation" -msgstr "文件" - -#: templates/admin_doc/bookmarklets.html:3 -msgid "Bookmarklets" -msgstr "書籤" - -#: templates/admin_doc/bookmarklets.html:4 -msgid "Documentation bookmarklets" -msgstr "文件 bookmarklets" - -#: templates/admin_doc/bookmarklets.html:8 -msgid "" -"\n" -"

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks\n" -"toolbar, or right-click the link and add it to your bookmarks. Now you can\n" -"select the bookmarklet from any page in the site. Note that some of these\n" -"bookmarklets require you to be viewing the site from a computer designated\n" -"as \"internal\" (talk to your system administrator if you aren't sure if\n" -"your computer is \"internal\").

                                                                                                                                                                                                                                                              \n" -msgstr "" -"\n" -"

                                                                                                                                                                                                                                                              è¦å®‰è£ bookmarklet,把連çµæ‹–進你的書籤工具列,或å³æ“Šè©²é€£çµ" -"後新增到你的書籤裡。ç¾åœ¨ä½ å¯ä»¥å¾žç¶²ç«™çš„任何é é¢ä¾†é¸æ“‡ bookmarklet。注æ„其中æŸ" -"些 bookmarklet è¦æ±‚你必須是從被稱為 \"內部\" 的電腦來檢視網站的 (如果你ä¸ç¢ºå®š" -"你的電腦是å¦åœ¨ \"內部\",那就和你的系統管ç†å“¡è«‡è«‡)。

                                                                                                                                                                                                                                                              \n" - -#: templates/admin_doc/bookmarklets.html:18 -msgid "Documentation for this page" -msgstr "本é é¢çš„文件" - -#: templates/admin_doc/bookmarklets.html:19 -msgid "" -"Jumps you from any page to the documentation for the view that generates " -"that page." -msgstr "讓你跳到用來產生該é é¢ä¹‹æª¢è¦–的任何一é æ–‡ä»¶ã€‚" - -#: templates/admin_doc/bookmarklets.html:21 -msgid "Show object ID" -msgstr "顯示物件 ID" - -#: templates/admin_doc/bookmarklets.html:22 -msgid "" -"Shows the content-type and unique ID for pages that represent a single " -"object." -msgstr "顯示用來表示單一物件的é é¢ content-type 與唯一 ID。" - -#: templates/admin_doc/bookmarklets.html:24 -msgid "Edit this object (current window)" -msgstr "編輯此物件 (ç›®å‰è¦–窗)" - -#: templates/admin_doc/bookmarklets.html:25 -msgid "Jumps to the admin page for pages that represent a single object." -msgstr "跳到用來表示單一物件的管ç†é é¢ã€‚" - -#: templates/admin_doc/bookmarklets.html:27 -msgid "Edit this object (new window)" -msgstr "編輯此物件 (新視窗)" - -#: templates/admin_doc/bookmarklets.html:28 -msgid "As above, but opens the admin page in a new window." -msgstr "åŒä¸Šï¼Œä½†åœ¨æ–°è¦–窗裡開啟管ç†é é¢ã€‚" diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/models.py b/lib/python2.7/site-packages/django/contrib/admindocs/models.py deleted file mode 100644 index a9f813a4c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/models.py +++ /dev/null @@ -1 +0,0 @@ -# Empty models.py to allow for specifying admindocs as a test label. diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/bookmarklets.html b/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/bookmarklets.html deleted file mode 100644 index 64475299c..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/bookmarklets.html +++ /dev/null @@ -1,31 +0,0 @@ -{% extends "admin/base_site.html" %} - -{% block breadcrumbs %}{% load i18n %}{% endblock %} -{% block title %}{% trans "Documentation bookmarklets" %}{% endblock %} - -{% block content %} - -{% blocktrans %} -

                                                                                                                                                                                                                                                              To install bookmarklets, drag the link to your bookmarks -toolbar, or right-click the link and add it to your bookmarks. Now you can -select the bookmarklet from any page in the site. Note that some of these -bookmarklets require you to be viewing the site from a computer designated -as "internal" (talk to your system administrator if you aren't sure if -your computer is "internal").

                                                                                                                                                                                                                                                              -{% endblocktrans %} - -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {% trans "Documentation for this page" %}

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {% trans "Jumps you from any page to the documentation for the view that generates that page." %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans "Show object ID" %}

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {% trans "Shows the content-type and unique ID for pages that represent a single object." %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans "Edit this object (current window)" %}

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {% trans "Jumps to the admin page for pages that represent a single object." %}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {% trans "Edit this object (new window)" %}

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {% trans "As above, but opens the admin page in a new window." %}

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/index.html b/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/index.html deleted file mode 100644 index a8b21c330..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/index.html +++ /dev/null @@ -1,28 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} -{% block breadcrumbs %}{% endblock %} -{% block title %}Documentation{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              Documentation

                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              Tags

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              List of all the template tags and their functions.

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              Filters

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              Filters are actions which can be applied to variables in a template to alter the output.

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              Models

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              Models are descriptions of all the objects in the system and their associated fields. Each model has a list of fields which can be accessed as template variables.

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              Views

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              Each page on the public site is generated by a view. The view defines which template is used to generate the page and which objects are available to that template.

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              Bookmarklets

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              Tools for your browser to quickly access admin functionality.

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -{% endblock %} - diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/missing_docutils.html b/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/missing_docutils.html deleted file mode 100644 index 97c9d4711..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/missing_docutils.html +++ /dev/null @@ -1,16 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} -{% block breadcrumbs %}{% endblock %} -{% block title %}Please install docutils{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              Documentation

                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              The admin documentation system requires Python's docutils library.

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              Please ask your administrators to install docutils.

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/model_detail.html b/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/model_detail.html deleted file mode 100644 index 828df1837..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/model_detail.html +++ /dev/null @@ -1,46 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} -{% block extrahead %} -{{ block.super }} - -{% endblock %} - -{% block breadcrumbs %}{% endblock %} - -{% block title %}Model: {{ name }}{% endblock %} - -{% block content %} -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {{ summary }}

                                                                                                                                                                                                                                                              - -{% if description %} -

                                                                                                                                                                                                                                                              {% filter linebreaksbr %}{% trans description %}{% endfilter %}

                                                                                                                                                                                                                                                              -{% endif %} - -
                                                                                                                                                                                                                                                              - - - - - - - - - -{% for field in fields|dictsort:"name" %} - - - - - -{% endfor %} - -
                                                                                                                                                                                                                                                              FieldTypeDescription
                                                                                                                                                                                                                                                              {{ field.name }}{{ field.data_type }}{{ field.verbose }}{% if field.help_text %} - {{ field.help_text|safe }}{% endif %}
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              ‹ Back to Models Documentation

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/model_index.html b/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/model_index.html deleted file mode 100644 index 47c94c0c7..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/model_index.html +++ /dev/null @@ -1,44 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} -{% block coltype %}colSM{% endblock %} -{% block breadcrumbs %}{% endblock %} - -{% block title %}Models{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              Model documentation

                                                                                                                                                                                                                                                              - -{% regroup models by app_label as grouped_models %} - -
                                                                                                                                                                                                                                                              -{% for group in grouped_models %} -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {{ group.grouper|capfirst }}

                                                                                                                                                                                                                                                              - - -{% for model in group.list %} - - - -{% endfor %} -
                                                                                                                                                                                                                                                              {{ model.object_name }}
                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endfor %} - -
                                                                                                                                                                                                                                                              -{% endblock %} - -{% block sidebar %} - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/template_detail.html b/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/template_detail.html deleted file mode 100644 index c04dedc53..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/template_detail.html +++ /dev/null @@ -1,21 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} -{% block breadcrumbs %}{% endblock %} - -{% block title %}Template: {{ name }}{% endblock %} - -{% block content %} -

                                                                                                                                                                                                                                                              Template: "{{ name }}"

                                                                                                                                                                                                                                                              - -{% regroup templates|dictsort:"site_id" by site as templates_by_site %} -{% for group in templates_by_site %} -

                                                                                                                                                                                                                                                              Search path for template "{{ name }}" on {{ group.grouper }}:

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                                - {% for template in group.list|dictsort:"order" %} -
                                                                                                                                                                                                                                                              1. {{ template.file }}{% if not template.exists %} (does not exist){% endif %}
                                                                                                                                                                                                                                                              2. - {% endfor %} -
                                                                                                                                                                                                                                                              -{% endfor %} - -

                                                                                                                                                                                                                                                              ‹ Back to Documentation

                                                                                                                                                                                                                                                              -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/template_filter_index.html b/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/template_filter_index.html deleted file mode 100644 index 46ccf0fd0..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/template_filter_index.html +++ /dev/null @@ -1,47 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} -{% block coltype %}colSM{% endblock %} -{% block breadcrumbs %}{% endblock %} -{% block title %}Template filters{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              Template filter documentation

                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -{% regroup filters|dictsort:"library" by library as filter_libraries %} -{% for library in filter_libraries %} -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {% firstof library.grouper "Built-in filters" %}

                                                                                                                                                                                                                                                              - {% if library.grouper %}

                                                                                                                                                                                                                                                              To use these filters, put {% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %} in your template before using the filter.


                                                                                                                                                                                                                                                              {% endif %} - {% for filter in library.list|dictsort:"name" %} -

                                                                                                                                                                                                                                                              {{ filter.name }}

                                                                                                                                                                                                                                                              - {{ filter.title }} - {{ filter.body }} - {% if not forloop.last %}
                                                                                                                                                                                                                                                              {% endif %} - {% endfor %} -
                                                                                                                                                                                                                                                              -{% endfor %} -
                                                                                                                                                                                                                                                              - -{% endblock %} - -{% block sidebar %} - - - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/template_tag_index.html b/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/template_tag_index.html deleted file mode 100644 index 676c025ac..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/template_tag_index.html +++ /dev/null @@ -1,47 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} -{% block coltype %}colSM{% endblock %} -{% block breadcrumbs %}{% endblock %} -{% block title %}Template tags{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              Template tag documentation

                                                                                                                                                                                                                                                              - -
                                                                                                                                                                                                                                                              -{% regroup tags|dictsort:"library" by library as tag_libraries %} -{% for library in tag_libraries %} -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {% firstof library.grouper "Built-in tags" %}

                                                                                                                                                                                                                                                              - {% if library.grouper %}

                                                                                                                                                                                                                                                              To use these tags, put {% templatetag openblock %} load {{ library.grouper }} {% templatetag closeblock %} in your template before using the tag.


                                                                                                                                                                                                                                                              {% endif %} - {% for tag in library.list|dictsort:"name" %} -

                                                                                                                                                                                                                                                              {{ tag.name }}

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {{ tag.title|striptags }}

                                                                                                                                                                                                                                                              - {{ tag.body }} - {% if not forloop.last %}
                                                                                                                                                                                                                                                              {% endif %} - {% endfor %} -
                                                                                                                                                                                                                                                              -{% endfor %} -
                                                                                                                                                                                                                                                              - -{% endblock %} - -{% block sidebar %} - - - -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/view_detail.html b/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/view_detail.html deleted file mode 100644 index c6d080c9e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/view_detail.html +++ /dev/null @@ -1,25 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} -{% block breadcrumbs %}{% endblock %} -{% block title %}View: {{ name }}{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              {{ name }}

                                                                                                                                                                                                                                                              - -

                                                                                                                                                                                                                                                              {{ summary|striptags }}

                                                                                                                                                                                                                                                              - -{{ body }} - -{% if meta.Context %} -

                                                                                                                                                                                                                                                              Context:

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {{ meta.Context }}

                                                                                                                                                                                                                                                              -{% endif %} - -{% if meta.Templates %} -

                                                                                                                                                                                                                                                              Templates:

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {{ meta.Templates }}

                                                                                                                                                                                                                                                              -{% endif %} - -

                                                                                                                                                                                                                                                              ‹ Back to Views Documentation

                                                                                                                                                                                                                                                              -{% endblock %} diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/view_index.html b/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/view_index.html deleted file mode 100644 index 6b10fa65e..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/templates/admin_doc/view_index.html +++ /dev/null @@ -1,43 +0,0 @@ -{% extends "admin/base_site.html" %} -{% load i18n %} -{% block coltype %}colSM{% endblock %} -{% block breadcrumbs %}{% endblock %} -{% block title %}Views{% endblock %} - -{% block content %} - -

                                                                                                                                                                                                                                                              View documentation

                                                                                                                                                                                                                                                              - -{% regroup views|dictsort:"site_id" by site as views_by_site %} - - - -
                                                                                                                                                                                                                                                              - -{% for site_views in views_by_site %} -
                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              Views by URL on {{ site_views.grouper.name }}

                                                                                                                                                                                                                                                              - -{% for view in site_views.list|dictsort:"url" %} -{% ifchanged %} -

                                                                                                                                                                                                                                                              {{ view.url }}

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              View function: {{ view.module }}.{{ view.name }}

                                                                                                                                                                                                                                                              -

                                                                                                                                                                                                                                                              {{ view.title }}

                                                                                                                                                                                                                                                              -
                                                                                                                                                                                                                                                              -{% endifchanged %} -{% endfor %} -
                                                                                                                                                                                                                                                              -{% endfor %} -
                                                                                                                                                                                                                                                              -{% endblock %} - - diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/tests/__init__.py b/lib/python2.7/site-packages/django/contrib/admindocs/tests/__init__.py deleted file mode 100644 index d28cb408b..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/tests/__init__.py +++ /dev/null @@ -1,31 +0,0 @@ -from django.contrib.admindocs import views -from django.db.models import fields as builtin_fields -from django.utils import unittest - -import fields - - -class TestFieldType(unittest.TestCase): - def setUp(self): - pass - - def test_field_name(self): - self.assertRaises(AttributeError, - views.get_readable_field_data_type, "NotAField" - ) - - def test_builtin_fields(self): - self.assertEqual( - views.get_readable_field_data_type(builtin_fields.BooleanField()), - u'Boolean (Either True or False)' - ) - - def test_custom_fields(self): - self.assertEqual( - views.get_readable_field_data_type(fields.CustomField()), - u'A custom field type' - ) - self.assertEqual( - views.get_readable_field_data_type(fields.DescriptionLackingField()), - u'Field of type: DescriptionLackingField' - ) diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/tests/fields.py b/lib/python2.7/site-packages/django/contrib/admindocs/tests/fields.py deleted file mode 100644 index e59498afb..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/tests/fields.py +++ /dev/null @@ -1,7 +0,0 @@ -from django.db import models - -class CustomField(models.Field): - description = "A custom field type" - -class DescriptionLackingField(models.Field): - pass diff --git a/lib/python2.7/site-packages/django/contrib/admindocs/urls.py b/lib/python2.7/site-packages/django/contrib/admindocs/urls.py deleted file mode 100644 index 57edb5697..000000000 --- a/lib/python2.7/site-packages/django/contrib/admindocs/urls.py +++ /dev/null @@ -1,41 +0,0 @@ -from django.conf.urls.defaults import * -from django.contrib.admindocs import views - -urlpatterns = patterns('', - url('^$', - views.doc_index, - name='django-admindocs-docroot' - ), - url('^bookmarklets/$', - views.bookmarklets, - name='django-admindocs-bookmarklets' - ), - url('^tags/$', - views.template_tag_index, - name='django-admindocs-tags' - ), - url('^filters/$', - views.template_filter_index, - name='django-admindocs-filters' - ), - url('^views/$', - views.view_index, - name='django-admindocs-views-index' - ), - url('^views/(?P[^/]+)/$', - views.view_detail, - name='django-admindocs-views-detail' - ), - url('^models/$', - views.model_index, - name='django-admindocs-models-index' - ), - url('^models/(?P[^\.]+)\.(?P[^/]+)/$', - views.model_detail, - name='django-admindocs-models-detail' - ), - url('^templates/(?P