Skip to content

Commit

Permalink
feat: Added Hebrew as a language option (#1006)
Browse files Browse the repository at this point in the history
  • Loading branch information
marksweb authored Jun 5, 2024
1 parent c9b304f commit 7abb1a2
Show file tree
Hide file tree
Showing 3 changed files with 6,489 additions and 1 deletion.
6 changes: 5 additions & 1 deletion djangogirls/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ def gettext(s):
("pt-br", gettext("Brazilian Portuguese")),
("fr", gettext("French")),
("de", gettext("German")),
("he", gettext("Hebrew")),
("ko", gettext("Korean")),
("fa", gettext("Persian")),
("pt", gettext("Portuguese")),
Expand Down Expand Up @@ -151,7 +152,10 @@ def gettext(s):

THUMBNAIL_PRESERVE_EXTENSIONS = True
THUMBNAIL_ALIASES = {
"": {"coach": {"size": (160, 160), "crop": "smart"}, "sponsor": {"size": (204, 204), "crop": False}},
"": {
"coach": {"size": (160, 160), "crop": "smart"},
"sponsor": {"size": (204, 204), "crop": False},
},
}

STATIC_URL = "/static/"
Expand Down
Binary file added locale/he/LC_MESSAGES/django.mo
Binary file not shown.
Loading

0 comments on commit 7abb1a2

Please sign in to comment.