Skip to content

Commit

Permalink
Fix Czech locale
Browse files Browse the repository at this point in the history
Missing first element in month and day lists
  • Loading branch information
mathead committed Jul 31, 2015
1 parent 8869524 commit 9468824
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arrow/locales.py
Original file line number Diff line number Diff line change
Expand Up @@ -1216,14 +1216,14 @@ class CzechLocale(Locale):
past = 'Před {0}'
future = 'Za {0}'

month_names = ['Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen',
month_names = ['', 'Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen',
'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec']
month_abbreviations = ['Led', 'Úno', 'Bře', 'Dub', 'Kvě', 'Čvn', 'Čvc',
month_abbreviations = ['', 'Led', 'Úno', 'Bře', 'Dub', 'Kvě', 'Čvn', 'Čvc',
'Srp', 'Zář', 'Říj', 'Lis', 'Pro']

day_names = ['Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek',
day_names = ['', 'Pondělí', 'Úterý', 'Středa', 'Čtvrtek', 'Pátek',
'Sobota', 'Neděle']
day_abbreviations = ['Po', 'Út', 'St', 'Čt', 'Pá', 'So', 'Ne']
day_abbreviations = ['', 'Po', 'Út', 'St', 'Čt', 'Pá', 'So', 'Ne']


def _format_timeframe(self, timeframe, delta):
Expand Down

0 comments on commit 9468824

Please sign in to comment.