Skip to content

Commit 99ee144

Browse files
committed
adjust translation
1 parent 7c940b9 commit 99ee144

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Generated by Django 5.0.10 on 2025-02-28 17:40
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("core", "0033_eventtype_show_participant_data"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="eventtype",
15+
name="show_participant_data",
16+
field=models.SmallIntegerField(
17+
choices=[
18+
(0, "to logged in users"),
19+
(1, "to confirmed participants"),
20+
(2, "only to responsible users"),
21+
(3, "to everyone including guests and federated users"),
22+
],
23+
default=0,
24+
help_text="If you restrict who can see participant data, others will only be able to see that there is a participation, but not from whom.",
25+
verbose_name="show participant data",
26+
),
27+
),
28+
]

ephios/locale/de/LC_MESSAGES/django.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgstr ""
88
"Project-Id-Version: \n"
99
"Report-Msgid-Bugs-To: \n"
1010
"POT-Creation-Date: 2025-02-24 20:16+0100\n"
11-
"PO-Revision-Date: 2025-02-24 20:19+0100\n"
11+
"PO-Revision-Date: 2025-02-28 18:15+0100\n"
1212
"Last-Translator: Felix Rindt <[email protected]>\n"
1313
"Language-Team: German <https://hosted.weblate.org/projects/ephios/ephios/de/"
1414
">\n"
@@ -882,7 +882,7 @@ msgstr "Ausbildung"
882882

883883
#: ephios/core/models/events.py:54
884884
msgid "to logged in users"
885-
msgstr "angemeldete Nutzer"
885+
msgstr "alle Nutzer dieser Organisation"
886886

887887
#: ephios/core/models/events.py:55
888888
msgid "to confirmed participants"

0 commit comments

Comments
 (0)