Update translations
This commit is contained in:
@ -0,0 +1,47 @@
|
||||
# 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/polyclinic/apps.py:7 apps/polyclinic/models.py:11
|
||||
msgid "Polyclinic"
|
||||
msgstr ""
|
||||
|
||||
#: apps/polyclinic/apps.py:8 apps/polyclinic/models.py:12
|
||||
msgid "Polyclinics"
|
||||
msgstr ""
|
||||
|
||||
#: apps/polyclinic/models.py:14
|
||||
msgid "To which hospital belongs this polyclinic"
|
||||
msgstr ""
|
||||
|
||||
#: apps/polyclinic/models.py:15
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: apps/polyclinic/models.py:15
|
||||
msgid "The name of this polyclinic"
|
||||
msgstr ""
|
||||
|
||||
#: apps/polyclinic/models.py:16
|
||||
msgid "Phone number"
|
||||
msgstr ""
|
||||
|
||||
#: apps/polyclinic/models.py:16
|
||||
msgid "The general/direct phone number of this polyclinic"
|
||||
msgstr ""
|
@ -0,0 +1,47 @@
|
||||
# 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/polyclinic/apps.py:7 apps/polyclinic/models.py:11
|
||||
msgid "Polyclinic"
|
||||
msgstr "Polikliniek"
|
||||
|
||||
#: apps/polyclinic/apps.py:8 apps/polyclinic/models.py:12
|
||||
msgid "Polyclinics"
|
||||
msgstr "Poliklinieken"
|
||||
|
||||
#: apps/polyclinic/models.py:14
|
||||
msgid "To which hospital belongs this polyclinic"
|
||||
msgstr "Bij welke ziekenhuis hoort deze polikliniek"
|
||||
|
||||
#: apps/polyclinic/models.py:15
|
||||
msgid "Name"
|
||||
msgstr "Naam"
|
||||
|
||||
#: apps/polyclinic/models.py:15
|
||||
msgid "The name of this polyclinic"
|
||||
msgstr "De naam van deze polikliniek"
|
||||
|
||||
#: apps/polyclinic/models.py:16
|
||||
msgid "Phone number"
|
||||
msgstr "Telefoonnummer"
|
||||
|
||||
#: apps/polyclinic/models.py:16
|
||||
msgid "The general/direct phone number of this polyclinic"
|
||||
msgstr "De algemene/directe telefoonnummer van deze polikliniek"
|
@ -6,6 +6,11 @@ from apps.hospital.models import Hospital
|
||||
# Create your models here.
|
||||
|
||||
class Polyclinic(MetaDataModel):
|
||||
|
||||
class Meta:
|
||||
verbose_name = _('Polyclinic')
|
||||
verbose_name_plural = _('Polyclinics')
|
||||
|
||||
hospital = models.ForeignKey(Hospital, on_delete=models.CASCADE, help_text=_('To which hospital belongs this polyclinic'))
|
||||
name = models.CharField(_('Name'), max_length=200, blank=True, help_text=_('The name of this polyclinic'))
|
||||
phone = models.CharField(_('Phone number'), max_length=18, blank=True, help_text=_('The general/direct phone number of this polyclinic'))
|
||||
|
Reference in New Issue
Block a user