Add files using upload-large-folder tool
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- testbed/django__django/django/contrib/redirects/__init__.py +0 -0
- testbed/django__django/django/contrib/redirects/admin.py +10 -0
- testbed/django__django/django/contrib/redirects/apps.py +8 -0
- testbed/django__django/django/contrib/redirects/locale/ckb/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/ckb/LC_MESSAGES/django.po +49 -0
- testbed/django__django/django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po +56 -0
- testbed/django__django/django/contrib/redirects/locale/ro/LC_MESSAGES/django.po +54 -0
- testbed/django__django/django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/sk/LC_MESSAGES/django.po +53 -0
- testbed/django__django/django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/sl/LC_MESSAGES/django.po +52 -0
- testbed/django__django/django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/sq/LC_MESSAGES/django.po +52 -0
- testbed/django__django/django/contrib/redirects/locale/sr/LC_MESSAGES/django.po +53 -0
- testbed/django__django/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po +52 -0
- testbed/django__django/django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/sv/LC_MESSAGES/django.po +53 -0
- testbed/django__django/django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/sw/LC_MESSAGES/django.po +49 -0
- testbed/django__django/django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/ta/LC_MESSAGES/django.po +49 -0
- testbed/django__django/django/contrib/redirects/locale/te/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/te/LC_MESSAGES/django.po +42 -0
- testbed/django__django/django/contrib/redirects/locale/tg/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/tg/LC_MESSAGES/django.po +45 -0
- testbed/django__django/django/contrib/redirects/locale/th/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/th/LC_MESSAGES/django.po +46 -0
- testbed/django__django/django/contrib/redirects/locale/tk/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/tk/LC_MESSAGES/django.po +50 -0
- testbed/django__django/django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/tr/LC_MESSAGES/django.po +53 -0
- testbed/django__django/django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/tt/LC_MESSAGES/django.po +48 -0
- testbed/django__django/django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/udm/LC_MESSAGES/django.po +42 -0
- testbed/django__django/django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/uk/LC_MESSAGES/django.po +56 -0
- testbed/django__django/django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/ur/LC_MESSAGES/django.po +46 -0
- testbed/django__django/django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/uz/LC_MESSAGES/django.po +48 -0
- testbed/django__django/django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/vi/LC_MESSAGES/django.po +49 -0
- testbed/django__django/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po +53 -0
- testbed/django__django/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo +0 -0
- testbed/django__django/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po +48 -0
testbed/django__django/django/contrib/redirects/__init__.py
ADDED
|
File without changes
|
testbed/django__django/django/contrib/redirects/admin.py
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from django.contrib import admin
|
| 2 |
+
from django.contrib.redirects.models import Redirect
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
@admin.register(Redirect)
|
| 6 |
+
class RedirectAdmin(admin.ModelAdmin):
|
| 7 |
+
list_display = ("old_path", "new_path")
|
| 8 |
+
list_filter = ("site",)
|
| 9 |
+
search_fields = ("old_path", "new_path")
|
| 10 |
+
radio_fields = {"site": admin.VERTICAL}
|
testbed/django__django/django/contrib/redirects/apps.py
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
from django.apps import AppConfig
|
| 2 |
+
from django.utils.translation import gettext_lazy as _
|
| 3 |
+
|
| 4 |
+
|
| 5 |
+
class RedirectsConfig(AppConfig):
|
| 6 |
+
default_auto_field = "django.db.models.AutoField"
|
| 7 |
+
name = "django.contrib.redirects"
|
| 8 |
+
verbose_name = _("Redirects")
|
testbed/django__django/django/contrib/redirects/locale/ckb/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.34 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/ckb/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# kosar tofiq <kosar.belana@gmail.com>, 2021
|
| 5 |
+
msgid ""
|
| 6 |
+
msgstr ""
|
| 7 |
+
"Project-Id-Version: django\n"
|
| 8 |
+
"Report-Msgid-Bugs-To: \n"
|
| 9 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 10 |
+
"PO-Revision-Date: 2023-04-24 18:32+0000\n"
|
| 11 |
+
"Last-Translator: kosar tofiq <kosar.belana@gmail.com>, 2021\n"
|
| 12 |
+
"Language-Team: Central Kurdish (http://www.transifex.com/django/django/"
|
| 13 |
+
"language/ckb/)\n"
|
| 14 |
+
"MIME-Version: 1.0\n"
|
| 15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 17 |
+
"Language: ckb\n"
|
| 18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 19 |
+
|
| 20 |
+
msgid "Redirects"
|
| 21 |
+
msgstr "ئاڕاستەکردنەوەکان"
|
| 22 |
+
|
| 23 |
+
msgid "site"
|
| 24 |
+
msgstr "پێگە"
|
| 25 |
+
|
| 26 |
+
msgid "redirect from"
|
| 27 |
+
msgstr "ئاڕاستەکردنەوە لە"
|
| 28 |
+
|
| 29 |
+
msgid ""
|
| 30 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 31 |
+
"events/search/”."
|
| 32 |
+
msgstr ""
|
| 33 |
+
"ئەمە دەبێت ڕێجکەیەکی ڕەهابێت، بەبێ ناوی دۆمەین. نمونە: “/events/search/”."
|
| 34 |
+
|
| 35 |
+
msgid "redirect to"
|
| 36 |
+
msgstr "ئاڕاستەکردنەوە بۆ"
|
| 37 |
+
|
| 38 |
+
msgid ""
|
| 39 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 40 |
+
"scheme such as “https://”."
|
| 41 |
+
msgstr ""
|
| 42 |
+
"دەکرێت ئەمە یان ڕچکەی ڕەها بێت (وەکو سەرەوە) یان هەموو URL بێت کە بە سکیم "
|
| 43 |
+
"دەستپێبکات وەک “https://”."
|
| 44 |
+
|
| 45 |
+
msgid "redirect"
|
| 46 |
+
msgstr "ئاڕاستەکردنەوە"
|
| 47 |
+
|
| 48 |
+
msgid "redirects"
|
| 49 |
+
msgstr "ئاڕاستەکردنەوەکان"
|
testbed/django__django/django/contrib/redirects/locale/pa/LC_MESSAGES/django.mo
ADDED
|
Binary file (748 Bytes). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/pt_BR/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Allisson Azevedo <allisson@gmail.com>, 2014
|
| 5 |
+
# Amanda Savluchinske <amandasavluchinske@gmail.com>, 2019
|
| 6 |
+
# semente, 2013
|
| 7 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 8 |
+
# Lucas Infante <maccinza@gmail.com>, 2015
|
| 9 |
+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2021
|
| 10 |
+
# R.J Lelis <renatojlelis@gmail.com>, 2019
|
| 11 |
+
msgid ""
|
| 12 |
+
msgstr ""
|
| 13 |
+
"Project-Id-Version: django\n"
|
| 14 |
+
"Report-Msgid-Bugs-To: \n"
|
| 15 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 16 |
+
"PO-Revision-Date: 2021-01-17 05:46+0000\n"
|
| 17 |
+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>\n"
|
| 18 |
+
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/django/django/"
|
| 19 |
+
"language/pt_BR/)\n"
|
| 20 |
+
"MIME-Version: 1.0\n"
|
| 21 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 22 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 23 |
+
"Language: pt_BR\n"
|
| 24 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
| 25 |
+
|
| 26 |
+
msgid "Redirects"
|
| 27 |
+
msgstr "Redirecionamentos"
|
| 28 |
+
|
| 29 |
+
msgid "site"
|
| 30 |
+
msgstr "site"
|
| 31 |
+
|
| 32 |
+
msgid "redirect from"
|
| 33 |
+
msgstr "redirecionar de"
|
| 34 |
+
|
| 35 |
+
msgid ""
|
| 36 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 37 |
+
"events/search/”."
|
| 38 |
+
msgstr ""
|
| 39 |
+
"Este deve ser um caminho absoluto, excluindo o nome do domínio. Exemplo: \"/"
|
| 40 |
+
"events/search/\"."
|
| 41 |
+
|
| 42 |
+
msgid "redirect to"
|
| 43 |
+
msgstr "redirecionar para"
|
| 44 |
+
|
| 45 |
+
msgid ""
|
| 46 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 47 |
+
"scheme such as “https://”."
|
| 48 |
+
msgstr ""
|
| 49 |
+
"Este pode ser um caminho absoluto (como acima) ou uma URL completa começando "
|
| 50 |
+
"com um esquema como \"https://\"."
|
| 51 |
+
|
| 52 |
+
msgid "redirect"
|
| 53 |
+
msgstr "redirecionamento"
|
| 54 |
+
|
| 55 |
+
msgid "redirects"
|
| 56 |
+
msgstr "redirecionamentos"
|
testbed/django__django/django/contrib/redirects/locale/ro/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Daniel Ursache-Dogariu, 2011
|
| 5 |
+
# Eugenol Man <neatusebastian@gmail.com>, 2020
|
| 6 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 7 |
+
# Razvan Stefanescu <razvan.stefanescu@gmail.com>, 2016
|
| 8 |
+
msgid ""
|
| 9 |
+
msgstr ""
|
| 10 |
+
"Project-Id-Version: django\n"
|
| 11 |
+
"Report-Msgid-Bugs-To: \n"
|
| 12 |
+
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
|
| 13 |
+
"PO-Revision-Date: 2020-07-15 11:20+0000\n"
|
| 14 |
+
"Last-Translator: Eugenol Man <neatusebastian@gmail.com>\n"
|
| 15 |
+
"Language-Team: Romanian (http://www.transifex.com/django/django/language/"
|
| 16 |
+
"ro/)\n"
|
| 17 |
+
"MIME-Version: 1.0\n"
|
| 18 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 19 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 20 |
+
"Language: ro\n"
|
| 21 |
+
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?"
|
| 22 |
+
"2:1));\n"
|
| 23 |
+
|
| 24 |
+
msgid "Redirects"
|
| 25 |
+
msgstr "Redirecționări"
|
| 26 |
+
|
| 27 |
+
msgid "site"
|
| 28 |
+
msgstr "site"
|
| 29 |
+
|
| 30 |
+
msgid "redirect from"
|
| 31 |
+
msgstr "redirecționat de la "
|
| 32 |
+
|
| 33 |
+
msgid ""
|
| 34 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 35 |
+
"events/search/”."
|
| 36 |
+
msgstr ""
|
| 37 |
+
"Trebuie sa fie o cale absoluta, exeptand numele domeniului. Exemplu: “/"
|
| 38 |
+
"events/search/”."
|
| 39 |
+
|
| 40 |
+
msgid "redirect to"
|
| 41 |
+
msgstr "redirecționat către"
|
| 42 |
+
|
| 43 |
+
msgid ""
|
| 44 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 45 |
+
"“http://”."
|
| 46 |
+
msgstr ""
|
| 47 |
+
"Poate fi cale absolută (ca mai sus) sau link URL complet, începând cu "
|
| 48 |
+
"“http://”."
|
| 49 |
+
|
| 50 |
+
msgid "redirect"
|
| 51 |
+
msgstr "redirecționare"
|
| 52 |
+
|
| 53 |
+
msgid "redirects"
|
| 54 |
+
msgstr "redirecționări"
|
testbed/django__django/django/contrib/redirects/locale/ru/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.46 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/sk/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.19 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/sk/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 5 |
+
# Martin Tóth <ezimir@gmail.com>, 2017
|
| 6 |
+
# Peter Kuma, 2021
|
| 7 |
+
# supowski <supowski@gmail.com>, 2015
|
| 8 |
+
msgid ""
|
| 9 |
+
msgstr ""
|
| 10 |
+
"Project-Id-Version: django\n"
|
| 11 |
+
"Report-Msgid-Bugs-To: \n"
|
| 12 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 13 |
+
"PO-Revision-Date: 2021-07-24 20:57+0000\n"
|
| 14 |
+
"Last-Translator: Peter Kuma\n"
|
| 15 |
+
"Language-Team: Slovak (http://www.transifex.com/django/django/language/sk/)\n"
|
| 16 |
+
"MIME-Version: 1.0\n"
|
| 17 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 18 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 19 |
+
"Language: sk\n"
|
| 20 |
+
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n "
|
| 21 |
+
">= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n"
|
| 22 |
+
|
| 23 |
+
msgid "Redirects"
|
| 24 |
+
msgstr "Presmerovania"
|
| 25 |
+
|
| 26 |
+
msgid "site"
|
| 27 |
+
msgstr "sídlo"
|
| 28 |
+
|
| 29 |
+
msgid "redirect from"
|
| 30 |
+
msgstr "presmerovať z"
|
| 31 |
+
|
| 32 |
+
msgid ""
|
| 33 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 34 |
+
"events/search/”."
|
| 35 |
+
msgstr ""
|
| 36 |
+
"Toto by sa mala byť absolútna cesta bez názvu domény. Napríklad: “/events/"
|
| 37 |
+
"search/”."
|
| 38 |
+
|
| 39 |
+
msgid "redirect to"
|
| 40 |
+
msgstr "presmerovať na"
|
| 41 |
+
|
| 42 |
+
msgid ""
|
| 43 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 44 |
+
"scheme such as “https://”."
|
| 45 |
+
msgstr ""
|
| 46 |
+
"Toto môže byť buď absolútna cesta (ako vyššie), alebo úplné URL začínajúce "
|
| 47 |
+
"schémou ako “http://”."
|
| 48 |
+
|
| 49 |
+
msgid "redirect"
|
| 50 |
+
msgstr "presmerovanie"
|
| 51 |
+
|
| 52 |
+
msgid "redirects"
|
| 53 |
+
msgstr "presmerovania"
|
testbed/django__django/django/contrib/redirects/locale/sl/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.17 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/sl/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 5 |
+
# zejn <zejn@kiberpipa.org>, 2016
|
| 6 |
+
msgid ""
|
| 7 |
+
msgstr ""
|
| 8 |
+
"Project-Id-Version: django\n"
|
| 9 |
+
"Report-Msgid-Bugs-To: \n"
|
| 10 |
+
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
| 11 |
+
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
| 12 |
+
"Last-Translator: Primož Verdnik <primoz.verdnik@gmail.com>\n"
|
| 13 |
+
"Language-Team: Slovenian (http://www.transifex.com/django/django/language/"
|
| 14 |
+
"sl/)\n"
|
| 15 |
+
"MIME-Version: 1.0\n"
|
| 16 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 17 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 18 |
+
"Language: sl\n"
|
| 19 |
+
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
|
| 20 |
+
"%100==4 ? 2 : 3);\n"
|
| 21 |
+
|
| 22 |
+
msgid "Redirects"
|
| 23 |
+
msgstr "Preusmeritve"
|
| 24 |
+
|
| 25 |
+
msgid "site"
|
| 26 |
+
msgstr "stran"
|
| 27 |
+
|
| 28 |
+
msgid "redirect from"
|
| 29 |
+
msgstr "preusmeri iz"
|
| 30 |
+
|
| 31 |
+
msgid ""
|
| 32 |
+
"This should be an absolute path, excluding the domain name. Example: '/"
|
| 33 |
+
"events/search/'."
|
| 34 |
+
msgstr ""
|
| 35 |
+
"Pot mora biti navedena absolutno in brez imena domene. Primer: '/events/"
|
| 36 |
+
"search/'."
|
| 37 |
+
|
| 38 |
+
msgid "redirect to"
|
| 39 |
+
msgstr "preusmeri na"
|
| 40 |
+
|
| 41 |
+
msgid ""
|
| 42 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 43 |
+
"'http://'."
|
| 44 |
+
msgstr ""
|
| 45 |
+
"Pot je lahko navedena absolutno (kot zgoraj) ali pa kot popoln naslov URL, "
|
| 46 |
+
"začet z 'http://'."
|
| 47 |
+
|
| 48 |
+
msgid "redirect"
|
| 49 |
+
msgstr "preusmeri"
|
| 50 |
+
|
| 51 |
+
msgid "redirects"
|
| 52 |
+
msgstr "preusmeritve"
|
testbed/django__django/django/contrib/redirects/locale/sq/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.17 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/sq/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Besnik Bleta <besnik@programeshqip.org>, 2011
|
| 5 |
+
# Besnik Bleta <besnik@programeshqip.org>, 2021
|
| 6 |
+
# Besnik Bleta <besnik@programeshqip.org>, 2015,2019
|
| 7 |
+
msgid ""
|
| 8 |
+
msgstr ""
|
| 9 |
+
"Project-Id-Version: django\n"
|
| 10 |
+
"Report-Msgid-Bugs-To: \n"
|
| 11 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 12 |
+
"PO-Revision-Date: 2021-01-15 13:55+0000\n"
|
| 13 |
+
"Last-Translator: Besnik Bleta <besnik@programeshqip.org>\n"
|
| 14 |
+
"Language-Team: Albanian (http://www.transifex.com/django/django/language/"
|
| 15 |
+
"sq/)\n"
|
| 16 |
+
"MIME-Version: 1.0\n"
|
| 17 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 18 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 19 |
+
"Language: sq\n"
|
| 20 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 21 |
+
|
| 22 |
+
msgid "Redirects"
|
| 23 |
+
msgstr "Ridrejtime"
|
| 24 |
+
|
| 25 |
+
msgid "site"
|
| 26 |
+
msgstr "sajt"
|
| 27 |
+
|
| 28 |
+
msgid "redirect from"
|
| 29 |
+
msgstr "ridrejtim prej"
|
| 30 |
+
|
| 31 |
+
msgid ""
|
| 32 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 33 |
+
"events/search/”."
|
| 34 |
+
msgstr ""
|
| 35 |
+
"Ky do të duhej të ishte shteg absolut, pa emrin e përkatësisë. Për shembull: "
|
| 36 |
+
"“/ngjarje/kërkim/”."
|
| 37 |
+
|
| 38 |
+
msgid "redirect to"
|
| 39 |
+
msgstr "ridrejtim te"
|
| 40 |
+
|
| 41 |
+
msgid ""
|
| 42 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 43 |
+
"scheme such as “https://”."
|
| 44 |
+
msgstr ""
|
| 45 |
+
"Ky mund të jetë ose një shteg absolut (si më sipër), ose një URL e plotë që "
|
| 46 |
+
"fillon me një skemë të tillë si “http://”."
|
| 47 |
+
|
| 48 |
+
msgid "redirect"
|
| 49 |
+
msgstr "ridrejtim"
|
| 50 |
+
|
| 51 |
+
msgid "redirects"
|
| 52 |
+
msgstr "ridrejtime"
|
testbed/django__django/django/contrib/redirects/locale/sr/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Branko Kokanovic <branko@kokanovic.org>, 2018
|
| 5 |
+
# Igor Jerosimić, 2020-2021
|
| 6 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 7 |
+
msgid ""
|
| 8 |
+
msgstr ""
|
| 9 |
+
"Project-Id-Version: django\n"
|
| 10 |
+
"Report-Msgid-Bugs-To: \n"
|
| 11 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 12 |
+
"PO-Revision-Date: 2021-01-15 17:04+0000\n"
|
| 13 |
+
"Last-Translator: Igor Jerosimić\n"
|
| 14 |
+
"Language-Team: Serbian (http://www.transifex.com/django/django/language/"
|
| 15 |
+
"sr/)\n"
|
| 16 |
+
"MIME-Version: 1.0\n"
|
| 17 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 18 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 19 |
+
"Language: sr\n"
|
| 20 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
| 21 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
| 22 |
+
|
| 23 |
+
msgid "Redirects"
|
| 24 |
+
msgstr "Преусмеравања"
|
| 25 |
+
|
| 26 |
+
msgid "site"
|
| 27 |
+
msgstr "сајт"
|
| 28 |
+
|
| 29 |
+
msgid "redirect from"
|
| 30 |
+
msgstr "преусмерен са"
|
| 31 |
+
|
| 32 |
+
msgid ""
|
| 33 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 34 |
+
"events/search/”."
|
| 35 |
+
msgstr ""
|
| 36 |
+
"Ово треба да буде апсолутна путања, искључујући име домена. Пример: “/events/"
|
| 37 |
+
"search/”."
|
| 38 |
+
|
| 39 |
+
msgid "redirect to"
|
| 40 |
+
msgstr "преусмери ка"
|
| 41 |
+
|
| 42 |
+
msgid ""
|
| 43 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 44 |
+
"scheme such as “https://”."
|
| 45 |
+
msgstr ""
|
| 46 |
+
"Ово може да буде апсолутна путања (као изнад) или потпун URL који почиње са "
|
| 47 |
+
"шемом као нпр. “https://”."
|
| 48 |
+
|
| 49 |
+
msgid "redirect"
|
| 50 |
+
msgstr "преусмеравање"
|
| 51 |
+
|
| 52 |
+
msgid "redirects"
|
| 53 |
+
msgstr "преусмеравања"
|
testbed/django__django/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.21 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/sr_Latn/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Igor Jerosimić, 2019-2021
|
| 5 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 6 |
+
msgid ""
|
| 7 |
+
msgstr ""
|
| 8 |
+
"Project-Id-Version: django\n"
|
| 9 |
+
"Report-Msgid-Bugs-To: \n"
|
| 10 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 11 |
+
"PO-Revision-Date: 2021-01-15 17:03+0000\n"
|
| 12 |
+
"Last-Translator: Igor Jerosimić\n"
|
| 13 |
+
"Language-Team: Serbian (Latin) (http://www.transifex.com/django/django/"
|
| 14 |
+
"language/sr@latin/)\n"
|
| 15 |
+
"MIME-Version: 1.0\n"
|
| 16 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 17 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 18 |
+
"Language: sr@latin\n"
|
| 19 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
| 20 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
| 21 |
+
|
| 22 |
+
msgid "Redirects"
|
| 23 |
+
msgstr "Preusmeravanja"
|
| 24 |
+
|
| 25 |
+
msgid "site"
|
| 26 |
+
msgstr "sajt"
|
| 27 |
+
|
| 28 |
+
msgid "redirect from"
|
| 29 |
+
msgstr "preusmeren sa"
|
| 30 |
+
|
| 31 |
+
msgid ""
|
| 32 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 33 |
+
"events/search/”."
|
| 34 |
+
msgstr ""
|
| 35 |
+
"Ovo treba da bude apsolutna putanja, isključujući ime domena. Primer: “/"
|
| 36 |
+
"events/search/”."
|
| 37 |
+
|
| 38 |
+
msgid "redirect to"
|
| 39 |
+
msgstr "preusmeri ka"
|
| 40 |
+
|
| 41 |
+
msgid ""
|
| 42 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 43 |
+
"scheme such as “https://”."
|
| 44 |
+
msgstr ""
|
| 45 |
+
"Ovo može da bude apsolutna putanja (kao iznad) ili potpun URL koji počinje "
|
| 46 |
+
"sa šemom kao npr. “https://”."
|
| 47 |
+
|
| 48 |
+
msgid "redirect"
|
| 49 |
+
msgstr "preusmeravanje"
|
| 50 |
+
|
| 51 |
+
msgid "redirects"
|
| 52 |
+
msgstr "preusmeravanja"
|
testbed/django__django/django/contrib/redirects/locale/sv/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.13 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/sv/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Elias Johnstone <eli87as@gmail.com>, 2022
|
| 5 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 6 |
+
# Jonathan Lindén, 2014
|
| 7 |
+
# Thomas Lundqvist, 2017
|
| 8 |
+
msgid ""
|
| 9 |
+
msgstr ""
|
| 10 |
+
"Project-Id-Version: django\n"
|
| 11 |
+
"Report-Msgid-Bugs-To: \n"
|
| 12 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 13 |
+
"PO-Revision-Date: 2022-07-24 18:32+0000\n"
|
| 14 |
+
"Last-Translator: Elias Johnstone <eli87as@gmail.com>\n"
|
| 15 |
+
"Language-Team: Swedish (http://www.transifex.com/django/django/language/"
|
| 16 |
+
"sv/)\n"
|
| 17 |
+
"MIME-Version: 1.0\n"
|
| 18 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 19 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 20 |
+
"Language: sv\n"
|
| 21 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 22 |
+
|
| 23 |
+
msgid "Redirects"
|
| 24 |
+
msgstr "Omdirigeringar"
|
| 25 |
+
|
| 26 |
+
msgid "site"
|
| 27 |
+
msgstr "webbplats"
|
| 28 |
+
|
| 29 |
+
msgid "redirect from"
|
| 30 |
+
msgstr "omdirigera från"
|
| 31 |
+
|
| 32 |
+
msgid ""
|
| 33 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 34 |
+
"events/search/”."
|
| 35 |
+
msgstr ""
|
| 36 |
+
"Detta bör vara en absolut sökväg utan domännamnet. Exempel: '/handelser/"
|
| 37 |
+
"sok/'."
|
| 38 |
+
|
| 39 |
+
msgid "redirect to"
|
| 40 |
+
msgstr "omdirigera till"
|
| 41 |
+
|
| 42 |
+
msgid ""
|
| 43 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 44 |
+
"scheme such as “https://”."
|
| 45 |
+
msgstr ""
|
| 46 |
+
"Detta kan vara antingen en absolut sökväg (som ovan) eller en fullständig "
|
| 47 |
+
"URL som börjar med 'https://'."
|
| 48 |
+
|
| 49 |
+
msgid "redirect"
|
| 50 |
+
msgstr "omdirigera"
|
| 51 |
+
|
| 52 |
+
msgid "redirects"
|
| 53 |
+
msgstr "omdirigeringar"
|
testbed/django__django/django/contrib/redirects/locale/sw/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.08 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/sw/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Machaku <bmachaku@gmail.com>, 2013-2014
|
| 5 |
+
msgid ""
|
| 6 |
+
msgstr ""
|
| 7 |
+
"Project-Id-Version: django\n"
|
| 8 |
+
"Report-Msgid-Bugs-To: \n"
|
| 9 |
+
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
| 10 |
+
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
| 11 |
+
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
|
| 12 |
+
"Language-Team: Swahili (http://www.transifex.com/django/django/language/"
|
| 13 |
+
"sw/)\n"
|
| 14 |
+
"MIME-Version: 1.0\n"
|
| 15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 17 |
+
"Language: sw\n"
|
| 18 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 19 |
+
|
| 20 |
+
msgid "Redirects"
|
| 21 |
+
msgstr "Maelekezo upya"
|
| 22 |
+
|
| 23 |
+
msgid "site"
|
| 24 |
+
msgstr ""
|
| 25 |
+
|
| 26 |
+
msgid "redirect from"
|
| 27 |
+
msgstr "Imeelekezwa kutoka"
|
| 28 |
+
|
| 29 |
+
msgid ""
|
| 30 |
+
"This should be an absolute path, excluding the domain name. Example: '/"
|
| 31 |
+
"events/search/'."
|
| 32 |
+
msgstr ""
|
| 33 |
+
"Hii inatakiwa kuwa kiungo kamili pasipo na jina la kikoa. Mfano:'/matukio/"
|
| 34 |
+
"tafuta/'."
|
| 35 |
+
|
| 36 |
+
msgid "redirect to"
|
| 37 |
+
msgstr "elekeza kwenda"
|
| 38 |
+
|
| 39 |
+
msgid ""
|
| 40 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 41 |
+
"'http://'."
|
| 42 |
+
msgstr ""
|
| 43 |
+
"Hii inaweza kuwa kiungo kamili (kama hapo juu) or URL kamili yenye 'http://'."
|
| 44 |
+
|
| 45 |
+
msgid "redirect"
|
| 46 |
+
msgstr "maelekezo upya"
|
| 47 |
+
|
| 48 |
+
msgid "redirects"
|
| 49 |
+
msgstr "maelekezo upya"
|
testbed/django__django/django/contrib/redirects/locale/ta/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.5 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/ta/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 5 |
+
msgid ""
|
| 6 |
+
msgstr ""
|
| 7 |
+
"Project-Id-Version: django\n"
|
| 8 |
+
"Report-Msgid-Bugs-To: \n"
|
| 9 |
+
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
| 10 |
+
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
| 11 |
+
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
|
| 12 |
+
"Language-Team: Tamil (http://www.transifex.com/django/django/language/ta/)\n"
|
| 13 |
+
"MIME-Version: 1.0\n"
|
| 14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 16 |
+
"Language: ta\n"
|
| 17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 18 |
+
|
| 19 |
+
msgid "Redirects"
|
| 20 |
+
msgstr ""
|
| 21 |
+
|
| 22 |
+
msgid "site"
|
| 23 |
+
msgstr ""
|
| 24 |
+
|
| 25 |
+
msgid "redirect from"
|
| 26 |
+
msgstr "லிருந்து திசைமாற்று"
|
| 27 |
+
|
| 28 |
+
msgid ""
|
| 29 |
+
"This should be an absolute path, excluding the domain name. Example: '/"
|
| 30 |
+
"events/search/'."
|
| 31 |
+
msgstr ""
|
| 32 |
+
"இது ஒரு முழுமையான பாதையாக இருக்கவேண்டும். இணையத்தளப்பெயராக இருக்கக்கூடாது. உதாரணம்:'/"
|
| 33 |
+
"events/search/'."
|
| 34 |
+
|
| 35 |
+
msgid "redirect to"
|
| 36 |
+
msgstr "திரும்ப அனுப்பு"
|
| 37 |
+
|
| 38 |
+
msgid ""
|
| 39 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 40 |
+
"'http://'."
|
| 41 |
+
msgstr ""
|
| 42 |
+
"இது முழுமையான பாதையாக (மேலே உள்ளது போல) அல்லது \"http\"//\" என தொடங்கும் வலை "
|
| 43 |
+
"முகவரியாக இருக்கலாம்."
|
| 44 |
+
|
| 45 |
+
msgid "redirect"
|
| 46 |
+
msgstr "திரும்ப அனுப்பு"
|
| 47 |
+
|
| 48 |
+
msgid "redirects"
|
| 49 |
+
msgstr "திரும்ப அனுப்புகிறது. "
|
testbed/django__django/django/contrib/redirects/locale/te/LC_MESSAGES/django.mo
ADDED
|
Binary file (467 Bytes). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/te/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
msgid ""
|
| 5 |
+
msgstr ""
|
| 6 |
+
"Project-Id-Version: django\n"
|
| 7 |
+
"Report-Msgid-Bugs-To: \n"
|
| 8 |
+
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
|
| 9 |
+
"PO-Revision-Date: 2014-10-05 20:12+0000\n"
|
| 10 |
+
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
|
| 11 |
+
"Language-Team: Telugu (http://www.transifex.com/projects/p/django/language/"
|
| 12 |
+
"te/)\n"
|
| 13 |
+
"MIME-Version: 1.0\n"
|
| 14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 16 |
+
"Language: te\n"
|
| 17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 18 |
+
|
| 19 |
+
msgid "Redirects"
|
| 20 |
+
msgstr ""
|
| 21 |
+
|
| 22 |
+
msgid "redirect from"
|
| 23 |
+
msgstr ""
|
| 24 |
+
|
| 25 |
+
msgid ""
|
| 26 |
+
"This should be an absolute path, excluding the domain name. Example: '/"
|
| 27 |
+
"events/search/'."
|
| 28 |
+
msgstr ""
|
| 29 |
+
|
| 30 |
+
msgid "redirect to"
|
| 31 |
+
msgstr ""
|
| 32 |
+
|
| 33 |
+
msgid ""
|
| 34 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 35 |
+
"'http://'."
|
| 36 |
+
msgstr ""
|
| 37 |
+
|
| 38 |
+
msgid "redirect"
|
| 39 |
+
msgstr ""
|
| 40 |
+
|
| 41 |
+
msgid "redirects"
|
| 42 |
+
msgstr ""
|
testbed/django__django/django/contrib/redirects/locale/tg/LC_MESSAGES/django.mo
ADDED
|
Binary file (782 Bytes). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/tg/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Surush Sufiew <siriusproger@gmail.com>, 2020
|
| 5 |
+
msgid ""
|
| 6 |
+
msgstr ""
|
| 7 |
+
"Project-Id-Version: django\n"
|
| 8 |
+
"Report-Msgid-Bugs-To: \n"
|
| 9 |
+
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
|
| 10 |
+
"PO-Revision-Date: 2020-05-15 00:33+0000\n"
|
| 11 |
+
"Last-Translator: Surush Sufiew <siriusproger@gmail.com>\n"
|
| 12 |
+
"Language-Team: Tajik (http://www.transifex.com/django/django/language/tg/)\n"
|
| 13 |
+
"MIME-Version: 1.0\n"
|
| 14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 16 |
+
"Language: tg\n"
|
| 17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 18 |
+
|
| 19 |
+
msgid "Redirects"
|
| 20 |
+
msgstr "Самтдигаркунӣ(Redirects)"
|
| 21 |
+
|
| 22 |
+
msgid "site"
|
| 23 |
+
msgstr "сомона"
|
| 24 |
+
|
| 25 |
+
msgid "redirect from"
|
| 26 |
+
msgstr "Самтдигаркунӣ аз"
|
| 27 |
+
|
| 28 |
+
msgid ""
|
| 29 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 30 |
+
"events/search/”."
|
| 31 |
+
msgstr ""
|
| 32 |
+
|
| 33 |
+
msgid "redirect to"
|
| 34 |
+
msgstr "Самтдигаркунӣ ба"
|
| 35 |
+
|
| 36 |
+
msgid ""
|
| 37 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 38 |
+
"“http://”."
|
| 39 |
+
msgstr ""
|
| 40 |
+
|
| 41 |
+
msgid "redirect"
|
| 42 |
+
msgstr "самтдигаркунӣ"
|
| 43 |
+
|
| 44 |
+
msgid "redirects"
|
| 45 |
+
msgstr "самтдигаркунӣ"
|
testbed/django__django/django/contrib/redirects/locale/th/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.33 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/th/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 5 |
+
# Kowit Charoenratchatabhan <kowit.s.c@gmail.com>, 2018
|
| 6 |
+
msgid ""
|
| 7 |
+
msgstr ""
|
| 8 |
+
"Project-Id-Version: django\n"
|
| 9 |
+
"Report-Msgid-Bugs-To: \n"
|
| 10 |
+
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
| 11 |
+
"PO-Revision-Date: 2018-05-06 08:37+0000\n"
|
| 12 |
+
"Last-Translator: Kowit Charoenratchatabhan <kowit.s.c@gmail.com>\n"
|
| 13 |
+
"Language-Team: Thai (http://www.transifex.com/django/django/language/th/)\n"
|
| 14 |
+
"MIME-Version: 1.0\n"
|
| 15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 17 |
+
"Language: th\n"
|
| 18 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
| 19 |
+
|
| 20 |
+
msgid "Redirects"
|
| 21 |
+
msgstr "เปลี่ยนทิศทาง"
|
| 22 |
+
|
| 23 |
+
msgid "site"
|
| 24 |
+
msgstr "ไซต์"
|
| 25 |
+
|
| 26 |
+
msgid "redirect from"
|
| 27 |
+
msgstr "เปลี่ยนทิศทางจาก"
|
| 28 |
+
|
| 29 |
+
msgid ""
|
| 30 |
+
"This should be an absolute path, excluding the domain name. Example: '/"
|
| 31 |
+
"events/search/'."
|
| 32 |
+
msgstr "พาธไม่รวมโดเมน ตัวอย่าง : '/events/search/'"
|
| 33 |
+
|
| 34 |
+
msgid "redirect to"
|
| 35 |
+
msgstr "เปลี่ยนทิศทางไปที่"
|
| 36 |
+
|
| 37 |
+
msgid ""
|
| 38 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 39 |
+
"'http://'."
|
| 40 |
+
msgstr "มันอาจจะเป็นพาธหรือ URL แบบเต็มที่ขึ้นต้นด้วย 'http://'."
|
| 41 |
+
|
| 42 |
+
msgid "redirect"
|
| 43 |
+
msgstr "เปลี่ยนทิศทาง"
|
| 44 |
+
|
| 45 |
+
msgid "redirects"
|
| 46 |
+
msgstr "เปลี่ยนทิศทาง"
|
testbed/django__django/django/contrib/redirects/locale/tk/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.16 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/tk/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Resul <resulsaparov@gmail.com>, 2020
|
| 5 |
+
# Welbeck Garli <welbeckgrlyw@gmail.com>, 2022
|
| 6 |
+
msgid ""
|
| 7 |
+
msgstr ""
|
| 8 |
+
"Project-Id-Version: django\n"
|
| 9 |
+
"Report-Msgid-Bugs-To: \n"
|
| 10 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 11 |
+
"PO-Revision-Date: 2022-07-24 18:32+0000\n"
|
| 12 |
+
"Last-Translator: Welbeck Garli <welbeckgrlyw@gmail.com>\n"
|
| 13 |
+
"Language-Team: Turkmen (http://www.transifex.com/django/django/language/"
|
| 14 |
+
"tk/)\n"
|
| 15 |
+
"MIME-Version: 1.0\n"
|
| 16 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 17 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 18 |
+
"Language: tk\n"
|
| 19 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 20 |
+
|
| 21 |
+
msgid "Redirects"
|
| 22 |
+
msgstr "Gaýtadan gönükdirmeler"
|
| 23 |
+
|
| 24 |
+
msgid "site"
|
| 25 |
+
msgstr "sahypa"
|
| 26 |
+
|
| 27 |
+
msgid "redirect from"
|
| 28 |
+
msgstr "gönükdirilen salgy"
|
| 29 |
+
|
| 30 |
+
msgid ""
|
| 31 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 32 |
+
"events/search/”."
|
| 33 |
+
msgstr ""
|
| 34 |
+
"Bu domen ady hasaba almazdan, doly ýol bolmaly. Mysal: “/wakalar/gozleg/”."
|
| 35 |
+
|
| 36 |
+
msgid "redirect to"
|
| 37 |
+
msgstr "gönükdirilen salgy"
|
| 38 |
+
|
| 39 |
+
msgid ""
|
| 40 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 41 |
+
"scheme such as “https://”."
|
| 42 |
+
msgstr ""
|
| 43 |
+
"(ýokarydaky ýaly) absolýut yzarlama ýa-da \"https://\" bilen başlanýan "
|
| 44 |
+
"sahypa gönükdirmesi bolup biler."
|
| 45 |
+
|
| 46 |
+
msgid "redirect"
|
| 47 |
+
msgstr "gönükdirme"
|
| 48 |
+
|
| 49 |
+
msgid "redirects"
|
| 50 |
+
msgstr "gönükdirmeler"
|
testbed/django__django/django/contrib/redirects/locale/tr/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.13 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/tr/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# BouRock, 2015,2019,2021
|
| 5 |
+
# BouRock, 2014
|
| 6 |
+
# Cihad GÜNDOĞDU <cihadgundogdu@gmail.com>, 2014
|
| 7 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 8 |
+
msgid ""
|
| 9 |
+
msgstr ""
|
| 10 |
+
"Project-Id-Version: django\n"
|
| 11 |
+
"Report-Msgid-Bugs-To: \n"
|
| 12 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 13 |
+
"PO-Revision-Date: 2021-01-16 19:34+0000\n"
|
| 14 |
+
"Last-Translator: BouRock\n"
|
| 15 |
+
"Language-Team: Turkish (http://www.transifex.com/django/django/language/"
|
| 16 |
+
"tr/)\n"
|
| 17 |
+
"MIME-Version: 1.0\n"
|
| 18 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 19 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 20 |
+
"Language: tr\n"
|
| 21 |
+
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
| 22 |
+
|
| 23 |
+
msgid "Redirects"
|
| 24 |
+
msgstr "Yönlendirmeler"
|
| 25 |
+
|
| 26 |
+
msgid "site"
|
| 27 |
+
msgstr "site"
|
| 28 |
+
|
| 29 |
+
msgid "redirect from"
|
| 30 |
+
msgstr "yönlendirilen adres"
|
| 31 |
+
|
| 32 |
+
msgid ""
|
| 33 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 34 |
+
"events/search/”."
|
| 35 |
+
msgstr ""
|
| 36 |
+
"Bu, bir tam yol olmalıdır, etki alanı adı kullanılmadan yazılmalı. Örnek: “/"
|
| 37 |
+
"olaylar/arama/”."
|
| 38 |
+
|
| 39 |
+
msgid "redirect to"
|
| 40 |
+
msgstr "yönlendirildiği adres"
|
| 41 |
+
|
| 42 |
+
msgid ""
|
| 43 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 44 |
+
"scheme such as “https://”."
|
| 45 |
+
msgstr ""
|
| 46 |
+
"Bu, ya bir tam yol (yukarıdaki gibi) ya da “https://” gibi bir şema ile "
|
| 47 |
+
"başlayan tam bir URL olabilir."
|
| 48 |
+
|
| 49 |
+
msgid "redirect"
|
| 50 |
+
msgstr "yönlendirme"
|
| 51 |
+
|
| 52 |
+
msgid "redirects"
|
| 53 |
+
msgstr "yönlendirmeler"
|
testbed/django__django/django/contrib/redirects/locale/tt/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.18 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/tt/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Azat Khasanshin <lordofbazuks@gmail.com>, 2011
|
| 5 |
+
msgid ""
|
| 6 |
+
msgstr ""
|
| 7 |
+
"Project-Id-Version: django\n"
|
| 8 |
+
"Report-Msgid-Bugs-To: \n"
|
| 9 |
+
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
| 10 |
+
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
| 11 |
+
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
|
| 12 |
+
"Language-Team: Tatar (http://www.transifex.com/django/django/language/tt/)\n"
|
| 13 |
+
"MIME-Version: 1.0\n"
|
| 14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 16 |
+
"Language: tt\n"
|
| 17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
| 18 |
+
|
| 19 |
+
msgid "Redirects"
|
| 20 |
+
msgstr ""
|
| 21 |
+
|
| 22 |
+
msgid "site"
|
| 23 |
+
msgstr ""
|
| 24 |
+
|
| 25 |
+
msgid "redirect from"
|
| 26 |
+
msgstr "бу сәхифәдән юнәлтергә:"
|
| 27 |
+
|
| 28 |
+
msgid ""
|
| 29 |
+
"This should be an absolute path, excluding the domain name. Example: '/"
|
| 30 |
+
"events/search/'."
|
| 31 |
+
msgstr ""
|
| 32 |
+
"Бу домен исеменнән тыш абсолүт юл булырга тиеш. Мәсәлән: '/events/search/'."
|
| 33 |
+
|
| 34 |
+
msgid "redirect to"
|
| 35 |
+
msgstr "бу сәхифәгә юнәлтергә:"
|
| 36 |
+
|
| 37 |
+
msgid ""
|
| 38 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 39 |
+
"'http://'."
|
| 40 |
+
msgstr ""
|
| 41 |
+
"Бу я абсолүт юл (өстәге кебек), я 'http://' белән башланган тулы URL булырга "
|
| 42 |
+
"тиеш."
|
| 43 |
+
|
| 44 |
+
msgid "redirect"
|
| 45 |
+
msgstr "юнәлтү"
|
| 46 |
+
|
| 47 |
+
msgid "redirects"
|
| 48 |
+
msgstr "юнәлтүләр"
|
testbed/django__django/django/contrib/redirects/locale/udm/LC_MESSAGES/django.mo
ADDED
|
Binary file (462 Bytes). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/udm/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
msgid ""
|
| 5 |
+
msgstr ""
|
| 6 |
+
"Project-Id-Version: django\n"
|
| 7 |
+
"Report-Msgid-Bugs-To: \n"
|
| 8 |
+
"POT-Creation-Date: 2015-01-17 11:07+0100\n"
|
| 9 |
+
"PO-Revision-Date: 2014-10-05 20:13+0000\n"
|
| 10 |
+
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
|
| 11 |
+
"Language-Team: Udmurt (http://www.transifex.com/projects/p/django/language/"
|
| 12 |
+
"udm/)\n"
|
| 13 |
+
"MIME-Version: 1.0\n"
|
| 14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 16 |
+
"Language: udm\n"
|
| 17 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
| 18 |
+
|
| 19 |
+
msgid "Redirects"
|
| 20 |
+
msgstr ""
|
| 21 |
+
|
| 22 |
+
msgid "redirect from"
|
| 23 |
+
msgstr ""
|
| 24 |
+
|
| 25 |
+
msgid ""
|
| 26 |
+
"This should be an absolute path, excluding the domain name. Example: '/"
|
| 27 |
+
"events/search/'."
|
| 28 |
+
msgstr ""
|
| 29 |
+
|
| 30 |
+
msgid "redirect to"
|
| 31 |
+
msgstr ""
|
| 32 |
+
|
| 33 |
+
msgid ""
|
| 34 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 35 |
+
"'http://'."
|
| 36 |
+
msgstr ""
|
| 37 |
+
|
| 38 |
+
msgid "redirect"
|
| 39 |
+
msgstr ""
|
| 40 |
+
|
| 41 |
+
msgid "redirects"
|
| 42 |
+
msgstr ""
|
testbed/django__django/django/contrib/redirects/locale/uk/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.57 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/uk/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Oleksandr Chernihov <o.chernihov@gmail.com>, 2014
|
| 5 |
+
# Illia Volochii <illia.volochii@gmail.com>, 2021
|
| 6 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 7 |
+
# Mykola Zamkovoi <nickzam@gmail.com>, 2014
|
| 8 |
+
# Vitaliy Kozlovskyi <ubombi@gmail.com>, 2015
|
| 9 |
+
msgid ""
|
| 10 |
+
msgstr ""
|
| 11 |
+
"Project-Id-Version: django\n"
|
| 12 |
+
"Report-Msgid-Bugs-To: \n"
|
| 13 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 14 |
+
"PO-Revision-Date: 2021-01-20 00:12+0000\n"
|
| 15 |
+
"Last-Translator: Illia Volochii <illia.volochii@gmail.com>\n"
|
| 16 |
+
"Language-Team: Ukrainian (http://www.transifex.com/django/django/language/"
|
| 17 |
+
"uk/)\n"
|
| 18 |
+
"MIME-Version: 1.0\n"
|
| 19 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 20 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 21 |
+
"Language: uk\n"
|
| 22 |
+
"Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != "
|
| 23 |
+
"11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % "
|
| 24 |
+
"100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || "
|
| 25 |
+
"(n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n"
|
| 26 |
+
|
| 27 |
+
msgid "Redirects"
|
| 28 |
+
msgstr "Перенаправлення"
|
| 29 |
+
|
| 30 |
+
msgid "site"
|
| 31 |
+
msgstr "сайт"
|
| 32 |
+
|
| 33 |
+
msgid "redirect from"
|
| 34 |
+
msgstr "перенаправлення з"
|
| 35 |
+
|
| 36 |
+
msgid ""
|
| 37 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 38 |
+
"events/search/”."
|
| 39 |
+
msgstr ""
|
| 40 |
+
"Шлях має бути абсолютним без доменного імені. Наприклад, “/events/search/”."
|
| 41 |
+
|
| 42 |
+
msgid "redirect to"
|
| 43 |
+
msgstr "перенаправлення до"
|
| 44 |
+
|
| 45 |
+
msgid ""
|
| 46 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 47 |
+
"scheme such as “https://”."
|
| 48 |
+
msgstr ""
|
| 49 |
+
"Шлях може бути або абсолютним (як вказано вище), або повним URL (який "
|
| 50 |
+
"починається із схеми, як-от “https://”)."
|
| 51 |
+
|
| 52 |
+
msgid "redirect"
|
| 53 |
+
msgstr "перенаправлення"
|
| 54 |
+
|
| 55 |
+
msgid "redirects"
|
| 56 |
+
msgstr "перенаправлення"
|
testbed/django__django/django/contrib/redirects/locale/ur/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.14 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/ur/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Mansoorulhaq Mansoor <mnsrknp@gmail.com>, 2011
|
| 5 |
+
msgid ""
|
| 6 |
+
msgstr ""
|
| 7 |
+
"Project-Id-Version: django\n"
|
| 8 |
+
"Report-Msgid-Bugs-To: \n"
|
| 9 |
+
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
| 10 |
+
"PO-Revision-Date: 2017-09-19 16:40+0000\n"
|
| 11 |
+
"Last-Translator: Jannis Leidel <jannis@leidel.info>\n"
|
| 12 |
+
"Language-Team: Urdu (http://www.transifex.com/django/django/language/ur/)\n"
|
| 13 |
+
"MIME-Version: 1.0\n"
|
| 14 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 15 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 16 |
+
"Language: ur\n"
|
| 17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
| 18 |
+
|
| 19 |
+
msgid "Redirects"
|
| 20 |
+
msgstr ""
|
| 21 |
+
|
| 22 |
+
msgid "site"
|
| 23 |
+
msgstr ""
|
| 24 |
+
|
| 25 |
+
msgid "redirect from"
|
| 26 |
+
msgstr "سے ری ڈائریکٹ"
|
| 27 |
+
|
| 28 |
+
msgid ""
|
| 29 |
+
"This should be an absolute path, excluding the domain name. Example: '/"
|
| 30 |
+
"events/search/'."
|
| 31 |
+
msgstr "یہ مطلق پاتھ ھونا چاھئے، بغیر ڈومین نام کے۔ مثلاً '/events/search/'"
|
| 32 |
+
|
| 33 |
+
msgid "redirect to"
|
| 34 |
+
msgstr "ری ڈائریکٹ از طرف"
|
| 35 |
+
|
| 36 |
+
msgid ""
|
| 37 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 38 |
+
"'http://'."
|
| 39 |
+
msgstr ""
|
| 40 |
+
"یہ مطلق پاتھ ھو سکتا ھے (جیسے اوپر ھے) یا مکمل یو آر ایل (URL) بمع 'http://'۔"
|
| 41 |
+
|
| 42 |
+
msgid "redirect"
|
| 43 |
+
msgstr "ری ڈائریکٹ"
|
| 44 |
+
|
| 45 |
+
msgid "redirects"
|
| 46 |
+
msgstr "ری ڈائیکٹس"
|
testbed/django__django/django/contrib/redirects/locale/uz/LC_MESSAGES/django.mo
ADDED
|
Binary file (743 Bytes). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/uz/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Bedilbek Khamidov <bedilbek@gmail.com>, 2019
|
| 5 |
+
# Nuruddin Iminokhunov <nuruddin.iminohunov@gmail.com>, 2016
|
| 6 |
+
msgid ""
|
| 7 |
+
msgstr ""
|
| 8 |
+
"Project-Id-Version: django\n"
|
| 9 |
+
"Report-Msgid-Bugs-To: \n"
|
| 10 |
+
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
|
| 11 |
+
"PO-Revision-Date: 2019-09-19 08:25+0000\n"
|
| 12 |
+
"Last-Translator: Bedilbek Khamidov <bedilbek@gmail.com>\n"
|
| 13 |
+
"Language-Team: Uzbek (http://www.transifex.com/django/django/language/uz/)\n"
|
| 14 |
+
"MIME-Version: 1.0\n"
|
| 15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 17 |
+
"Language: uz\n"
|
| 18 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
| 19 |
+
|
| 20 |
+
msgid "Redirects"
|
| 21 |
+
msgstr "Redirektlar"
|
| 22 |
+
|
| 23 |
+
msgid "site"
|
| 24 |
+
msgstr "sayt"
|
| 25 |
+
|
| 26 |
+
msgid "redirect from"
|
| 27 |
+
msgstr "redirekt formasi"
|
| 28 |
+
|
| 29 |
+
msgid ""
|
| 30 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 31 |
+
"events/search/”."
|
| 32 |
+
msgstr ""
|
| 33 |
+
"Domen nomidan tashqari, bu mutlaq manzil bo'lishi kerak. \n"
|
| 34 |
+
"Masalan: “/events/search/”."
|
| 35 |
+
|
| 36 |
+
msgid "redirect to"
|
| 37 |
+
msgstr ""
|
| 38 |
+
|
| 39 |
+
msgid ""
|
| 40 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 41 |
+
"“http://”."
|
| 42 |
+
msgstr ""
|
| 43 |
+
|
| 44 |
+
msgid "redirect"
|
| 45 |
+
msgstr ""
|
| 46 |
+
|
| 47 |
+
msgid "redirects"
|
| 48 |
+
msgstr ""
|
testbed/django__django/django/contrib/redirects/locale/vi/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.11 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/vi/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 5 |
+
msgid ""
|
| 6 |
+
msgstr ""
|
| 7 |
+
"Project-Id-Version: django\n"
|
| 8 |
+
"Report-Msgid-Bugs-To: \n"
|
| 9 |
+
"POT-Creation-Date: 2015-10-09 17:42+0200\n"
|
| 10 |
+
"PO-Revision-Date: 2017-09-23 18:54+0000\n"
|
| 11 |
+
"Last-Translator: Tran Van <vantxm@yahoo.co.uk>\n"
|
| 12 |
+
"Language-Team: Vietnamese (http://www.transifex.com/django/django/language/"
|
| 13 |
+
"vi/)\n"
|
| 14 |
+
"MIME-Version: 1.0\n"
|
| 15 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 16 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 17 |
+
"Language: vi\n"
|
| 18 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
| 19 |
+
|
| 20 |
+
msgid "Redirects"
|
| 21 |
+
msgstr ""
|
| 22 |
+
|
| 23 |
+
msgid "site"
|
| 24 |
+
msgstr ""
|
| 25 |
+
|
| 26 |
+
msgid "redirect from"
|
| 27 |
+
msgstr "Chuyển hướng từ"
|
| 28 |
+
|
| 29 |
+
msgid ""
|
| 30 |
+
"This should be an absolute path, excluding the domain name. Example: '/"
|
| 31 |
+
"events/search/'."
|
| 32 |
+
msgstr ""
|
| 33 |
+
"Đây phải là đường dẫn tuyệt đối, không bao gồm tên miền. Ví dụ: '/events/"
|
| 34 |
+
"search/'."
|
| 35 |
+
|
| 36 |
+
msgid "redirect to"
|
| 37 |
+
msgstr "Chuyển hướng tới"
|
| 38 |
+
|
| 39 |
+
msgid ""
|
| 40 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 41 |
+
"'http://'."
|
| 42 |
+
msgstr ""
|
| 43 |
+
"Đây có thể là đường dẫn tuyệt đối hoặc địa chỉ đầy đủ bắt đầu với 'http://'"
|
| 44 |
+
|
| 45 |
+
msgid "redirect"
|
| 46 |
+
msgstr "Chuyển hướng"
|
| 47 |
+
|
| 48 |
+
msgid "redirects"
|
| 49 |
+
msgstr "Chuyển hướng"
|
testbed/django__django/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.1 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/zh_Hans/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# HuanCheng Bai白宦成 <xiqingongzi@gmail.com>, 2018
|
| 5 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 6 |
+
# mozillazg <opensource.mozillazg@gmail.com>, 2016
|
| 7 |
+
# Ronald White <tkliuxing@me.com>, 2014
|
| 8 |
+
# Veoco <one@nomox.cn>, 2021
|
| 9 |
+
# wolf ice <warwolf7677@163.com>, 2020
|
| 10 |
+
msgid ""
|
| 11 |
+
msgstr ""
|
| 12 |
+
"Project-Id-Version: django\n"
|
| 13 |
+
"Report-Msgid-Bugs-To: \n"
|
| 14 |
+
"POT-Creation-Date: 2021-01-15 09:00+0100\n"
|
| 15 |
+
"PO-Revision-Date: 2021-02-07 04:22+0000\n"
|
| 16 |
+
"Last-Translator: Veoco <one@nomox.cn>\n"
|
| 17 |
+
"Language-Team: Chinese (China) (http://www.transifex.com/django/django/"
|
| 18 |
+
"language/zh_CN/)\n"
|
| 19 |
+
"MIME-Version: 1.0\n"
|
| 20 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 21 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 22 |
+
"Language: zh_CN\n"
|
| 23 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
| 24 |
+
|
| 25 |
+
msgid "Redirects"
|
| 26 |
+
msgstr "重定向"
|
| 27 |
+
|
| 28 |
+
msgid "site"
|
| 29 |
+
msgstr "站点"
|
| 30 |
+
|
| 31 |
+
msgid "redirect from"
|
| 32 |
+
msgstr "重定向自"
|
| 33 |
+
|
| 34 |
+
msgid ""
|
| 35 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 36 |
+
"events/search/”."
|
| 37 |
+
msgstr "这应该是绝对路径,不包括域名。例如:“/events/search/”。"
|
| 38 |
+
|
| 39 |
+
msgid "redirect to"
|
| 40 |
+
msgstr "重定向到"
|
| 41 |
+
|
| 42 |
+
msgid ""
|
| 43 |
+
"This can be either an absolute path (as above) or a full URL starting with a "
|
| 44 |
+
"scheme such as “https://”."
|
| 45 |
+
msgstr ""
|
| 46 |
+
"这可以是绝对路径(如上所述),也可以是一个以 “https://” 等协议开头的完整 "
|
| 47 |
+
"URL。"
|
| 48 |
+
|
| 49 |
+
msgid "redirect"
|
| 50 |
+
msgstr "重定向"
|
| 51 |
+
|
| 52 |
+
msgid "redirects"
|
| 53 |
+
msgstr "重定向"
|
testbed/django__django/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.mo
ADDED
|
Binary file (1.07 kB). View file
|
|
|
testbed/django__django/django/contrib/redirects/locale/zh_Hant/LC_MESSAGES/django.po
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# This file is distributed under the same license as the Django package.
|
| 2 |
+
#
|
| 3 |
+
# Translators:
|
| 4 |
+
# Chen Chun-Chia <ccc.larc@gmail.com>, 2015
|
| 5 |
+
# Jannis Leidel <jannis@leidel.info>, 2011
|
| 6 |
+
# Tzu-ping Chung <uranusjr@gmail.com>, 2016,2019
|
| 7 |
+
msgid ""
|
| 8 |
+
msgstr ""
|
| 9 |
+
"Project-Id-Version: django\n"
|
| 10 |
+
"Report-Msgid-Bugs-To: \n"
|
| 11 |
+
"POT-Creation-Date: 2019-09-08 17:27+0200\n"
|
| 12 |
+
"PO-Revision-Date: 2019-09-18 09:01+0000\n"
|
| 13 |
+
"Last-Translator: Tzu-ping Chung <uranusjr@gmail.com>\n"
|
| 14 |
+
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/django/django/"
|
| 15 |
+
"language/zh_TW/)\n"
|
| 16 |
+
"MIME-Version: 1.0\n"
|
| 17 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
| 18 |
+
"Content-Transfer-Encoding: 8bit\n"
|
| 19 |
+
"Language: zh_TW\n"
|
| 20 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
| 21 |
+
|
| 22 |
+
msgid "Redirects"
|
| 23 |
+
msgstr "重導向"
|
| 24 |
+
|
| 25 |
+
msgid "site"
|
| 26 |
+
msgstr "網站"
|
| 27 |
+
|
| 28 |
+
msgid "redirect from"
|
| 29 |
+
msgstr "重導向自"
|
| 30 |
+
|
| 31 |
+
msgid ""
|
| 32 |
+
"This should be an absolute path, excluding the domain name. Example: “/"
|
| 33 |
+
"events/search/”."
|
| 34 |
+
msgstr "應該是一個絕對路徑,不包括網域。例如:「/events/search/」。"
|
| 35 |
+
|
| 36 |
+
msgid "redirect to"
|
| 37 |
+
msgstr "重導向到"
|
| 38 |
+
|
| 39 |
+
msgid ""
|
| 40 |
+
"This can be either an absolute path (as above) or a full URL starting with "
|
| 41 |
+
"“http://”."
|
| 42 |
+
msgstr "此可為一絕對路徑(如上)或一個以「http://」開頭的完整 URL。"
|
| 43 |
+
|
| 44 |
+
msgid "redirect"
|
| 45 |
+
msgstr "重導向"
|
| 46 |
+
|
| 47 |
+
msgid "redirects"
|
| 48 |
+
msgstr "重導向"
|