Update translations

This commit is contained in:
2020-05-15 10:31:22 +02:00
parent ee706cfe0f
commit 536dbf3d65
28 changed files with 1184 additions and 577 deletions

View File

@ -0,0 +1,67 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-15 08:29+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: apps/hospital/apps.py:7 apps/hospital/models.py:10
msgid "Hospital"
msgstr ""
#: apps/hospital/apps.py:8 apps/hospital/models.py:11
msgid "Hospitals"
msgstr ""
#: apps/hospital/models.py:13
msgid "Name"
msgstr ""
#: apps/hospital/models.py:13
msgid "The name of this hospital"
msgstr ""
#: apps/hospital/models.py:14
msgid "Address"
msgstr ""
#: apps/hospital/models.py:14
msgid "The address of this hospital"
msgstr ""
#: apps/hospital/models.py:15
msgid "Postal code"
msgstr ""
#: apps/hospital/models.py:15
msgid "The postal code of this hospital"
msgstr ""
#: apps/hospital/models.py:16
msgid "City"
msgstr ""
#: apps/hospital/models.py:16
msgid "The city of this hospital"
msgstr ""
#: apps/hospital/models.py:17
msgid "Phone number"
msgstr ""
#: apps/hospital/models.py:17
msgid "The general phone number of this hospital"
msgstr ""

View File

@ -0,0 +1,67 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2020-05-15 08:29+0000\n"
"PO-Revision-Date: 2020-05-15 10:20+0200\n"
"Last-Translator: Joshua Rubingh <j.g.rubingh@rug.nl>\n"
"Language-Team: \n"
"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 2.0.6\n"
#: apps/hospital/apps.py:7 apps/hospital/models.py:10
msgid "Hospital"
msgstr "Ziekenhuis"
#: apps/hospital/apps.py:8 apps/hospital/models.py:11
msgid "Hospitals"
msgstr "Ziekenhuizen"
#: apps/hospital/models.py:13
msgid "Name"
msgstr "Naam"
#: apps/hospital/models.py:13
msgid "The name of this hospital"
msgstr "De naam van dit ziekenhuis"
#: apps/hospital/models.py:14
msgid "Address"
msgstr "Adres"
#: apps/hospital/models.py:14
msgid "The address of this hospital"
msgstr "Het adres van dit ziekenhuis"
#: apps/hospital/models.py:15
msgid "Postal code"
msgstr "Postcode"
#: apps/hospital/models.py:15
msgid "The postal code of this hospital"
msgstr "De postcode van dit ziekenhuis"
#: apps/hospital/models.py:16
msgid "City"
msgstr "Stad"
#: apps/hospital/models.py:16
msgid "The city of this hospital"
msgstr "De stad waar dit ziekenhuis gelegen is"
#: apps/hospital/models.py:17
msgid "Phone number"
msgstr "Telefoonnummer"
#: apps/hospital/models.py:17
msgid "The general phone number of this hospital"
msgstr "Het algemene telefoonummer van dit ziekenhuis"

View File

@ -5,6 +5,11 @@ from lib.models.base import MetaDataModel
# Create your models here.
class Hospital(MetaDataModel):
class Meta:
verbose_name = _('Hospital')
verbose_name_plural = _('Hospitals')
name = models.CharField(_('Name'), max_length=200, help_text=_('The name of this hospital'))
address = models.CharField(_('Address'), max_length=200, blank=True, help_text=_('The address of this hospital'))
postal_code = models.CharField(_('Postal code'), max_length=10, blank=True, help_text=_('The postal code of this hospital'))