Skip to content

Commit

Permalink
fix language for 'add another'
Browse files Browse the repository at this point in the history
  • Loading branch information
hadpro24 committed Jan 14, 2022
1 parent 7b46a72 commit a0da0e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/project/project/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
# Internationalization
# https://docs.djangoproject.com/en/3.1/topics/i18n/

LANGUAGE_CODE = 'en-us'
LANGUAGE_CODE = 'en-en'

TIME_ZONE = 'UTC'

Expand Down
4 changes: 3 additions & 1 deletion examples/project/project/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
from django.contrib import admin
from django.urls import path

from app.views import home

urlpatterns = [
path('admin/', admin.site.urls),
path('', home),
]

0 comments on commit a0da0e5

Please sign in to comment.