-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
108 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PACKAGE VERSION\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2023-11-10 21:13+0200\n" | ||
"POT-Creation-Date: 2023-12-02 15:09+0200\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -895,6 +895,9 @@ msgstr "Viimeisin katsastuspäivä" | |
msgid "Update from traficom on" | ||
msgstr "Päivitetty Traficomista" | ||
|
||
msgid "Traficom Restrictions" | ||
msgstr "Traficom-rajoitukset" | ||
|
||
msgid "Not a valid customer address" | ||
msgstr "Epäkelpo asiakkaan osoite" | ||
|
||
|
@@ -951,13 +954,11 @@ msgstr "" | |
msgid "Vehicle %(registration_number)s is decommissioned" | ||
msgstr "Ajoneuvo %(registration_number)s on liikennekäytöstäpoistettu" | ||
|
||
msgid "" | ||
"According to the Digital and Population Data Services Agency, you do not " | ||
"live in the Resident parking area. If you have just moved to a Resident " | ||
"parking area, contact Digital and Population Data Services Agency." | ||
msgstr "" | ||
"Digi- ja väestörekisteritietojen mukaan et asu pysäköintitunnusalueella. Jos " | ||
"olet juuri muuttanut pysäköintitunnusalueelle, ole yhteydessä DVV:hen, dvv.fi" | ||
msgid "The person has no driving licence" | ||
msgstr "Henkilölle ei löydy ajokorttia" | ||
|
||
msgid "No valid driving licence" | ||
msgstr "Voimassaolevaa ajo-oikeutta ei löydy" | ||
|
||
msgid "Failed to fetch data from traficom" | ||
msgstr "Tietojen haku Traficomilta epäonnistui" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ msgid "" | |
msgstr "" | ||
"Project-Id-Version: PACKAGE VERSION\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2023-11-10 21:13+0200\n" | ||
"POT-Creation-Date: 2023-12-02 15:09+0200\n" | ||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" | ||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" | ||
"Language-Team: LANGUAGE <[email protected]>\n" | ||
|
@@ -892,6 +892,9 @@ msgstr "Sista besiktas dag" | |
msgid "Update from traficom on" | ||
msgstr "Uppdated från Traficom" | ||
|
||
msgid "Traficom Restrictions" | ||
msgstr "Traficom restriktioner" | ||
|
||
msgid "Not a valid customer address" | ||
msgstr "Inte en giltig kundadress" | ||
|
||
|
@@ -949,14 +952,11 @@ msgstr "" | |
msgid "Vehicle %(registration_number)s is decommissioned" | ||
msgstr "Fordonet %(registration_number)s är avställd" | ||
|
||
msgid "" | ||
"According to the Digital and Population Data Services Agency, you do not " | ||
"live in the Resident parking area. If you have just moved to a Resident " | ||
"parking area, contact Digital and Population Data Services Agency." | ||
msgstr "" | ||
"Enligt Myndigheten för digitalisering och befolkningsdata bor du inte i " | ||
"boendeparkering zone. Om du precis har flyttat till ett boendeparkering " | ||
"zone, kontakta Myndigheten för digitalisering och befolkningsdata." | ||
msgid "The person has no driving licence" | ||
msgstr "Personen har inget körkort" | ||
|
||
msgid "No valid driving licence" | ||
msgstr "Giltig körrätt saknas" | ||
|
||
msgid "Failed to fetch data from traficom" | ||
msgstr "Datahämtning från Traficomilta misslyckades" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
23 changes: 23 additions & 0 deletions
23
parking_permits/migrations/0044_add_vehicle_restrictions.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Generated by Django 4.2.1 on 2023-11-30 11:26 | ||
|
||
import django.contrib.postgres.fields | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("parking_permits", "0043_alter_subscription_cancel_reason"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="vehicle", | ||
name="restrictions", | ||
field=django.contrib.postgres.fields.ArrayField( | ||
base_field=models.CharField(blank=True, max_length=2), | ||
default=list, | ||
size=None, | ||
verbose_name="Traficom Restrictions", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters