mirror of https://github.com/snachodog/mybuddy.git
Add Finnish language
This commit is contained in:
parent
37baabccde
commit
dfdadea5ba
|
@ -155,6 +155,7 @@ LOCALE_PATHS = [
|
|||
LANGUAGES = [
|
||||
('en', _('English')),
|
||||
('fr', _('French')),
|
||||
('fi', _('Finnish')),
|
||||
('de', _('German')),
|
||||
('es', _('Spanish')),
|
||||
('sv', _('Swedish')),
|
||||
|
|
|
@ -3,9 +3,16 @@ from .base import *
|
|||
# Quick-start development settings - unsuitable for production
|
||||
# https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
|
||||
|
||||
SECRET_KEY = 'CHANGE ME'
|
||||
SECRET_KEY = 'CHANGE ME LOL'
|
||||
DEBUG = True
|
||||
|
||||
DATABASES = {
|
||||
'default': {
|
||||
'ENGINE': 'django.db.backends.sqlite3',
|
||||
'NAME': os.path.join(BASE_DIR, '../data/db.sqlite3'),
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
# Static files (CSS, JavaScript, Images)
|
||||
# https://docs.djangoproject.com/en/3.0/howto/static-files/
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue