Commit bff3bebd by Xavier Ordoquy

Merge remote-tracking branch 'reference/stable/3.3.x' into merge_test

# Conflicts:
#	docs/topics/release-notes.md
parents 10a080d3 0c42c742
......@@ -26,7 +26,6 @@ Typically when using the generic views, you'll override the view, and set severa
queryset = User.objects.all()
serializer_class = UserSerializer
permission_classes = (IsAdminUser,)
paginate_by = 100
For more complex cases you might also want to override various methods on the view class. For example.
......@@ -72,8 +71,6 @@ The following attributes are used to control pagination when used with list view
* `pagination_class` - The pagination class that should be used when paginating list results. Defaults to the same value as the `DEFAULT_PAGINATION_CLASS` setting, which is `'rest_framework.pagination.PageNumberPagination'`.
Note that usage of the `paginate_by`, `paginate_by_param` and `page_kwarg` attributes are now pending deprecation. The `pagination_serializer_class` attribute and `DEFAULT_PAGINATION_SERIALIZER_CLASS` setting have been removed completely. Pagination settings should instead be controlled by overriding a pagination class and setting any configuration attributes there. See the pagination documentation for more details.
**Filtering**:
* `filter_backends` - A list of filter backend classes that should be used for filtering the queryset. Defaults to the same value as the `DEFAULT_FILTER_BACKENDS` setting.
......
......@@ -102,9 +102,15 @@ Default: `'rest_framework.negotiation.DefaultContentNegotiation'`
#### DEFAULT_PAGINATION_SERIALIZER_CLASS
A class the determines the default serialization style for paginated responses.
---
**This setting has been removed.**
Default: `rest_framework.pagination.PaginationSerializer`
The pagination API does not use serializers to determine the output format, and
you'll need to instead override the `get_paginated_response method on a
pagination class in order to specify how the output format is controlled.
---
#### DEFAULT_FILTER_BACKENDS
......@@ -113,60 +119,39 @@ If set to `None` then generic filtering is disabled.
#### PAGINATE_BY
The default page size to use for pagination. If set to `None`, pagination is disabled by default.
Default: `None`
#### PAGINATE_BY_PARAM
---
**This setting is pending deprecation.**
**This setting has been removed.**
See the pagination documentation for further guidance on [setting the pagination style](pagination.md#modifying-the-pagination-style).
---
The name of a query parameter, which can be used by the client to override the default page size to use for pagination. If set to `None`, clients may not override the default page size.
For example, given the following settings:
REST_FRAMEWORK = {
'PAGINATE_BY': 10,
'PAGINATE_BY_PARAM': 'page_size',
}
#### PAGE_SIZE
A client would be able to modify the pagination size by using the `page_size` query parameter. For example:
GET http://example.com/api/accounts?page_size=25
The default page size to use for pagination. If set to `None`, pagination is disabled by default.
Default: `None`
#### MAX_PAGINATE_BY
#### PAGINATE_BY_PARAM
---
**This setting is pending deprecation.**
**This setting has been removed.**
See the pagination documentation for further guidance on [setting the pagination style](pagination.md#modifying-the-pagination-style).
---
The maximum page size to allow when the page size is specified by the client. If set to `None`, then no maximum limit is applied.
For example, given the following settings:
#### MAX_PAGINATE_BY
REST_FRAMEWORK = {
'PAGINATE_BY': 10,
'PAGINATE_BY_PARAM': 'page_size',
'MAX_PAGINATE_BY': 100
}
---
A client request like the following would return a paginated list of up to 100 items.
**This setting is pending deprecation.**
GET http://example.com/api/accounts?page_size=999
See the pagination documentation for further guidance on [setting the pagination style](pagination.md#modifying-the-pagination-style).
Default: `None`
---
### SEARCH_PARAM
......
......@@ -38,7 +38,7 @@ You can determine your currently installed version using `pip freeze`:
---
## 3.3.x series
## 3.4.x series
### 3.4
......@@ -47,6 +47,38 @@ You can determine your currently installed version using `pip freeze`:
* Dropped support for EOL Django 1.7 ([#3933][gh3933])
* Fixed null foreign keys targeting UUIDField primary keys. ([#3936][gh3936])
## 3.3.x series
### 3.3.3
**Date**: [14th March 2016][3.3.3-milestone].
* Remove version string from templates. Thanks to @blag for the report and fixes. ([#3878][gh3878], [#3913][gh3913], [#3912][gh3912])
* Fixes vertical html layout for `BooleanField`. Thanks to Mikalai Radchuk for the fix. ([#3910][gh3910])
* Silenced deprecation warnings on Django 1.8. Thanks to Simon Charette for the fix. ([#3903][gh3903])
* Internationalization for authtoken. Thanks to Michael Nacharov for the fix. ([#3887][gh3887], [#3968][gh3968])
* Fix `Token` model as `abstract` when the authtoken application isn't declared. Thanks to Adam Thomas for the report. ([#3860][gh3860], [#3858][gh3858])
* Improve Markdown version compatibility. Thanks to Michael J. Schultz for the fix. ([#3604][gh3604], [#3842][gh3842])
* `QueryParameterVersioning` does not use `DEFAULT_VERSION` setting. Thanks to Brad Montgomery for the fix. ([#3833][gh3833])
* Add an explicit `on_delete` on the models. Thanks to Mads Jensen for the fix. ([#3832][gh3832])
* Fix `DateField.to_representation` to work with Python 2 unicode. Thanks to Mikalai Radchuk for the fix. ([#3819][gh3819])
* Fixed `TimeField` not handling string times. Thanks to Areski Belaid for the fix. ([#3809][gh3809])
* Avoid updates of `Meta.extra_kwargs`. Thanks to Kevin Massey for the report and fix. ([#3805][gh3805], [#3804][gh3804])
* Fix nested validation error being rendered incorrectly. Thanks to Craig de Stigter for the fix. ([#3801][gh3801])
* Document how to avoid CSRF and missing button issues with `django-crispy-forms`. Thanks to Emmanuelle Delescolle, José Padilla and Luis San Pablo for the report, analysis and fix. ([#3787][gh3787], [#3636][gh3636], [#3637][gh3637])
* Improve Rest Framework Settings file setup time. Thanks to Miles Hutson for the report and Mads Jensen for the fix. ([#3786][gh3786], [#3815][gh3815])
* Improve authtoken compatibility with Django 1.9. Thanks to S. Andrew Sheppard for the fix. ([#3785][gh3785])
* Fix `Min/MaxValueValidator` transfer from a model's `DecimalField`. Thanks to Kevin Brown for the fix. ([#3774][gh3774])
* Improve HTML title in the Browsable API. Thanks to Mike Lissner for the report and fix. ([#3769][gh3769])
* Fix `AutoFilterSet` to inherit from `default_filter_set`. Thanks to Tom Linford for the fix. ([#3753][gh3753])
* Fix transifex config to handle the new Chinese language codes. Thanks to @nypisces for the report and fix. ([#3739][gh3739])
* `DateTimeField` does not handle empty values correctly. Thanks to Mick Parker for the report and fix. ([#3731][gh3731], [#3726][gh3728])
* Raise error when setting a removed rest_framework setting. Thanks to Luis San Pablo for the fix. ([#3715][gh3715])
* Add missing csrf_token in AdminRenderer post form. Thanks to Piotr Śniegowski for the fix. ([#3703][gh3703])
* Refactored `_get_reverse_relationships()` to use correct `to_field`. Thanks to Benjamin Phillips for the fix. ([#3696][gh3696])
* Document the use of `get_queryset` for `RelatedField`. Thanks to Ryan Hiebert for the fix. ([#3605][gh3605])
* Fix empty pk detection in HyperlinkRelatedField.get_url. Thanks to @jslang for the fix ([#3962][gh3962])
### 3.3.2
**Date**: [14th December 2015][3.3.2-milestone].
......@@ -377,6 +409,7 @@ For older release notes, [please see the version 2.x documentation][old-release-
[3.3.0-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.3.0+Release%22
[3.3.1-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.3.1+Release%22
[3.3.2-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.3.2+Release%22
[3.3.3-milestone]: https://github.com/tomchristie/django-rest-framework/issues?q=milestone%3A%223.3.3+Release%22
<!-- 3.0.1 -->
[gh2013]: https://github.com/tomchristie/django-rest-framework/issues/2013
......@@ -656,3 +689,40 @@ For older release notes, [please see the version 2.x documentation][old-release-
[gh3714]: https://github.com/tomchristie/django-rest-framework/issues/3714
[gh3718]: https://github.com/tomchristie/django-rest-framework/issues/3718
[gh3723]: https://github.com/tomchristie/django-rest-framework/issues/3723
<!-- 3.3.3 -->
[gh3968]: https://github.com/tomchristie/django-rest-framework/issues/3968
[gh3962]: https://github.com/tomchristie/django-rest-framework/issues/3962
[gh3913]: https://github.com/tomchristie/django-rest-framework/issues/3913
[gh3912]: https://github.com/tomchristie/django-rest-framework/issues/3912
[gh3910]: https://github.com/tomchristie/django-rest-framework/issues/3910
[gh3903]: https://github.com/tomchristie/django-rest-framework/issues/3903
[gh3887]: https://github.com/tomchristie/django-rest-framework/issues/3887
[gh3878]: https://github.com/tomchristie/django-rest-framework/issues/3878
[gh3860]: https://github.com/tomchristie/django-rest-framework/issues/3860
[gh3858]: https://github.com/tomchristie/django-rest-framework/issues/3858
[gh3842]: https://github.com/tomchristie/django-rest-framework/issues/3842
[gh3833]: https://github.com/tomchristie/django-rest-framework/issues/3833
[gh3832]: https://github.com/tomchristie/django-rest-framework/issues/3832
[gh3819]: https://github.com/tomchristie/django-rest-framework/issues/3819
[gh3815]: https://github.com/tomchristie/django-rest-framework/issues/3815
[gh3809]: https://github.com/tomchristie/django-rest-framework/issues/3809
[gh3805]: https://github.com/tomchristie/django-rest-framework/issues/3805
[gh3804]: https://github.com/tomchristie/django-rest-framework/issues/3804
[gh3801]: https://github.com/tomchristie/django-rest-framework/issues/3801
[gh3787]: https://github.com/tomchristie/django-rest-framework/issues/3787
[gh3786]: https://github.com/tomchristie/django-rest-framework/issues/3786
[gh3785]: https://github.com/tomchristie/django-rest-framework/issues/3785
[gh3774]: https://github.com/tomchristie/django-rest-framework/issues/3774
[gh3769]: https://github.com/tomchristie/django-rest-framework/issues/3769
[gh3753]: https://github.com/tomchristie/django-rest-framework/issues/3753
[gh3739]: https://github.com/tomchristie/django-rest-framework/issues/3739
[gh3731]: https://github.com/tomchristie/django-rest-framework/issues/3731
[gh3728]: https://github.com/tomchristie/django-rest-framework/issues/3726
[gh3715]: https://github.com/tomchristie/django-rest-framework/issues/3715
[gh3703]: https://github.com/tomchristie/django-rest-framework/issues/3703
[gh3696]: https://github.com/tomchristie/django-rest-framework/issues/3696
[gh3637]: https://github.com/tomchristie/django-rest-framework/issues/3637
[gh3636]: https://github.com/tomchristie/django-rest-framework/issues/3636
[gh3605]: https://github.com/tomchristie/django-rest-framework/issues/3605
[gh3604]: https://github.com/tomchristie/django-rest-framework/issues/3604
......@@ -6,3 +6,6 @@ twine==1.4.0
# Transifex client for managing translation resources.
transifex-client==0.11
# Pandoc to have a nice pypi page
pypandoc
......@@ -8,7 +8,7 @@ ______ _____ _____ _____ __
"""
__title__ = 'Django REST framework'
__version__ = '3.3.2'
__version__ = '3.3.3'
__author__ = 'Tom Christie'
__license__ = 'BSD 2-Clause'
__copyright__ = 'Copyright 2011-2016 Tom Christie'
......
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.conf import settings
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('authtoken', '0001_initial'),
]
operations = [
migrations.AlterModelOptions(
name='token',
options={'verbose_name_plural': 'Tokens', 'verbose_name': 'Token'},
),
migrations.AlterField(
model_name='token',
name='created',
field=models.DateTimeField(verbose_name='Created', auto_now_add=True),
),
migrations.AlterField(
model_name='token',
name='key',
field=models.CharField(verbose_name='Key', max_length=40, primary_key=True, serialize=False),
),
migrations.AlterField(
model_name='token',
name='user',
field=models.OneToOneField(to=settings.AUTH_USER_MODEL, verbose_name='User', related_name='auth_token'),
),
]
......@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: Acoli (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ach/)\n"
"MIME-Version: 1.0\n"
......@@ -17,43 +17,75 @@ msgstr ""
"Language: ach\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr ""
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr ""
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr ""
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr ""
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr ""
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr ""
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr ""
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr ""
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr ""
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr ""
......@@ -108,7 +140,7 @@ msgstr ""
msgid "Request was throttled."
msgstr ""
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr ""
......@@ -126,7 +158,7 @@ msgstr ""
msgid "This field may not be blank."
msgstr ""
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr ""
......@@ -212,137 +244,136 @@ msgstr ""
msgid "Expected a datetime but got a date."
msgstr ""
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr ""
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr ""
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr ""
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr ""
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr ""
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr ""
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr ""
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr ""
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr ""
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr ""
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr ""
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr ""
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr ""
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr ""
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr ""
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr ""
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr ""
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr ""
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr ""
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr ""
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr ""
......
......@@ -8,8 +8,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: Arabic (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ar/)\n"
"MIME-Version: 1.0\n"
......@@ -18,43 +18,75 @@ msgstr ""
"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"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr ""
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr ""
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr ""
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr "اسم المستخدم/كلمة السر غير صحيحين."
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr "المستخدم غير مفعل او تم حذفه."
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr ""
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr ""
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr ""
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr ""
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr "حساب المستخدم غير مفعل."
......@@ -109,7 +141,7 @@ msgstr ""
msgid "Request was throttled."
msgstr ""
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr "هذا الحقل مطلوب."
......@@ -127,7 +159,7 @@ msgstr "\"{input}\" ليس قيمة منطقية."
msgid "This field may not be blank."
msgstr "لا يمكن لهذا الحقل ان يكون فارغاً."
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr "تأكد ان الحقل لا يزيد عن {max_length} محرف."
......@@ -213,137 +245,136 @@ msgstr "صيغة التاريخ و الوقت غير صحيحة. عليك أن
msgid "Expected a datetime but got a date."
msgstr ""
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr "صيغة التاريخ غير صحيحة. عليك أن تستخدم واحدة من هذه الصيغ التالية: {format}."
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr ""
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr "صيغة الوقت غير صحيحة. عليك أن تستخدم واحدة من هذه الصيغ التالية: {format}."
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr "\"{input}\" ليست واحدة من الخيارات الصالحة."
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr ""
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr ""
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr ""
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr "لم يتم إرسال أي ملف."
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr ""
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr ""
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr "الملف الذي تم إرساله فارغ."
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr "تأكد ان اسم الملف لا يحوي أكثر من {max_length} محرف (الإسم المرسل يحوي {length} محرف)."
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr ""
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr ""
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgstr "رقم الصفحة \"{page_number}\" غير صالح : {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr ""
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr "معرف العنصر \"{pk_value}\" غير صالح - العنصر غير موجود."
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr ""
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr ""
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr ""
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr ""
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr ""
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr ""
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr "قيمة غير صالحة."
......
......@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: Belarusian (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/be/)\n"
"MIME-Version: 1.0\n"
......@@ -17,43 +17,75 @@ msgstr ""
"Language: be\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr ""
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr ""
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr ""
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr ""
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr ""
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr ""
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr ""
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr ""
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr ""
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr ""
......@@ -108,7 +140,7 @@ msgstr ""
msgid "Request was throttled."
msgstr ""
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr ""
......@@ -126,7 +158,7 @@ msgstr ""
msgid "This field may not be blank."
msgstr ""
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr ""
......@@ -212,137 +244,136 @@ msgstr ""
msgid "Expected a datetime but got a date."
msgstr ""
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr ""
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr ""
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr ""
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr ""
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr ""
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr ""
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr ""
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr ""
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr ""
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr ""
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr ""
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr ""
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr ""
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr ""
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr ""
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr ""
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr ""
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr ""
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr ""
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr ""
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr ""
......
......@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: Catalan (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ca/)\n"
"MIME-Version: 1.0\n"
......@@ -17,43 +17,75 @@ msgstr ""
"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr "Header Basic invàlid. No hi ha disponibles les credencials."
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr "Header Basic invàlid. Les credencials no poden contenir espais."
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr "Header Basic invàlid. Les credencials no estan codificades correctament en base64."
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr "Usuari/Contrasenya incorrectes."
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr "Usuari inactiu o esborrat."
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr "Token header invàlid. No s'han indicat les credencials."
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr "Token header invàlid. El token no ha de contenir espais."
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr "Token header invàlid. El token no pot contenir caràcters invàlids."
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr "Token invàlid."
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr "Compte d'usuari desactivat."
......@@ -108,7 +140,7 @@ msgstr "Media type \"{media_type}\" no suportat."
msgid "Request was throttled."
msgstr "La petició ha estat limitada pel número màxim de peticions definit."
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr "Aquest camp és obligatori."
......@@ -126,7 +158,7 @@ msgstr "\"{input}\" no és un booleà."
msgid "This field may not be blank."
msgstr "Aquest camp no pot estar en blanc."
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr "Aquest camp no pot tenir més de {max_length} caràcters."
......@@ -212,137 +244,136 @@ msgstr "El Datetime té un format incorrecte. Utilitzi un d'aquests formats: {fo
msgid "Expected a datetime but got a date."
msgstr "S'espera un Datetime però s'ha rebut un Date."
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr "El Date té un format incorrecte. Utilitzi un d'aquests formats: {format}."
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr "S'espera un Date però s'ha rebut un Datetime."
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr "El Time té un format incorrecte. Utilitzi un d'aquests formats: {format}."
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr "La durada té un format incorrecte. Utilitzi un d'aquests formats: {format}."
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr "\"{input}\" no és una opció vàlida."
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr ""
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr "S'espera una llista d'ítems però s'ha rebut el tipus \"{input_type}\"."
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr "Aquesta selecció no pot estar buida."
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr "\"{input}\" no és un path vàlid."
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr "No s'ha enviat cap fitxer."
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr "Les dades enviades no són un fitxer. Comproveu l'encoding type del formulari."
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr "No s'ha pogut determinar el nom del fitxer."
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr "El fitxer enviat està buit."
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr "El nom del fitxer ha de tenir com a màxim {max_length} caràcters (en té {length})."
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr "Envieu una imatge vàlida. El fitxer enviat no és una imatge o és una imatge corrompuda."
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr "Aquesta llista no pot estar buida."
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr "S'espera un diccionari però s'ha rebut el tipus \"{input_type}\"."
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgstr "Pàgina invàlida \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr "Cursor invàlid."
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr "PK invàlida \"{pk_value}\" - l'objecte no existeix."
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr "Tipus incorrecte. S'espera el valor d'una PK, s'ha rebut {data_type}."
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr "Hyperlink invàlid - Cap match d'URL."
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr "Hyperlink invàlid - Match d'URL incorrecta."
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr "Hyperlink invàlid - L'objecte no existeix."
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr "Tipus incorrecte. S'espera una URL, s'ha rebut {data_type}."
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr "L'objecte amb {slug_name}={value} no existeix."
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr "Valor invàlid."
......
......@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: Catalan (Spain) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/ca_ES/)\n"
"MIME-Version: 1.0\n"
......@@ -17,43 +17,75 @@ msgstr ""
"Language: ca_ES\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr ""
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr ""
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr ""
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr ""
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr ""
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr ""
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr ""
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr ""
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr ""
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr ""
......@@ -108,7 +140,7 @@ msgstr ""
msgid "Request was throttled."
msgstr ""
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr ""
......@@ -126,7 +158,7 @@ msgstr ""
msgid "This field may not be blank."
msgstr ""
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr ""
......@@ -212,137 +244,136 @@ msgstr ""
msgid "Expected a datetime but got a date."
msgstr ""
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr ""
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr ""
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr ""
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr ""
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr ""
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr ""
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr ""
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr ""
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr ""
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr ""
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr ""
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr ""
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr ""
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr ""
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr ""
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr ""
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr ""
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr ""
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr ""
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr ""
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr ""
......
......@@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: Czech (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/cs/)\n"
"MIME-Version: 1.0\n"
......@@ -19,43 +19,75 @@ msgstr ""
"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr "Chybná hlavička. Nebyly poskytnuty přihlašovací údaje."
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr "Chybná hlavička. Přihlašovací údaje by neměly obsahovat mezery."
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr "Chybná hlavička. Přihlašovací údaje nebyly správně zakódovány pomocí base64."
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr "Chybné uživatelské jméno nebo heslo."
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr "Uživatelský účet je neaktivní nebo byl smazán."
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr "Chybná hlavička tokenu. Nebyly zadány přihlašovací údaje."
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr "Chybná hlavička tokenu. Přihlašovací údaje by neměly obsahovat mezery."
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr ""
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr "Chybný token."
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr "Uživatelský účet je uzamčen."
......@@ -110,7 +142,7 @@ msgstr "Nepodporovaný media type \"{media_type}\" v požadavku."
msgid "Request was throttled."
msgstr "Požadavek byl limitován kvůli omezení počtu požadavků za časovou periodu."
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr "Toto pole je vyžadováno."
......@@ -128,7 +160,7 @@ msgstr "\"{input}\" nelze použít jako typ boolean."
msgid "This field may not be blank."
msgstr "Toto pole nesmí být prázdné."
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr "Zkontrolujte, že toto pole není delší než {max_length} znaků."
......@@ -214,137 +246,136 @@ msgstr "Chybný formát data a času. Použijte jeden z těchto formátů: {form
msgid "Expected a datetime but got a date."
msgstr "Bylo zadáno pouze datum bez času."
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr "Chybný formát data. Použijte jeden z těchto formátů: {format}."
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr "Bylo zadáno datum a čas, místo samotného data."
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr "Chybný formát času. Použijte jeden z těchto formátů: {format}."
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr "\"{input}\" není platnou možností."
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr ""
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr "Byl očekáván seznam položek ale nalezen \"{input_type}\"."
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr ""
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr ""
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr "Nebyl zaslán žádný soubor."
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr "Zaslaná data neobsahují soubor. Zkontrolujte typ kódování ve formuláři."
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr "Nebylo možné zjistit jméno souboru."
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr "Zaslaný soubor je prázdný."
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr "Zajistěte, aby jméno souboru obsahovalo maximálně {max_length} znaků (teď má {length} znaků)."
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr "Nahrajte platný obrázek. Nahraný soubor buď není obrázkem nebo je poškozen."
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr ""
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr "Byl očekáván slovník položek ale nalezen \"{input_type}\"."
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgstr "Chybné čislo stránky \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr "Chybný kurzor."
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr "Chybný primární klíč \"{pk_value}\" - objekt neexistuje."
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr "Chybný typ. Byl přijat typ {data_type} místo hodnoty primárního klíče."
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr "Chybný odkaz - nebyla nalezena žádní shoda."
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr "Chybný odkaz - byla nalezena neplatná shoda."
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr "Chybný odkaz - objekt neexistuje."
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr "Chybný typ. Byl přijat typ {data_type} místo očekávaného odkazu."
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr "Objekt s {slug_name}={value} neexistuje."
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr "Chybná hodnota."
......
......@@ -3,14 +3,14 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
# Mads Jensen <mje@inducks.org>, 2015
# Mads Jensen <mje@inducks.org>, 2015-2016
# Mikkel Munch Mortensen <3xm@detfalskested.dk>, 2015
msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: Danish (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/da/)\n"
"MIME-Version: 1.0\n"
......@@ -19,43 +19,75 @@ msgstr ""
"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr "Ugyldig basic header. Ingen legitimation angivet."
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr "Ugyldig basic header. Legitimationsstrenge må ikke indeholde mellemrum."
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr "Ugyldig basic header. Legitimationen er ikke base64 encoded på korrekt vis."
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr "Ugyldigt brugernavn/kodeord."
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr "Inaktiv eller slettet bruger."
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr "Ugyldig token header."
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr "Ugyldig token header. Token-strenge må ikke indeholde mellemrum."
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr "Ugyldig token header. Token streng bør ikke indeholde ugyldige karakterer."
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr "Ugyldigt token."
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr "Brugerkontoen er deaktiveret."
......@@ -110,7 +142,7 @@ msgstr "Forespørgslens media type, \"{media_type}\", er ikke understøttet."
msgid "Request was throttled."
msgstr "Forespørgslen blev neddroslet."
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr "Dette felt er påkrævet."
......@@ -128,7 +160,7 @@ msgstr "\"{input}\" er ikke en tilladt boolsk værdi."
msgid "This field may not be blank."
msgstr "Dette felt må ikke være tomt."
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr "Tjek at dette felt ikke indeholder flere end {max_length} tegn."
......@@ -214,137 +246,136 @@ msgstr "Datotid har et forkert format. Brug i stedet et af disse formater: {form
msgid "Expected a datetime but got a date."
msgstr "Forventede en datotid, men fik en dato."
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr "Dato har et forkert format. Brug i stedet et af disse formater: {format}."
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr "Forventede en dato men fik en datotid."
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr "Klokkeslæt har forkert format. Brug i stedet et af disse formater: {format}. "
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr "Varighed har forkert format. Brug istedet et af følgende formater: {format}."
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr "\"{input}\" er ikke et gyldigt valg."
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr "Flere end {count} objekter..."
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr "Forventede en liste, men fik noget af typen \"{input_type}\"."
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr "Dette valg kan være tomt."
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr "\"{input}\" er ikke et gyldigt valg af adresse."
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr "Ingen medsendt fil."
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr "Det medsendte data var ikke en fil. Tjek typen af indkodning på formularen."
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr "Filnavnet kunne ikke afgøres."
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr "Den medsendte fil er tom."
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr "Sørg for at filnavnet er højst {max_length} langt (det er {length})."
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr "Medsend et gyldigt billede. Den medsendte fil var enten ikke et billede eller billedfilen var ødelagt."
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr "Denne liste er muligvis ikke tom."
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr "Forventede en dictionary, men fik noget af typen \"{input_type}\"."
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
msgstr "Værdi skal være gyldig JSON."
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
msgstr "Indsend."
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgstr "Ugyldig side \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr "Ugyldig cursor"
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr "Ugyldig primærnøgle \"{pk_value}\" - objektet findes ikke."
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr "Ugyldig type. Forventet værdi er primærnøgle, fik {data_type}."
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr "Ugyldigt hyperlink - intet URL match."
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr "Ugyldigt hyperlink - forkert URL match."
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr "Ugyldigt hyperlink - objektet findes ikke."
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr "Forkert type. Forventede en URL-streng, fik {data_type}."
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr "Object med {slug_name}={value} findes ikke."
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr "Ugyldig værdi."
......@@ -356,20 +387,20 @@ msgstr "Ugyldig data. Forventede en dictionary, men fik {datatype}."
#: templates/rest_framework/admin.html:118
#: templates/rest_framework/base.html:128
msgid "Filters"
msgstr ""
msgstr "Filtre"
#: templates/rest_framework/filters/django_filter.html:2
#: templates/rest_framework/filters/django_filter_crispyforms.html:4
msgid "Field filters"
msgstr ""
msgstr "Søgefiltre"
#: templates/rest_framework/filters/ordering.html:3
msgid "Ordering"
msgstr ""
msgstr "Sortering"
#: templates/rest_framework/filters/search.html:2
msgid "Search"
msgstr ""
msgstr "Søg"
#: templates/rest_framework/horizontal/radio.html:2
#: templates/rest_framework/inline/radio.html:2
......
......@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: Danish (Denmark) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/da_DK/)\n"
"MIME-Version: 1.0\n"
......@@ -17,43 +17,75 @@ msgstr ""
"Language: da_DK\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr ""
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr ""
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr ""
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr ""
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr ""
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr ""
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr ""
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr ""
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr ""
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr ""
......@@ -108,7 +140,7 @@ msgstr ""
msgid "Request was throttled."
msgstr ""
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr ""
......@@ -126,7 +158,7 @@ msgstr ""
msgid "This field may not be blank."
msgstr ""
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr ""
......@@ -212,137 +244,136 @@ msgstr ""
msgid "Expected a datetime but got a date."
msgstr ""
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr ""
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr ""
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr ""
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr ""
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr ""
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr ""
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr ""
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr ""
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr ""
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr ""
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr ""
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr ""
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr ""
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr ""
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr ""
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr ""
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr ""
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr ""
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr ""
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr ""
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr ""
......
......@@ -13,9 +13,9 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-08 18:25+0000\n"
"Last-Translator: Fabian Büchler <fabian@buechler.io>\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: German (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/de/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
......@@ -23,43 +23,75 @@ msgstr ""
"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr "Ungültiger basic header. Keine Zugangsdaten angegeben."
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr "Ungültiger basic header. Zugangsdaten sollen keine Leerzeichen enthalten."
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr "Ungültiger basic header. Zugangsdaten sind nicht korrekt mit base64 kodiert."
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr "Ungültiger Benutzername/Passwort"
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr "Benutzer inaktiv oder gelöscht."
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr "Ungültiger token header. Keine Zugangsdaten angegeben."
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr "Ungültiger token header. Zugangsdaten sollen keine Leerzeichen enthalten."
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr "Ungültiger Token Header. Tokens dürfen keine ungültigen Zeichen enthalten."
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr "Ungültiges Token"
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr "Benutzerkonto ist gesperrt."
......@@ -114,7 +146,7 @@ msgstr "Nicht unterstützter Medientyp \"{media_type}\" in der Anfrage."
msgid "Request was throttled."
msgstr "Die Anfrage wurde gedrosselt."
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr "Dieses Feld ist erforderlich."
......@@ -132,7 +164,7 @@ msgstr "\"{input}\" ist kein gültiger Wahrheitswert."
msgid "This field may not be blank."
msgstr "Dieses Feld darf nicht leer sein."
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr "Stelle sicher, dass dieses Feld nicht mehr als {max_length} Zeichen lang ist."
......@@ -218,137 +250,136 @@ msgstr "Datums- und Zeitangabe hat das falsche Format. Nutze stattdessen eines d
msgid "Expected a datetime but got a date."
msgstr "Erwarte eine Datums- und Zeitangabe, erhielt aber ein Datum."
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr "Datum hat das falsche Format. Nutze stattdessen eines dieser Formate: {format}."
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr "Erwarte ein Datum, erhielt aber eine Datums- und Zeitangabe."
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr "Zeitangabe hat das falsche Format. Nutze stattdessen eines dieser Formate: {format}."
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr "Laufzeit hat das falsche Format. Benutze stattdessen eines dieser Formate {format}."
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr "\"{input}\" ist keine gültige Option."
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr "Mehr als {count} Ergebnisse"
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr "Erwarte eine Liste von Elementen, erhielt aber den Typ \"{input_type}\"."
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr "Diese Auswahl darf nicht leer sein"
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr "\"{input}\" ist ein ungültiger Pfad Wahl."
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr "Es wurde keine Datei übermittelt."
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr "Die übermittelten Daten stellen keine Datei dar. Prüfe den Kodierungstyp im Formular."
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr "Der Dateiname konnte nicht ermittelt werden."
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr "Die übermittelte Datei ist leer."
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr "Stelle sicher, dass dieser Dateiname höchstens {max_length} Zeichen lang ist (er hat {length})."
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr "Lade ein gültiges Bild hoch. Die hochgeladene Datei ist entweder kein Bild oder ein beschädigtes Bild."
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr "Diese Liste darf nicht leer sein."
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr "Erwarte ein Dictionary mit Elementen, erhielt aber den Typ \"{input_type}\"."
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr "Wert muss gültiges JSON sein."
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr "Abschicken"
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgstr "Ungültige Seite \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr "Ungültiger Zeiger"
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr "Ungültiger pk \"{pk_value}\" - Object existiert nicht."
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr "Falscher Typ. Erwarte pk Wert, erhielt aber {data_type}."
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr "Ungültiger Hyperlink - entspricht keiner URL."
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr "Ungültiger Hyperlink - URL stimmt nicht überein."
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr "Ungültiger Hyperlink - Objekt existiert nicht."
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr "Falscher Typ. Erwarte URL Zeichenkette, erhielt aber {data_type}."
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr "Objekt mit {slug_name}={value} existiert nicht."
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr "Ungültiger Wert."
......
......@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: English (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/en/)\n"
"MIME-Version: 1.0\n"
......@@ -17,43 +17,75 @@ msgstr ""
"Language: en\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr "Invalid basic header. No credentials provided."
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr "Invalid basic header. Credentials string should not contain spaces."
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr "Invalid basic header. Credentials not correctly base64 encoded."
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr "Invalid username/password."
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr "User inactive or deleted."
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr "Invalid token header. No credentials provided."
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr "Invalid token header. Token string should not contain spaces."
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr "Invalid token header. Token string should not contain invalid characters."
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr "Invalid token."
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr "Auth Token"
#: authtoken/models.py:21
msgid "Key"
msgstr "Key"
#: authtoken/models.py:23
msgid "User"
msgstr "User"
#: authtoken/models.py:24
msgid "Created"
msgstr "Created"
#: authtoken/models.py:33
msgid "Token"
msgstr "Token"
#: authtoken/models.py:34
msgid "Tokens"
msgstr "Tokens"
#: authtoken/serializers.py:8
msgid "Username"
msgstr "Username"
#: authtoken/serializers.py:9
msgid "Password"
msgstr "Password"
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr "User account is disabled."
......@@ -108,7 +140,7 @@ msgstr "Unsupported media type \"{media_type}\" in request."
msgid "Request was throttled."
msgstr "Request was throttled."
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr "This field is required."
......@@ -126,7 +158,7 @@ msgstr "\"{input}\" is not a valid boolean."
msgid "This field may not be blank."
msgstr "This field may not be blank."
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr "Ensure this field has no more than {max_length} characters."
......@@ -212,137 +244,136 @@ msgstr "Datetime has wrong format. Use one of these formats instead: {format}."
msgid "Expected a datetime but got a date."
msgstr "Expected a datetime but got a date."
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr "Date has wrong format. Use one of these formats instead: {format}."
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr "Expected a date but got a datetime."
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr "Time has wrong format. Use one of these formats instead: {format}."
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr "Duration has wrong format. Use one of these formats instead: {format}."
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr "\"{input}\" is not a valid choice."
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr "More than {count} items..."
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr "Expected a list of items but got type \"{input_type}\"."
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr "This selection may not be empty."
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr "\"{input}\" is not a valid path choice."
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr "No file was submitted."
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr "The submitted data was not a file. Check the encoding type on the form."
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr "No filename could be determined."
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr "The submitted file is empty."
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr "Ensure this filename has at most {max_length} characters (it has {length})."
#: fields.py:1391
#: fields.py:1399
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."
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr "This list may not be empty."
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr "Expected a dictionary of items but got type \"{input_type}\"."
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr "Value must be valid JSON."
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr "Submit"
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgstr "Invalid page \"{page_number}\": {message}."
msgid "Invalid page."
msgstr "Invalid page."
#: pagination.py:407
msgid "Invalid cursor"
msgstr "Invalid cursor"
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr "Invalid pk \"{pk_value}\" - object does not exist."
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr "Incorrect type. Expected pk value, received {data_type}."
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr "Invalid hyperlink - No URL match."
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr "Invalid hyperlink - Incorrect URL match."
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr "Invalid hyperlink - Object does not exist."
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr "Incorrect type. Expected URL string, received {data_type}."
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr "Object with {slug_name}={value} does not exist."
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr "Invalid value."
......
......@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: English (Australia) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/en_AU/)\n"
"MIME-Version: 1.0\n"
......@@ -17,43 +17,75 @@ msgstr ""
"Language: en_AU\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr ""
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr ""
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr ""
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr ""
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr ""
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr ""
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr ""
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr ""
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr ""
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr ""
......@@ -108,7 +140,7 @@ msgstr ""
msgid "Request was throttled."
msgstr ""
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr ""
......@@ -126,7 +158,7 @@ msgstr ""
msgid "This field may not be blank."
msgstr ""
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr ""
......@@ -212,137 +244,136 @@ msgstr ""
msgid "Expected a datetime but got a date."
msgstr ""
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr ""
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr ""
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr ""
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr ""
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr ""
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr ""
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr ""
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr ""
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr ""
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr ""
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr ""
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr ""
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr ""
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr ""
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr ""
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr ""
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr ""
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr ""
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr ""
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr ""
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr ""
......
......@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-07 17:55+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 17:38+0000\n"
"Last-Translator: Xavier Ordoquy <xordoquy@linovia.com>\n"
"Language-Team: English (Canada) (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/en_CA/)\n"
"MIME-Version: 1.0\n"
......@@ -17,43 +17,75 @@ msgstr ""
"Language: en_CA\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr ""
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr ""
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr ""
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr ""
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr ""
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr ""
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr ""
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr ""
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr ""
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr ""
......@@ -108,7 +140,7 @@ msgstr ""
msgid "Request was throttled."
msgstr ""
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr ""
......@@ -126,7 +158,7 @@ msgstr ""
msgid "This field may not be blank."
msgstr ""
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr ""
......@@ -212,137 +244,136 @@ msgstr ""
msgid "Expected a datetime but got a date."
msgstr ""
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr ""
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr ""
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr ""
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr ""
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr ""
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr ""
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr ""
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr ""
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr ""
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr ""
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr ""
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr ""
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr ""
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr ""
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr ""
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr ""
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr ""
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr ""
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr ""
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr ""
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr ""
......
......@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
......@@ -17,43 +17,75 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr ""
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr ""
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr ""
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr ""
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr ""
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr ""
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr ""
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr ""
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr ""
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr ""
#: authtoken/models.py:21
msgid "Key"
msgstr ""
#: authtoken/models.py:23
msgid "User"
msgstr ""
#: authtoken/models.py:24
msgid "Created"
msgstr ""
#: authtoken/models.py:33
msgid "Token"
msgstr ""
#: authtoken/models.py:34
msgid "Tokens"
msgstr ""
#: authtoken/serializers.py:8
msgid "Username"
msgstr ""
#: authtoken/serializers.py:9
msgid "Password"
msgstr ""
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr ""
......@@ -108,7 +140,7 @@ msgstr ""
msgid "Request was throttled."
msgstr ""
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr ""
......@@ -126,7 +158,7 @@ msgstr ""
msgid "This field may not be blank."
msgstr ""
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr ""
......@@ -211,136 +243,135 @@ msgstr ""
msgid "Expected a datetime but got a date."
msgstr ""
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr ""
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr ""
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr ""
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr ""
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr ""
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr ""
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr ""
#: fields.py:1340
#: fields.py:1348
msgid "The submitted data was not a file. Check the encoding type on the form."
msgstr ""
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr ""
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr ""
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr ""
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr ""
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr ""
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr ""
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr ""
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr ""
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgid "Invalid page."
msgstr ""
#: pagination.py:407
msgid "Invalid cursor"
msgstr ""
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr ""
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr ""
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr ""
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr ""
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr ""
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr ""
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr ""
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr ""
......
......@@ -6,14 +6,14 @@
# nnrcschmdt <e.rico.schmidt@gmail.com>, 2015
# José Padilla <jpadilla@webapplicate.com>, 2015
# Miguel González <migonzalvar@gmail.com>, 2015
# Miguel González <migonzalvar@gmail.com>, 2015
# Miguel González <migonzalvar@gmail.com>, 2015-2016
# Sergio Infante <rsinfante@gmail.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: Django REST framework\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-12-07 18:53+0100\n"
"PO-Revision-Date: 2015-12-08 15:54+0000\n"
"POT-Creation-Date: 2016-03-01 18:38+0100\n"
"PO-Revision-Date: 2016-03-01 18:16+0000\n"
"Last-Translator: Miguel González <migonzalvar@gmail.com>\n"
"Language-Team: Spanish (http://www.transifex.com/django-rest-framework-1/django-rest-framework/language/es/)\n"
"MIME-Version: 1.0\n"
......@@ -22,43 +22,75 @@ msgstr ""
"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: authentication.py:72
#: authentication.py:71
msgid "Invalid basic header. No credentials provided."
msgstr "Cabecera básica inválida. Las credenciales no fueron suministradas."
#: authentication.py:75
#: authentication.py:74
msgid "Invalid basic header. Credentials string should not contain spaces."
msgstr "Cabecera básica inválida. La cadena con las credenciales no debe contener espacios."
#: authentication.py:81
#: authentication.py:80
msgid "Invalid basic header. Credentials not correctly base64 encoded."
msgstr "Cabecera básica inválida. Las credenciales incorrectamente codificadas en base64."
#: authentication.py:98
#: authentication.py:97
msgid "Invalid username/password."
msgstr "Nombre de usuario/contraseña inválidos."
#: authentication.py:101 authentication.py:188
#: authentication.py:100 authentication.py:195
msgid "User inactive or deleted."
msgstr "Usuario inactivo o borrado."
#: authentication.py:167
#: authentication.py:173
msgid "Invalid token header. No credentials provided."
msgstr "Cabecera token inválida. Las credenciales no fueron suministradas."
#: authentication.py:170
#: authentication.py:176
msgid "Invalid token header. Token string should not contain spaces."
msgstr "Cabecera token inválida. La cadena token no debe contener espacios."
#: authentication.py:176
#: authentication.py:182
msgid ""
"Invalid token header. Token string should not contain invalid characters."
msgstr "Cabecera token inválida. La cadena token no debe contener caracteres inválidos."
#: authentication.py:185
#: authentication.py:192
msgid "Invalid token."
msgstr "Token inválido."
#: authtoken/apps.py:7
msgid "Auth Token"
msgstr "Token de autenticación"
#: authtoken/models.py:21
msgid "Key"
msgstr "Clave"
#: authtoken/models.py:23
msgid "User"
msgstr "Usuario"
#: authtoken/models.py:24
msgid "Created"
msgstr "Fecha de creación"
#: authtoken/models.py:33
msgid "Token"
msgstr "Token"
#: authtoken/models.py:34
msgid "Tokens"
msgstr "Tokens"
#: authtoken/serializers.py:8
msgid "Username"
msgstr "Nombre de usuario"
#: authtoken/serializers.py:9
msgid "Password"
msgstr "Contraseña"
#: authtoken/serializers.py:20
msgid "User account is disabled."
msgstr "Cuenta de usuario está deshabilitada."
......@@ -113,7 +145,7 @@ msgstr "Tipo de medio \"{media_type}\" incompatible en la solicitud."
msgid "Request was throttled."
msgstr "Solicitud fue regulada (throttled)."
#: fields.py:266 relations.py:195 relations.py:228 validators.py:79
#: fields.py:266 relations.py:206 relations.py:239 validators.py:79
#: validators.py:162
msgid "This field is required."
msgstr "Este campo es requerido."
......@@ -131,7 +163,7 @@ msgstr "\"{input}\" no es un booleano válido."
msgid "This field may not be blank."
msgstr "Este campo no puede estar en blanco."
#: fields.py:670 fields.py:1656
#: fields.py:670 fields.py:1664
#, python-brace-format
msgid "Ensure this field has no more than {max_length} characters."
msgstr "Asegúrese de que este campo no tenga más de {max_length} caracteres."
......@@ -217,137 +249,136 @@ msgstr "Fecha/hora con formato erróneo. Use uno de los siguientes formatos en s
msgid "Expected a datetime but got a date."
msgstr "Se esperaba un fecha/hora en vez de una fecha."
#: fields.py:1079
#: fields.py:1082
#, python-brace-format
msgid "Date has wrong format. Use one of these formats instead: {format}."
msgstr "Fecha con formato erróneo. Use uno de los siguientes formatos en su lugar: {format}."
#: fields.py:1080
#: fields.py:1083
msgid "Expected a date but got a datetime."
msgstr "Se esperaba una fecha en vez de una fecha/hora."
#: fields.py:1148
#: fields.py:1151
#, python-brace-format
msgid "Time has wrong format. Use one of these formats instead: {format}."
msgstr "Hora con formato erróneo. Use uno de los siguientes formatos en su lugar: {format}."
#: fields.py:1207
#: fields.py:1215
#, python-brace-format
msgid "Duration has wrong format. Use one of these formats instead: {format}."
msgstr "Duración con formato erróneo. Use uno de los siguientes formatos en su lugar: {format}."
#: fields.py:1232 fields.py:1281
#: fields.py:1240 fields.py:1289
#, python-brace-format
msgid "\"{input}\" is not a valid choice."
msgstr "\"{input}\" no es una elección válida."
#: fields.py:1235 relations.py:62 relations.py:431
#: fields.py:1243 relations.py:71 relations.py:442
#, python-brace-format
msgid "More than {count} items..."
msgstr "Más de {count} elementos..."
#: fields.py:1282 fields.py:1429 relations.py:427 serializers.py:520
#: fields.py:1290 fields.py:1437 relations.py:438 serializers.py:520
#, python-brace-format
msgid "Expected a list of items but got type \"{input_type}\"."
msgstr "Se esperaba una lista de elementos en vez del tipo \"{input_type}\"."
#: fields.py:1283
#: fields.py:1291
msgid "This selection may not be empty."
msgstr "Esta selección no puede estar vacía."
#: fields.py:1320
#: fields.py:1328
#, python-brace-format
msgid "\"{input}\" is not a valid path choice."
msgstr "\"{input}\" no es una elección de ruta válida."
#: fields.py:1339
#: fields.py:1347
msgid "No file was submitted."
msgstr "No se envió ningún archivo."
#: fields.py:1340
#: fields.py:1348
msgid ""
"The submitted data was not a file. Check the encoding type on the form."
msgstr "La información enviada no era un archivo. Compruebe el tipo de codificación del formulario."
#: fields.py:1341
#: fields.py:1349
msgid "No filename could be determined."
msgstr "No se pudo determinar un nombre de archivo."
#: fields.py:1342
#: fields.py:1350
msgid "The submitted file is empty."
msgstr "El archivo enviado está vació."
#: fields.py:1343
#: fields.py:1351
#, python-brace-format
msgid ""
"Ensure this filename has at most {max_length} characters (it has {length})."
msgstr "Asegúrese de que el nombre de archivo no tenga más de {max_length} caracteres (tiene {length})."
#: fields.py:1391
#: fields.py:1399
msgid ""
"Upload a valid image. The file you uploaded was either not an image or a "
"corrupted image."
msgstr "Adjunte una imagen válida. El archivo adjunto o bien no es una imagen o bien está dañado."
#: fields.py:1430 relations.py:428 serializers.py:521
#: fields.py:1438 relations.py:439 serializers.py:521
msgid "This list may not be empty."
msgstr "Esta lista no puede estar vacía."
#: fields.py:1483
#: fields.py:1491
#, python-brace-format
msgid "Expected a dictionary of items but got type \"{input_type}\"."
msgstr "Se esperaba un diccionario de elementos en vez del tipo \"{input_type}\"."
#: fields.py:1530
#: fields.py:1538
msgid "Value must be valid JSON."
msgstr "El valor debe ser JSON válido."
#: filters.py:35 templates/rest_framework/filters/django_filter.html:5
#: filters.py:35 templates/rest_framework/filters/django_filter.html.py:5
msgid "Submit"
msgstr "Enviar"
#: pagination.py:189
#, python-brace-format
msgid "Invalid page \"{page_number}\": {message}."
msgstr "Página \"{page_number}\" inválida: {message}."
msgid "Invalid page."
msgstr "Página inválida."
#: pagination.py:407
msgid "Invalid cursor"
msgstr "Cursor inválido"
#: relations.py:196
#: relations.py:207
#, python-brace-format
msgid "Invalid pk \"{pk_value}\" - object does not exist."
msgstr "Clave primaria \"{pk_value}\" inválida - objeto no existe."
#: relations.py:197
#: relations.py:208
#, python-brace-format
msgid "Incorrect type. Expected pk value, received {data_type}."
msgstr "Tipo incorrecto. Se esperaba valor de clave primaria y se recibió {data_type}."
#: relations.py:229
#: relations.py:240
msgid "Invalid hyperlink - No URL match."
msgstr "Hiperenlace inválido - No hay URL coincidentes."
#: relations.py:230
#: relations.py:241
msgid "Invalid hyperlink - Incorrect URL match."
msgstr "Hiperenlace inválido - Coincidencia incorrecta de la URL."
#: relations.py:231
#: relations.py:242
msgid "Invalid hyperlink - Object does not exist."
msgstr "Hiperenlace inválido - Objeto no existe."
#: relations.py:232
#: relations.py:243
#, python-brace-format
msgid "Incorrect type. Expected URL string, received {data_type}."
msgstr "Tipo incorrecto. Se esperaba una URL y se recibió {data_type}."
#: relations.py:391
#: relations.py:402
#, python-brace-format
msgid "Object with {slug_name}={value} does not exist."
msgstr "Objeto con {slug_name}={value} no existe."
#: relations.py:392
#: relations.py:403
msgid "Invalid value."
msgstr "Valor inválido."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment