~ubuntu-branches/ubuntu/quantal/python-django/quantal

« back to all changes in this revision

Viewing changes to django/contrib/localflavor/de/de_states.py

  • Committer: Bazaar Package Importer
  • Author(s): Scott James Remnant, Eddy Mulyono
  • Date: 2008-09-16 12:18:47 UTC
  • mfrom: (1.1.5 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080916121847-mg225rg5mnsdqzr0
Tags: 1.0-1ubuntu1
* Merge from Debian (LP: #264191), remaining changes:
  - Run test suite on build.

[Eddy Mulyono]
* Update patch to workaround network test case failures.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*
 
2
from django.utils.translation import ugettext_lazy as _
 
3
 
 
4
STATE_CHOICES = (
 
5
    ('BW', _('Baden-Wuerttemberg')),
 
6
    ('BY', _('Bavaria')),
 
7
    ('BE', _('Berlin')),
 
8
    ('BB', _('Brandenburg')),
 
9
    ('HB', _('Bremen')),
 
10
    ('HH', _('Hamburg')),
 
11
    ('HE', _('Hessen')),
 
12
    ('MV', _('Mecklenburg-Western Pomerania')),
 
13
    ('NI', _('Lower Saxony')),
 
14
    ('NW', _('North Rhine-Westphalia')),
 
15
    ('RP', _('Rhineland-Palatinate')),
 
16
    ('SL', _('Saarland')),
 
17
    ('SN', _('Saxony')),
 
18
    ('ST', _('Saxony-Anhalt')),
 
19
    ('SH', _('Schleswig-Holstein')),
 
20
    ('TH', _('Thuringia')),
 
21
)