Skip to content
This repository was archived by the owner on Oct 27, 2021. It is now read-only.

Commit 7c24027

Browse files
committed
Renamed Transifex project from django-core to django
See also http://blog.transifex.com/post/83622601443/new-teams-management-transifex
1 parent 91afc00 commit 7c24027

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

.tx/config

+15-15
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.core]
5+
[django.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-core.contrib-admin]
10+
[django.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-core.contrib-admin-js]
15+
[django.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-core.contrib-admindocs]
20+
[django.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-core.contrib-auth]
25+
[django.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-core.contrib-comments]
30+
[django.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-core.contrib-contenttypes]
35+
[django.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-core.contrib-flatpages]
40+
[django.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-core.contrib-formtools]
45+
[django.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-core.contrib-gis]
50+
[django.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-core.contrib-humanize]
55+
[django.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-core.contrib-messages]
60+
[django.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-core.contrib-redirects]
65+
[django.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-core.contrib-sessions]
70+
[django.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-core.contrib-sites]
75+
[django.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

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ Django source tree, as for any code change:
6262
``Translations``, and attach the patch to it.
6363

6464
.. _Transifex: https://www.transifex.com/
65-
.. _Django project page: https://www.transifex.com/projects/p/django-core/
65+
.. _Django project page: https://www.transifex.com/projects/p/django/
6666
.. _Transifex User Guide: http://support.transifex.com/

scripts/manage_translations.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ def _get_locale_dirs(resources, include_core=True):
6161
def _tx_resource_for_name(name):
6262
""" Return the Transifex resource name """
6363
if name == 'core':
64-
return "django-core.core"
64+
return "django.core"
6565
else:
66-
return "django-core.contrib-%s" % name
66+
return "django.contrib-%s" % name
6767

6868

6969
def _check_diff(cat_name, base_path):

0 commit comments

Comments
 (0)