Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
ff0dac96
Kaydet (Commit)
ff0dac96
authored
Kas 25, 2015
tarafından
Claude Paroz
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Added Colombian Spanish as new available language
Refs #25815.
üst
867faeda
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
42 additions
and
0 deletions
+42
-0
global_settings.py
django/conf/global_settings.py
+1
-0
__init__.py
django/conf/locale/__init__.py
+6
-0
django.po
django/conf/locale/en/LC_MESSAGES/django.po
+4
-0
django.mo
django/conf/locale/es_CO/LC_MESSAGES/django.mo
+0
-0
django.po
django/conf/locale/es_CO/LC_MESSAGES/django.po
+0
-0
__init__.py
django/conf/locale/es_CO/__init__.py
+0
-0
formats.py
django/conf/locale/es_CO/formats.py
+29
-0
1.9.txt
docs/releases/1.9.txt
+2
-0
No files found.
django/conf/global_settings.py
Dosyayı görüntüle @
ff0dac96
...
...
@@ -68,6 +68,7 @@ LANGUAGES = [
(
'eo'
,
gettext_noop
(
'Esperanto'
)),
(
'es'
,
gettext_noop
(
'Spanish'
)),
(
'es-ar'
,
gettext_noop
(
'Argentinian Spanish'
)),
(
'es-co'
,
gettext_noop
(
'Colombian Spanish'
)),
(
'es-mx'
,
gettext_noop
(
'Mexican Spanish'
)),
(
'es-ni'
,
gettext_noop
(
'Nicaraguan Spanish'
)),
(
'es-ve'
,
gettext_noop
(
'Venezuelan Spanish'
)),
...
...
django/conf/locale/__init__.py
Dosyayı görüntüle @
ff0dac96
...
...
@@ -137,6 +137,12 @@ LANG_INFO = {
'name'
:
'Argentinian Spanish'
,
'name_local'
:
'español de Argentina'
,
},
'es-co'
:
{
'bidi'
:
False
,
'code'
:
'es-co'
,
'name'
:
'Colombian Spanish'
,
'name_local'
:
'español de Colombia'
,
},
'es-mx'
:
{
'bidi'
:
False
,
'code'
:
'es-mx'
,
...
...
django/conf/locale/en/LC_MESSAGES/django.po
Dosyayı görüntüle @
ff0dac96
...
...
@@ -97,6 +97,10 @@ msgstr ""
msgid "Argentinian Spanish"
msgstr ""
#: conf/global_settings.py:72
msgid "Colombian Spanish"
msgstr ""
#: conf/global_settings.py:72
msgid "Mexican Spanish"
msgstr ""
...
...
django/conf/locale/es_CO/LC_MESSAGES/django.mo
0 → 100644
Dosyayı görüntüle @
ff0dac96
File added
django/conf/locale/es_CO/LC_MESSAGES/django.po
0 → 100644
Dosyayı görüntüle @
ff0dac96
This diff is collapsed.
Click to expand it.
django/conf/locale/es_CO/__init__.py
0 → 100644
Dosyayı görüntüle @
ff0dac96
django/conf/locale/es_CO/formats.py
0 → 100644
Dosyayı görüntüle @
ff0dac96
# -*- encoding: utf-8 -*-
# This file is distributed under the same license as the Django package.
#
from
__future__
import
unicode_literals
DATE_FORMAT
=
r'j \d\e F \d\e Y'
TIME_FORMAT
=
'H:i'
DATETIME_FORMAT
=
r'j \d\e F \d\e Y \a \l\a\s H:i'
YEAR_MONTH_FORMAT
=
r'F \d\e Y'
MONTH_DAY_FORMAT
=
r'j \d\e F'
SHORT_DATE_FORMAT
=
'd/m/Y'
SHORT_DATETIME_FORMAT
=
'd/m/Y H:i'
FIRST_DAY_OF_WEEK
=
1
DATE_INPUT_FORMATS
=
[
'
%
d/
%
m/
%
Y'
,
'
%
d/
%
m/
%
y'
,
# '25/10/2006', '25/10/06'
'
%
Y
%
m
%
d'
,
# '20061025'
]
DATETIME_INPUT_FORMATS
=
[
'
%
d/
%
m/
%
Y
%
H:
%
M:
%
S'
,
'
%
d/
%
m/
%
Y
%
H:
%
M:
%
S.
%
f'
,
'
%
d/
%
m/
%
Y
%
H:
%
M'
,
'
%
d/
%
m/
%
y
%
H:
%
M:
%
S'
,
'
%
d/
%
m/
%
y
%
H:
%
M:
%
S.
%
f'
,
'
%
d/
%
m/
%
y
%
H:
%
M'
,
]
DECIMAL_SEPARATOR
=
','
THOUSAND_SEPARATOR
=
'.'
NUMBER_GROUPING
=
3
docs/releases/1.9.txt
Dosyayı görüntüle @
ff0dac96
...
...
@@ -410,6 +410,8 @@ Internationalization
* :ttag:`blocktrans` supports assigning its output to a variable using
``asvar``.
* A new language is available: Colombian Spanish.
Management Commands
^^^^^^^^^^^^^^^^^^^
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment