From 7ce1d7d0986bbf2cd7a9570b227708d1c7697968 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 21 Dec 2005 05:43:58 +0000 Subject: [PATCH] Added 'Submitting and maintaining translations' section to docs/contributing.txt git-svn-id: http://code.djangoproject.com/svn/django/trunk@1761 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- docs/contributing.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/contributing.txt b/docs/contributing.txt index 1470b7a1f6..26d64845f5 100644 --- a/docs/contributing.txt +++ b/docs/contributing.txt @@ -120,6 +120,24 @@ Patch style it obvious that the ticket includes a patch, and it will add the ticket to the `list of tickets with patches`_. +Submitting and maintaining translations +======================================= + +Various parts of Django, such as the admin site and validator error messages, +are internationalized. This means they display different text depending on a +user's language setting. + +These translations are contributed by Django users worldwide. If you find an +incorrect translation, or if you'd like to add a language that isn't yet +translated, here's what to do: + + * Join the `Django i18n mailing list`_ and introduce yourself. + * Create and submit translations using the methods described in the + `i18n documentation`_. + +.. _Django i18n mailing list: http://groups.google.com/group/django-i18n/ +.. _i18n documentation: http://www.djangoproject.com/documentation/i18n/ + Coding style ============