mail translation added. test for dataloop translation added (failing)
This commit is contained in:
parent
c72b6bd025
commit
f992d4cc00
4
TODO
4
TODO
|
@ -11,6 +11,4 @@ minor stuff:
|
||||||
|
|
||||||
translations:
|
translations:
|
||||||
|
|
||||||
- step /Schritt
|
- dataloop translation missing
|
||||||
|
|
||||||
- Schließungen (vermutlich wegen ß problem)
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
(english below)
|
||||||
|
|
||||||
Hallo!
|
Hallo!
|
||||||
|
|
||||||
Es gibt einen Neuzugang bei Wikimedia! Hier ( https://wiki.wikimedia.de/wiki/Onboarding ) kannst Du nachsehen,
|
Es gibt einen Neuzugang bei Wikimedia! Hier ( https://wiki.wikimedia.de/wiki/Onboarding ) kannst Du nachsehen,
|
||||||
|
@ -9,3 +11,18 @@ die Du dafür brauchst:
|
||||||
Wenn Du Fragen hast, melde Dich bei {{contact}}.
|
Wenn Du Fragen hast, melde Dich bei {{contact}}.
|
||||||
|
|
||||||
Grüße, Deine E.V.A.
|
Grüße, Deine E.V.A.
|
||||||
|
|
||||||
|
-------------------------
|
||||||
|
|
||||||
|
Hi!
|
||||||
|
|
||||||
|
There is a new employee at Wikimedia! Here ( https://wiki.wikimedia.de/wiki/Onboarding ) you can see, which
|
||||||
|
steps are now necessary for your department.
|
||||||
|
|
||||||
|
All Data you need for this:
|
||||||
|
|
||||||
|
{% include 'evapp/dataloop.txt' %}
|
||||||
|
|
||||||
|
If you have any questions please write to {{contact}}.
|
||||||
|
|
||||||
|
Regards, Your E.V.A.
|
||||||
|
|
|
@ -99,6 +99,7 @@ class LoginTestCase(TestCase):
|
||||||
# print(mail.outbox[0].body)
|
# print(mail.outbox[0].body)
|
||||||
self.assertGreater(len(mail.outbox), 2)
|
self.assertGreater(len(mail.outbox), 2)
|
||||||
self.assertIn("Vorname", mail.outbox[0].body)
|
self.assertIn("Vorname", mail.outbox[0].body)
|
||||||
|
self.assertIn("Firstname", mail.outbox[0].body)
|
||||||
for i in (0,1,3):
|
for i in (0,1,3):
|
||||||
self.assertIn("Handy", mail.outbox[i].body)
|
self.assertIn("Handy", mail.outbox[i].body)
|
||||||
self.assertIn("Ara Seva", mail.outbox[0].subject)
|
self.assertIn("Ara Seva", mail.outbox[0].subject)
|
||||||
|
|
Loading…
Reference in New Issue