Add Finnish language

This commit is contained in:
Mikko Haikonen 2020-07-29 16:40:18 +03:00
parent 37baabccde
commit dfdadea5ba
4 changed files with 1531 additions and 1 deletions

View File

@ -155,6 +155,7 @@ LOCALE_PATHS = [
LANGUAGES = [
('en', _('English')),
('fr', _('French')),
('fi', _('Finnish')),
('de', _('German')),
('es', _('Spanish')),
('sv', _('Swedish')),

View File

@ -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