Skip to content

Commit 8f7276b

Browse files
committed
Updated Transifex links to the Django project
Translations for the Django framework are now hosted on the django-core Transifex project, and the django project is only dedicated to a team-only hub project.
1 parent 9098730 commit 8f7276b

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.tx/config

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,77 +2,77 @@
22
host = https://www.transifex.com
33
lang_map = sr@latin:sr_Latn
44

5-
[django.core]
5+
[django-core.core]
66
file_filter = django/conf/locale/<lang>/LC_MESSAGES/django.po
77
source_file = django/conf/locale/en/LC_MESSAGES/django.po
88
source_lang = en
99

10-
[django.contrib-admin]
10+
[django-core.contrib-admin]
1111
file_filter = django/contrib/admin/locale/<lang>/LC_MESSAGES/django.po
1212
source_file = django/contrib/admin/locale/en/LC_MESSAGES/django.po
1313
source_lang = en
1414

15-
[django.contrib-admin-js]
15+
[django-core.contrib-admin-js]
1616
file_filter = django/contrib/admin/locale/<lang>/LC_MESSAGES/djangojs.po
1717
source_file = django/contrib/admin/locale/en/LC_MESSAGES/djangojs.po
1818
source_lang = en
1919

20-
[django.contrib-admindocs]
20+
[django-core.contrib-admindocs]
2121
file_filter = django/contrib/admindocs/locale/<lang>/LC_MESSAGES/django.po
2222
source_file = django/contrib/admindocs/locale/en/LC_MESSAGES/django.po
2323
source_lang = en
2424

25-
[django.contrib-auth]
25+
[django-core.contrib-auth]
2626
file_filter = django/contrib/auth/locale/<lang>/LC_MESSAGES/django.po
2727
source_file = django/contrib/auth/locale/en/LC_MESSAGES/django.po
2828
source_lang = en
2929

30-
[django.contrib-comments]
30+
[django-core.contrib-comments]
3131
file_filter = django/contrib/comments/locale/<lang>/LC_MESSAGES/django.po
3232
source_file = django/contrib/comments/locale/en/LC_MESSAGES/django.po
3333
source_lang = en
3434

35-
[django.contrib-contenttypes]
35+
[django-core.contrib-contenttypes]
3636
file_filter = django/contrib/contenttypes/locale/<lang>/LC_MESSAGES/django.po
3737
source_file = django/contrib/contenttypes/locale/en/LC_MESSAGES/django.po
3838
source_lang = en
3939

40-
[django.contrib-flatpages]
40+
[django-core.contrib-flatpages]
4141
file_filter = django/contrib/flatpages/locale/<lang>/LC_MESSAGES/django.po
4242
source_file = django/contrib/flatpages/locale/en/LC_MESSAGES/django.po
4343
source_lang = en
4444

45-
[django.contrib-formtools]
45+
[django-core.contrib-formtools]
4646
file_filter = django/contrib/formtools/locale/<lang>/LC_MESSAGES/django.po
4747
source_file = django/contrib/formtools/locale/en/LC_MESSAGES/django.po
4848
source_lang = en
4949

50-
[django.contrib-gis]
50+
[django-core.contrib-gis]
5151
file_filter = django/contrib/gis/locale/<lang>/LC_MESSAGES/django.po
5252
source_file = django/contrib/gis/locale/en/LC_MESSAGES/django.po
5353
source_lang = en
5454

55-
[django.contrib-humanize]
55+
[django-core.contrib-humanize]
5656
file_filter = django/contrib/humanize/locale/<lang>/LC_MESSAGES/django.po
5757
source_file = django/contrib/humanize/locale/en/LC_MESSAGES/django.po
5858
source_lang = en
5959

60-
[django.contrib-messages]
60+
[django-core.contrib-messages]
6161
file_filter = django/contrib/messages/locale/<lang>/LC_MESSAGES/django.po
6262
source_file = django/contrib/messages/locale/en/LC_MESSAGES/django.po
6363
source_lang = en
6464

65-
[django.contrib-redirects]
65+
[django-core.contrib-redirects]
6666
file_filter = django/contrib/redirects/locale/<lang>/LC_MESSAGES/django.po
6767
source_file = django/contrib/redirects/locale/en/LC_MESSAGES/django.po
6868
source_lang = en
6969

70-
[django.contrib-sessions]
70+
[django-core.contrib-sessions]
7171
file_filter = django/contrib/sessions/locale/<lang>/LC_MESSAGES/django.po
7272
source_file = django/contrib/sessions/locale/en/LC_MESSAGES/django.po
7373
source_lang = en
7474

75-
[django.contrib-sites]
75+
[django-core.contrib-sites]
7676
file_filter = django/contrib/sites/locale/<lang>/LC_MESSAGES/django.po
7777
source_file = django/contrib/sites/locale/en/LC_MESSAGES/django.po
7878
source_lang = en

docs/internals/contributing/localizing.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ Django source tree, as for any code change:
6262

6363
.. _Transifex: https://www.transifex.com/
6464
.. _Django i18n mailing list: http://groups.google.com/group/django-i18n/
65-
.. _Django project page: https://www.transifex.com/projects/p/django/
65+
.. _Django project page: https://www.transifex.com/projects/p/django-core/
6666
.. _Transifex User Guide: http://help.transifex.com/

scripts/manage_translations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ def _get_locale_dirs(include_core=True):
4747
def _tx_resource_for_name(name):
4848
""" Return the Transifex resource name """
4949
if name == 'core':
50-
return "django.core"
50+
return "django-core.core"
5151
else:
52-
return "django.contrib-%s" % name
52+
return "django-core.contrib-%s" % name
5353

5454
def _check_diff(cat_name, base_path):
5555
"""

0 commit comments

Comments
 (0)